rickywu-posh / php-sql-parser

Automatically exported from code.google.com/p/php-sql-parser
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Another small one. in-list in WHERE expression subtree was not handled. => Fix included #58

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Don't have it handy right now, but I had an issue where an in-list was in a 
WHERE expression subtree.

The Fix was to put:

$sql .= $this->processInList($v);

under:

$sql .= $this->processOperator($v);  (Line 315)

Really easy fixes ;)

Original issue reported on code.google.com by fr...@frankmayer.net on 8 May 2012 at 5:09

GoogleCodeExporter commented 8 years ago
Thank you for fixing this issue, try REV 274.

Original comment by pho...@gmx.de on 8 May 2012 at 8:41