summaryrefslogtreecommitdiffstats
path: root/tests/test_smart_completion_public_schema_only.py
diff options
context:
space:
mode:
authorJoakim Koljonen <koljonen@outlook.com>2017-08-06 08:59:03 +0200
committerJoakim Koljonen <koljonen@outlook.com>2017-08-06 09:46:52 +0200
commitb90beeb4d366e3ab584757c7965ee06e55bd3c95 (patch)
tree3b3b4cea52f1d24627b0eb251fc1223e14ad9800 /tests/test_smart_completion_public_schema_only.py
parent9d59fa5a8ac85f0699daeb51f8602b7d01d31882 (diff)
Don't quote identifiers that coïncide with non-reserved keywords
Keep track of which keywords are reserved, and quote identifiers that coïncide with those. https://www.postgresql.org/docs/10/static/sql-keywords-appendix.html
Diffstat (limited to 'tests/test_smart_completion_public_schema_only.py')
-rw-r--r--tests/test_smart_completion_public_schema_only.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_smart_completion_public_schema_only.py b/tests/test_smart_completion_public_schema_only.py
index a8130b1b..8da332f6 100644
--- a/tests/test_smart_completion_public_schema_only.py
+++ b/tests/test_smart_completion_public_schema_only.py
@@ -724,7 +724,7 @@ def test_wildcard_column_expansion_with_two_tables(completer):
completions = get_result(completer, text, position)
- cols = ('"select".id, "select"."insert", "select"."ABC", '
+ cols = ('"select".id, "select".insert, "select"."ABC", '
'u.id, u.parentid, u.email, u.first_name, u.last_name')
expected = [wildcard_expansion(cols)]
assert completions == expected
@@ -737,7 +737,7 @@ def test_wildcard_column_expansion_with_two_tables_and_parent(completer):
completions = get_result(completer, text, position)
- col_list = 'id, "select"."insert", "select"."ABC"'
+ col_list = 'id, "select".insert, "select"."ABC"'
expected = [wildcard_expansion(col_list)]
assert expected == completions