Skip to content

Commit

Permalink
解决表名大写时SQL优化解析表信息失败的问题 fix #843
Browse files Browse the repository at this point in the history
  • Loading branch information
hhyo committed Aug 30, 2020
1 parent 5072c22 commit 1f97563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/utils/extract_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def parse_identifier(item):
if name and not name_quoted and not name.islower():
if not alias:
alias = name
name = name.lower()
# name = name.lower()
return schema_name, name, alias

for item in token_stream:
Expand Down

0 comments on commit 1f97563

Please sign in to comment.