busya
f416583a8c
032: fix async chain for target schema check + mapper + executor
resolve_database_id → async (was sync but called async SupersetClient methods)
- await client.get_database(db_id)
- await client.get_databases(...)
validate_target_table_schema → async (calls async resolve_database_id + execute_and_poll)
- await executor.resolve_database_id(...)
- await executor.execute_and_poll(...)
Route check_target_schema → await validate_target_table_schema(...)
MapperPlugin.execute → await executor.resolve_database_id(...)
(execute() was already async def, just missing await)
SupersetSqlLabExecutor.execute_sql → await self.resolve_database_id()
(was sync call to now-async method)
2026-06-05 00:04:54 +03:00
..
2026-05-26 09:30:41 +03:00
2026-06-04 20:17:13 +03:00
2026-06-04 20:17:13 +03:00
2026-06-05 00:04:54 +03:00
2026-05-13 14:15:33 +03:00
2026-06-04 20:17:13 +03:00
2026-05-26 09:30:41 +03:00
2026-06-04 20:17:13 +03:00
2026-05-26 09:30:41 +03:00
2026-06-05 00:04:54 +03:00
2026-05-26 09:30:41 +03:00
2026-05-26 09:30:41 +03:00