Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit 5855132

Browse files
committed
Align with implementation for Postgres
1 parent 446c8e9 commit 5855132

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqeleton/databases/duckdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def select_table_schema(self, path: DbPath) -> str:
176176

177177
return (
178178
f"SELECT column_name, data_type, datetime_precision, numeric_precision, numeric_scale FROM {'.'.join(info_schema_path)} "
179-
f"WHERE table_name = '{table.lower()}' AND table_schema = '{schema.lower()}'"
179+
f"WHERE table_name = '{table}' AND table_schema = '{schema}'"
180180
)
181181

182182
def _normalize_table_path(self, path: DbPath) -> DbPath:

0 commit comments

Comments
 (0)