Skip to content

Commit 79a8b23

Browse files
committed
Remove GROUPS from SQLite keywords list
Fixes #823
1 parent 178e02c commit 79a8b23

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/languages/sqlite/sqlite.keywords.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
export const keywords: string[] = [
22
// https://www.sqlite.org/lang_keywords.html
3+
// Note: The keywords listed on that URL are not all reserved keywords.
4+
// We'll need to clean up this list to only include reserved keywords.
35
'ABORT',
46
'ACTION',
57
'ADD',
@@ -63,7 +65,6 @@ export const keywords: string[] = [
6365
'GENERATED',
6466
'GLOB',
6567
'GROUP',
66-
'GROUPS',
6768
'HAVING',
6869
'IF',
6970
'IGNORE',

0 commit comments

Comments
 (0)