I realise that if where expression doesn´t contains spaces between =, regex
never replaces to "=="
Example
SELECT A.* FROM A WHERE A.B=3
Simple resolution is to change line 547
js = js.replace(/ = /g, " == ");
to
js = js.replace(/([\s\w])(=)([\s\w])/g, '$1 == $3');
Thanks!!
Original issue reported on code.google.com by cguar...@gmail.com on 4 Dec 2014 at 3:24
Original issue reported on code.google.com by
cguar...@gmail.com
on 4 Dec 2014 at 3:24