snowflakes working

This commit is contained in:
mauricio garcia suarez 2022-08-10 12:23:42 +02:00
parent ab06c5c8e3
commit dab72fbb38

View file

@ -63,6 +63,11 @@ def create_tables_snowflake(db):
db.engine.execute(q)
print(f"`connector_sessions` table created succesfully.")
#with open(base_path / 'sql' / 'snowflake_events_detailed.sql') as f:
# q = f.read()
#db.engine.execute(q)
#print(f"`connector_user_events_detailed` table created succesfully.")
def create_tables_redshift(db):
with open(base_path / 'sql' / 'redshift_events.sql') as f: