summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith@netflix.com>2024-11-10 11:06:04 -0800
committerAmjith Ramanujam <amjith@netflix.com>2024-11-10 11:06:04 -0800
commitb0c8769a209d47ecacc99ed7dd16557be1ab3225 (patch)
tree9b2e0f2cdf364592fa3d55224becfaa7c63696aa
parenta4807a48b076cde49c29a25bc120e0b4d36f0307 (diff)
Fix the test.
-rw-r--r--test/test_smart_completion_public_schema_only.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/test_smart_completion_public_schema_only.py b/test/test_smart_completion_public_schema_only.py
index bed989f..30b15ac 100644
--- a/test/test_smart_completion_public_schema_only.py
+++ b/test/test_smart_completion_public_schema_only.py
@@ -105,7 +105,14 @@ def test_function_name_completion(completer, complete_event):
assert list(result) == list(
[
Completion(text="MAX", start_position=-2),
+ Completion(text="CHANGE MASTER TO", start_position=-2),
+ Completion(text="CURRENT_TIMESTAMP", start_position=-2),
+ Completion(text="DECIMAL", start_position=-2),
+ Completion(text="FORMAT", start_position=-2),
Completion(text="MASTER", start_position=-2),
+ Completion(text="PRIMARY", start_position=-2),
+ Completion(text="ROW_FORMAT", start_position=-2),
+ Completion(text="SMALLINT", start_position=-2),
]
)