Bug in BETWEEN syntax
I believe this :-
context-free syntax
RowConstructor CompOp RowConstructor -> CondExpr {cons(“Comparison”)}
RowConstructor Not? “BETWEEN” RowConstructor -> CondExpr {cons(“Between”)}
RowConstructor Not? “IN” “(” InPredVal “)” -> CondExpr {cons(“In”)}Should be corrected to :-
Submitted by Rob Vermaas on 24 March 2010 at 10:20
context-free syntax
RowConstructor CompOp RowConstructor -> CondExpr {cons(“Comparison”)}
RowConstructor Not? “BETWEEN” RowConstructor “AND” RowConstructor -> CondExpr {cons(“Between”)}
RowConstructor Not? “IN” “(” InPredVal “)” -> CondExpr {cons(“In”)}
Log in to post comments