From f1f603d752afc23436be75ce6224af588048e212 Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Tue, 20 Jan 2026 15:48:36 -0500 Subject: [PATCH] fix tests on "GRANTS ... ON" completions The "GRANTS ... ON" PR probably needed to be rebased before merging to detect this. The test still doesn't look right however, as the comment suggests. --- test/test_smart_completion_public_schema_only.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/test_smart_completion_public_schema_only.py b/test/test_smart_completion_public_schema_only.py index 969c4348..c688b398 100644 --- a/test/test_smart_completion_public_schema_only.py +++ b/test/test_smart_completion_public_schema_only.py @@ -466,6 +466,11 @@ def test_grant_on_suggets_tables_and_schemata(completer, complete_event): Completion(text='orders', start_position=0), Completion(text='`select`', start_position=0), Completion(text='`réveillé`', start_position=0), + Completion(text='time_zone', start_position=0), + Completion(text='time_zone_leap_second', start_position=0), + Completion(text='time_zone_name', start_position=0), + Completion(text='time_zone_transition', start_position=0), + Completion(text='time_zone_transition_type', start_position=0), ]