AshenH commited on
Commit
4295fdc
·
verified ·
1 Parent(s): 3fbd26b

Update tools/sql_tool.py

Browse files
Files changed (1) hide show
  1. tools/sql_tool.py +1 -1
tools/sql_tool.py CHANGED
@@ -14,7 +14,7 @@ DUCKDB_PATH = os.getenv("DUCKDB_PATH", "alm.duckdb")
14
  # If you need to attach a catalog (e.g., MotherDuck), put the full ATTACH here.
15
  # Example:
16
  # DUCKDB_ATTACH_SQL=ATTACH 'md:my_db' AS my_db;
17
- DUCKDB_ATTACH_SQL = os.getenv("DUCKDB_ATTACH_SQL", "").strip()
18
 
19
  # Preferred identifiers (we will fall back automatically if they don't exist)
20
  PREF_CATALOG = os.getenv("SQL_DEFAULT_DB", "my_db") # catalog (optional)
 
14
  # If you need to attach a catalog (e.g., MotherDuck), put the full ATTACH here.
15
  # Example:
16
  # DUCKDB_ATTACH_SQL=ATTACH 'md:my_db' AS my_db;
17
+ DUCKDB_ATTACH_SQL = ATTACH 'alm.duckdb' AS my_db;
18
 
19
  # Preferred identifiers (we will fall back automatically if they don't exist)
20
  PREF_CATALOG = os.getenv("SQL_DEFAULT_DB", "my_db") # catalog (optional)