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-25 08:36:33 +03:00
2026-06-04 16:16:18 +03:00
2026-05-17 14:18:02 +03:00
2026-06-05 00:04:54 +03:00
2026-06-04 21:06:22 +03:00
2026-05-26 19:18:28 +03:00
2026-05-26 19:18:28 +03:00
2026-05-26 15:28:03 +03:00
2026-06-01 16:34:07 +03:00
2026-02-25 21:19:48 +03:00
2026-05-26 19:18:28 +03:00
2026-06-04 19:45:57 +03:00
2026-05-20 14:31:37 +03:00
2026-06-04 19:45:57 +03:00
2026-05-20 23:54:53 +03:00
2026-05-14 11:20:17 +03:00