Skip to content

Commit

Permalink
Remove GROUPS from SQLite keywords list
Browse files Browse the repository at this point in the history
Fixes #823
  • Loading branch information
nene committed Jan 14, 2025
1 parent 178e02c commit 79a8b23
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/languages/sqlite/sqlite.keywords.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
export const keywords: string[] = [
// https://www.sqlite.org/lang_keywords.html
// Note: The keywords listed on that URL are not all reserved keywords.
// We'll need to clean up this list to only include reserved keywords.
'ABORT',
'ACTION',
'ADD',
Expand Down Expand Up @@ -63,7 +65,6 @@ export const keywords: string[] = [
'GENERATED',
'GLOB',
'GROUP',
'GROUPS',
'HAVING',
'IF',
'IGNORE',
Expand Down

0 comments on commit 79a8b23

Please sign in to comment.