Skip to content

Commit

Permalink
fix: Correcting name of variable from table_schema to schema_name (
Browse files Browse the repository at this point in the history
  • Loading branch information
ankiaga committed Mar 11, 2024
1 parent e73c671 commit a92c6d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/cloud/spanner_dbapi/_helpers.py
Expand Up @@ -24,7 +24,7 @@
SQL_GET_TABLE_COLUMN_SCHEMA = """
SELECT COLUMN_NAME, IS_NULLABLE, SPANNER_TYPE
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_SCHEMA = @table_schema AND TABLE_NAME = @table_name
WHERE TABLE_SCHEMA = @schema_name AND TABLE_NAME = @table_name
"""

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

0 comments on commit a92c6d3

Please sign in to comment.