summaryrefslogtreecommitdiffstats
path: root/tests/Parser
diff options
context:
space:
mode:
authorDeven Bansod <devenbansod@users.noreply.github.com>2018-12-23 10:31:20 +0530
committerGitHub <noreply@github.com>2018-12-23 10:31:20 +0530
commit6bbaebfc16dc75a52eeaa4f159bb48a58e314bd8 (patch)
treefe3d05109f4458acbceddf53e61ba7f86f9d474b /tests/Parser
parent60886eb6e1d50ed943f30943e24a7456571b61e9 (diff)
parentb422d7de078dc70d635b4fefd63ce8a8ec5cd857 (diff)
downloadsql-parser-6bbaebfc16dc75a52eeaa4f159bb48a58e314bd8.zip
sql-parser-6bbaebfc16dc75a52eeaa4f159bb48a58e314bd8.tar.gz
sql-parser-6bbaebfc16dc75a52eeaa4f159bb48a58e314bd8.tar.bz2
Merge pull request #216 from devenbansod/fix/199
Add support for INDEX hints in SELECT statement
Diffstat (limited to 'tests/Parser')
-rw-r--r--tests/Parser/SelectStatementTest.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/Parser/SelectStatementTest.php b/tests/Parser/SelectStatementTest.php
index 42fb955..747249f 100644
--- a/tests/Parser/SelectStatementTest.php
+++ b/tests/Parser/SelectStatementTest.php
@@ -69,6 +69,12 @@ class SelectStatementTest extends TestCase
array('parser/parseSelectEndOptionsErr'),
array('parser/parseSelectUnion'),
array('parser/parseSelectUnion2'),
+ array('parser/parseSelectIndexHint1'),
+ array('parser/parseSelectIndexHint2'),
+ array('parser/parseSelectIndexHintErr1'),
+ array('parser/parseSelectIndexHintErr2'),
+ array('parser/parseSelectIndexHintErr3'),
+ array('parser/parseSelectIndexHintErr4'),
);
}
}