biggora / caminte

Cross-db ORM for NodeJS
http://www.camintejs.com/
MIT License
1.08k stars 119 forks source link

MySQL "IS NOT NULL" construction #190

Open am0nshi opened 6 years ago

am0nshi commented 6 years ago

Hi @biggora ! I didn't found anywhere in mysql driver construction for "IS NOT NULL" query. Currently we have null check here - https://github.com/biggora/caminte/blob/b662a3e2f18861dd4c18ba772a89998870d44fd6/lib/adapters/mysql.js#L851. In MySQL construction like xxx != NULL is not the same as xxx IS NOT NULL.

Have you any ideas, better than just add one additional condition here https://github.com/biggora/caminte/blob/b662a3e2f18861dd4c18ba772a89998870d44fd6/lib/adapters/mysql.js#L885 ?