(sync_conn, table_name)
| 90 | return |
| 91 | |
| 92 | def _existing_columns(sync_conn, table_name): |
| 93 | insp = sa_inspect(sync_conn) |
| 94 | if not insp.has_table(table_name): |
| 95 | return None |
| 96 | return {col["name"] for col in insp.get_columns(table_name)} |
| 97 | |
| 98 | pending: List[str] = [] |
| 99 | try: |
nothing calls this directly
no outgoing calls
no test coverage detected