Skip to content

Commit fe10855

Browse files
committed
Fix duckdb
1 parent 8d459e7 commit fe10855

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_duckdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ def test_select_table_schema(self):
3838
self.assertEqual(self.duckdb_conn.select_table_schema(db_path), expected_sql)
3939

4040
db_path = ("custom_db", "custom_schema", "test_table")
41-
expected_sql = "SELECT column_name, data_type, datetime_precision, numeric_precision, numeric_scale FROM custom_db.information_schema.columns WHERE table_name = 'test_table' AND table_schema = 'custom_schema' and table_catalog = 'custom_db'"
41+
expected_sql = "SELECT column_name, data_type, datetime_precision, numeric_precision, numeric_scale FROM information_schema.columns WHERE table_name = 'test_table' AND table_schema = 'custom_schema' and table_catalog = 'custom_db'"
4242
self.assertEqual(self.duckdb_conn.select_table_schema(db_path), expected_sql)

0 commit comments

Comments
 (0)