SQL Parser bug

Using your SQL Parser when parsing an SQL statement with an IN statement in the WHERE causes an error, e.g..
Any chance of a fix?
- Code: Select all
$sql = "SELECT * FROM articles WHERE article_format_id IN (1,2)";
$parser = new SQL_Parser(null, "MySQL");
print_r($parser->parse($sql));
Any chance of a fix?
