summaryrefslogtreecommitdiffstats
path: root/tests/Parser
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2016-02-17 13:40:29 +0100
committerMichal Čihař <michal@cihar.com>2016-02-17 13:41:19 +0100
commit95fc481b8e2fc5d836479c2b62dc29e39c49df40 (patch)
treef9693f6fd9eb92d1b5ed9dccae48b88eb0563318 /tests/Parser
parent0524f6910e87c018070b25af64149a3fa916630b (diff)
downloadsql-parser-95fc481b8e2fc5d836479c2b62dc29e39c49df40.zip
sql-parser-95fc481b8e2fc5d836479c2b62dc29e39c49df40.tar.gz
sql-parser-95fc481b8e2fc5d836479c2b62dc29e39c49df40.tar.bz2
Do not fail on function which is reserved in a WHERE condition
Fixes https://github.com/phpmyadmin/phpmyadmin/issues/11975 Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'tests/Parser')
-rw-r--r--tests/Parser/SelectStatementTest.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Parser/SelectStatementTest.php b/tests/Parser/SelectStatementTest.php
index bdd152a..5bf5c65 100644
--- a/tests/Parser/SelectStatementTest.php
+++ b/tests/Parser/SelectStatementTest.php
@@ -30,6 +30,7 @@ class SelectStatementTest extends TestCase
return array(
array('parser/parseSelect2'),
array('parser/parseSelect3'),
+ array('parser/parseSelect4'),
array('parser/parseSelectErr1'),
array('parser/parseSelectNested'),
);