3rd commit

This commit is contained in:
Ankit Malik
2026-06-12 15:39:39 +05:30
parent 80bb585cdb
commit 8aaae1e27d
12 changed files with 1280 additions and 120 deletions
+2 -1
View File
@@ -48,6 +48,7 @@ def build_sql_server_engine() -> Engine:
)
with engine.connect() as conn:
log.info(conn.execute(text("SELECT 1")))
return engine
@@ -81,6 +82,6 @@ def get_clickhouse_client():
host=CH_HOST,
port=CH_PORT,
username=CH_USER,
password="CH_PASS",
password=CH_PASS,
database=CH_DB
)