Closed GoogleCodeExporter closed 8 years ago
Any time * is the first item in an expression it should be treated as a colref,
otherwise it should be treated as an operator. This will make select * and
select count(*) treat * as a colref, but select a * b will treat it as an
operator.
Original comment by greenlion@gmail.com
on 13 Dec 2012 at 8:34
Had a similar issue - in
https://code.google.com/p/php-sql-parser/source/detail?r=346,
php-sql-parser.php, line 1286 (case '*'...) I modified
if (!$prev->isColumnReference() && !$prev->isConstant() &&
!$prev->isExpression()
&& !$prev->isBracketExpression()) {
to
if (!$prev->isColumnReference() && !$prev->isConstant() &&
!$prev->isExpression()
&& !$prev->isBracketExpression() && !$prev->isFunction() && !$prev->isAggregateFunction()) {
Original comment by chrisw...@gmx.de
on 21 May 2013 at 3:03
Chris, I have added your code to the repository. Thanks a lot, good job.
Original comment by pho...@gmx.de
on 23 Oct 2013 at 10:31
Original issue reported on code.google.com by
cag...@gmail.com
on 12 Dec 2012 at 12:29