From 1f97563d611f1e6a3ffdc914d443908e72b96ad4 Mon Sep 17 00:00:00 2001 From: hhyo Date: Sun, 30 Aug 2020 10:44:55 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E8=A1=A8=E5=90=8D=E5=A4=A7?= =?UTF-8?q?=E5=86=99=E6=97=B6SQL=E4=BC=98=E5=8C=96=E8=A7=A3=E6=9E=90?= =?UTF-8?q?=E8=A1=A8=E4=BF=A1=E6=81=AF=E5=A4=B1=E8=B4=A5=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98=20fix=20#843?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/utils/extract_tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/utils/extract_tables.py b/sql/utils/extract_tables.py index fe9e74c82d..73aed5d522 100644 --- a/sql/utils/extract_tables.py +++ b/sql/utils/extract_tables.py @@ -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: