File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
crates/pgls_completions/src/providers Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ pub static ALL_KEYWORDS: &[SqlKeyword] = &[
220220 SqlKeyword :: new ( "oids" ) ,
221221 SqlKeyword :: new ( "old" ) ,
222222 SqlKeyword :: new ( "on" ) ,
223- SqlKeyword :: new ( "only" ) ,
223+ SqlKeyword :: new ( "only" ) . require_prefix ( ) ,
224224 SqlKeyword :: new ( "option" ) ,
225225 SqlKeyword :: new ( "or" ) . require_prefix ( ) ,
226226 SqlKeyword :: new ( "order" ) ,
Original file line number Diff line number Diff line change @@ -411,12 +411,6 @@ mod tests {
411411 );
412412 "# ;
413413
414- let query = format ! (
415- // "select * from auth.users u j{}",
416- "select * from auth.users as u join client_settings c on u.id = c.client_id wh{}" ,
417- QueryWithCursorPosition :: cursor_marker( )
418- ) ;
419-
420414 TestCompletionsSuite :: new ( & pool, Some ( setup) )
421415 . with_case (
422416 TestCompletionsCase :: new ( )
You can’t perform that action at this time.
0 commit comments