summaryrefslogtreecommitdiffstats
path: root/tests/test_naive_completion.py
diff options
context:
space:
mode:
authorJoakim Koljonen <koljonen@outlook.com>2017-03-06 23:04:09 +0100
committerJoakim Koljonen <koljonen@outlook.com>2017-03-06 23:16:29 +0100
commit6b8c62d0ecc0170c3fe0f90d2a7d463806d8a628 (patch)
tree2453a81d24f8a59c23da47c09ca2dfcf8be3d84f /tests/test_naive_completion.py
parent5b2c3151e0c636ca3bf8c5632542167536ebe3d2 (diff)
Add MATERIALIZED VIEW keywords
Diffstat (limited to 'tests/test_naive_completion.py')
-rw-r--r--tests/test_naive_completion.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_naive_completion.py b/tests/test_naive_completion.py
index 8a50d4b5..986933f5 100644
--- a/tests/test_naive_completion.py
+++ b/tests/test_naive_completion.py
@@ -36,6 +36,7 @@ def test_function_name_completion(completer, complete_event):
Document(text=text, cursor_position=position),
complete_event))
assert result == set([
+ Completion(text='MATERIALIZED VIEW', start_position=-2),
Completion(text='MAX', start_position=-2),
Completion(text='MAXEXTENTS', start_position=-2)])