Skip to content

Commit

Permalink
refactor: change 'from' to upper case for a SQL command (#722)
Browse files Browse the repository at this point in the history
* docs: lint fix for samples

* refactor: change 'from' to upper case for a SQL command
  • Loading branch information
vi3k6i5 committed Oct 21, 2021
1 parent 1ec0784 commit 993d2c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_spanner/introspection.py
Expand Up @@ -355,7 +355,7 @@ def get_key_columns(self, cursor, table_name):
tc.COLUMN_NAME as column_name,
ccu.TABLE_NAME as referenced_table,
ccu.COLUMN_NAME as referenced_column
from
FROM
INFORMATION_SCHEMA.KEY_COLUMN_USAGE AS tc
JOIN
INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS as rc
Expand Down

0 comments on commit 993d2c0

Please sign in to comment.