Update tools/sql_tool.py
Browse files- tools/sql_tool.py +1 -2
tools/sql_tool.py
CHANGED
|
@@ -13,8 +13,7 @@ DUCKDB_PATH = os.getenv("DUCKDB_PATH", "alm.duckdb")
|
|
| 13 |
|
| 14 |
# If you need to attach a catalog (e.g., MotherDuck), put the full ATTACH here.
|
| 15 |
# Example:
|
| 16 |
-
|
| 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)
|
|
|
|
| 13 |
|
| 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 |
|
| 18 |
# Preferred identifiers (we will fall back automatically if they don't exist)
|
| 19 |
PREF_CATALOG = os.getenv("SQL_DEFAULT_DB", "my_db") # catalog (optional)
|