We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 178e02c commit 79a8b23Copy full SHA for 79a8b23
src/languages/sqlite/sqlite.keywords.ts
@@ -1,5 +1,7 @@
1
export const keywords: string[] = [
2
// 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.
5
'ABORT',
6
'ACTION',
7
'ADD',
@@ -63,7 +65,6 @@ export const keywords: string[] = [
63
65
'GENERATED',
64
66
'GLOB',
67
'GROUP',
- 'GROUPS',
68
'HAVING',
69
'IF',
70
'IGNORE',
0 commit comments