Skip to content

Commit 993d2c0

Browse files
authored
refactor: change 'from' to upper case for a SQL command (#722)
* docs: lint fix for samples * refactor: change 'from' to upper case for a SQL command
1 parent 1ec0784 commit 993d2c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django_spanner/introspection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ def get_key_columns(self, cursor, table_name):
355355
tc.COLUMN_NAME as column_name,
356356
ccu.TABLE_NAME as referenced_table,
357357
ccu.COLUMN_NAME as referenced_column
358-
from
358+
FROM
359359
INFORMATION_SCHEMA.KEY_COLUMN_USAGE AS tc
360360
JOIN
361361
INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS as rc

0 commit comments

Comments
 (0)