Skip to content

Commit 6abedaa

Browse files
committed
1 parent cc1c00f commit 6abedaa

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

PEG/.package.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ name: PEG
2020
main: ''
2121
mainJob: ''
2222
license: https://github.com/OpenAF/openaf-opacks/blob/master/LICENSE
23-
version: '20250204'
23+
version: '20250216'
2424
dependencies:
2525
openaf: '>=20230325'
2626
files:
@@ -61,7 +61,7 @@ filesHash:
6161
grammars/nlinq.pegjs: f8acc42c546528ee0e12e4bb522e7c43dae5a719
6262
grammars/semver.pegjs: 0c62fdc83d3841d6eb932348ed540a51e982203e
6363
grammars/slon.pegjs: 3cffb9a817a63968f1850845967e4891752e33fb
64-
grammars/sql.pegjs: 65a34f3b289e50cbcc5e4b7bba1b3cf11be49cda
64+
grammars/sql.pegjs: 62c1e92ce966e39b087112768f79f7b5db05de76
6565
lib/peggy.min.js: 865cef369e6b0de24b6dd59dc9815287fcf56e51
6666
lib/peggy.min.js.orig: cc51eeb3da071654411106db9a0f13873be23cf8
6767
peg.js: 666beebe1de7f1ff2b18d49f698b33fba53ec181

PEG/grammars/sql.pegjs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1856,12 +1856,12 @@ arithmetic_comparison_operator
18561856
= ">=" / ">" / "<=" / "<>" / "<" / "=" / "!="
18571857

18581858
is_op_right
1859-
= KW_IS __ right:additive_expr {
1860-
return { op: 'IS', right: right };
1861-
}
1862-
/ (KW_IS __ KW_NOT) __ right:additive_expr {
1859+
= (KW_IS __ KW_NOT) __ right:additive_expr {
18631860
return { op: 'IS NOT', right: right };
18641861
}
1862+
/ KW_IS __ right:additive_expr {
1863+
return { op: 'IS', right: right };
1864+
}
18651865

18661866
between_op_right
18671867
= op:between_or_not_between_op __ begin:additive_expr __ KW_AND __ end:additive_expr {

0 commit comments

Comments
 (0)