Skip to content

Commit

Permalink
remove true, false from reseved values
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksim Korobitsyn committed Jul 27, 2021
1 parent 385acfe commit dbe4976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cases/creator/issue342Test.php
Expand Up @@ -8,7 +8,7 @@ class issue342Test extends \PHPUnit_Framework_TestCase
{
public function testIssue299()
{
$sql = 'select if(true, true, false) from t';
$sql = 'SELECT if(true,true,false) FROM t';

$parser = new PHPSQLParser();
$creator = new PHPSQLCreator();
Expand Down

0 comments on commit dbe4976

Please sign in to comment.