Skip to content

Commit a92c6d3

Browse files
authored
fix: Correcting name of variable from table_schema to schema_name (#1114)
1 parent e73c671 commit a92c6d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google/cloud/spanner_dbapi/_helpers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
SQL_GET_TABLE_COLUMN_SCHEMA = """
2525
SELECT COLUMN_NAME, IS_NULLABLE, SPANNER_TYPE
2626
FROM INFORMATION_SCHEMA.COLUMNS
27-
WHERE TABLE_SCHEMA = @table_schema AND TABLE_NAME = @table_name
27+
WHERE TABLE_SCHEMA = @schema_name AND TABLE_NAME = @table_name
2828
"""
2929

3030
# This table maps spanner_types to Spanner's data type sizes as per

0 commit comments

Comments
 (0)