codeschool / sqlite-parser

JavaScript implentation of SQLite 3 query parser
MIT License
331 stars 57 forks source link

Better binary expression parsing rules #25

Closed nwronski closed 8 years ago

nwronski commented 8 years ago

Better support for order of operations and correct order when composing expressions using AND, OR, etc...

Also fixed issue where expressions such as x NOT NULL were treated as a unary expressions instead of binary expressions.

WIP - Do not merge

Refs #20