Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: change 'from' to upper case for a SQL command #722

Merged
merged 6 commits into from
Oct 21, 2021
2 changes: 1 addition & 1 deletion django_spanner/introspection.py
Original file line number Diff line number Diff line change
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