feat: add data source

This commit is contained in:
qixinbo
2026-03-15 19:36:02 +08:00
parent 219944f059
commit f1db709aae
14 changed files with 851 additions and 22 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ class ClickHouseConnector:
def execute_query(self, query: str):
try:
return self.client.execute(query)
return self.client.execute(query, with_column_types=True)
except Exception as e:
print(f"ClickHouse Query Error: {e}")
raise e