diff options
author | Michal Čihař <michal@cihar.com> | 2016-09-13 10:34:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-13 10:34:11 +0200 |
commit | e78cf11ca60ff3d576627bfc9e3f8969523b2435 (patch) | |
tree | 31b35f8c939f6f5a5c478337c67aeaba922058ee /tests/Parser | |
parent | 30606001ca8a017be9c0837334a8c9ef52af340e (diff) | |
parent | 7e6fbf70c33e0320fee040f596aa788cb3135805 (diff) | |
download | sql-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.php | 4 |
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'), ); } } |