Skip to content

Commit 6e34771

Browse files
authored
SQL: Added ILIKE operator (#2704)
Added `ILIKE` operator to sql keyword list and sorted the list alphabetically.
1 parent 01af04e commit 6e34771

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

components/prism-sql.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/prism-sql.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/languages/sql/operator_feature.test

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
AND
1010
BETWEEN
1111
IN
12+
ILIKE
1213
LIKE
1314
NOT
1415
OR
@@ -33,6 +34,7 @@ XOR
3334
["operator", "AND"],
3435
["operator", "BETWEEN"],
3536
["operator", "IN"],
37+
["operator", "ILIKE"],
3638
["operator", "LIKE"],
3739
["operator", "NOT"],
3840
["operator", "OR"],

0 commit comments

Comments
 (0)