summaryrefslogtreecommitdiffstats
path: root/tests/Parser
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2016-09-13 10:34:11 +0200
committerGitHub <noreply@github.com>2016-09-13 10:34:11 +0200
commite78cf11ca60ff3d576627bfc9e3f8969523b2435 (patch)
tree31b35f8c939f6f5a5c478337c67aeaba922058ee /tests/Parser
parent30606001ca8a017be9c0837334a8c9ef52af340e (diff)
parent7e6fbf70c33e0320fee040f596aa788cb3135805 (diff)
downloadsql-parser-e78cf11ca60ff3d576627bfc9e3f8969523b2435.zip
sql-parser-e78cf11ca60ff3d576627bfc9e3f8969523b2435.tar.gz
sql-parser-e78cf11ca60ff3d576627bfc9e3f8969523b2435.tar.bz2
Merge pull request #76 from devenbansod/fix_50
Fix parsing of INSERT...SELECT and INSERT...SET syntax
Diffstat (limited to 'tests/Parser')
-rw-r--r--tests/Parser/InsertStatementTest.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/Parser/InsertStatementTest.php b/tests/Parser/InsertStatementTest.php
index 80f2faa..b5722f7 100644
--- a/tests/Parser/InsertStatementTest.php
+++ b/tests/Parser/InsertStatementTest.php
@@ -19,6 +19,10 @@ class InsertStatementTest extends TestCase
{
return array(
array('parser/parseInsert'),
+ array('parser/parseInsertSelect'),
+ array('parser/parseInsertOnDuplicateKey'),
+ array('parser/parseInsertSetOnDuplicateKey'),
+ array('parser/parseInsertOnDuplicateKeyErr'),
);
}
}