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 :-


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”)}

Submitted by Rob Vermaas on 24 March 2010 at 10:20

Log in to post comments