summaryrefslogtreecommitdiffstats
path: root/tests/Parser/CreateStatementTest.php
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2016-09-07 14:52:49 +0200
committerGitHub <noreply@github.com>2016-09-07 14:52:49 +0200
commit8159f2ad5eaf354749c3d94458b31bf565a03878 (patch)
tree121d26e38a4f57cb28f9ddca6f151dc162d669b4 /tests/Parser/CreateStatementTest.php
parent3c77d04cafa8fb65afecf1c6ee17debd3b7a70b1 (diff)
parentf3c9e5519952a4be11a7fd6ebdc7a70020e01b1c (diff)
downloadsql-parser-8159f2ad5eaf354749c3d94458b31bf565a03878.zip
sql-parser-8159f2ad5eaf354749c3d94458b31bf565a03878.tar.gz
sql-parser-8159f2ad5eaf354749c3d94458b31bf565a03878.tar.bz2
Merge pull request #68 from devenbansod/fix_49
Fix #49: Add Support for 'CREATE TABLE `table_copy` LIKE `table`;'
Diffstat (limited to 'tests/Parser/CreateStatementTest.php')
-rw-r--r--tests/Parser/CreateStatementTest.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/Parser/CreateStatementTest.php b/tests/Parser/CreateStatementTest.php
index 2dcc9a9..758e5c4 100644
--- a/tests/Parser/CreateStatementTest.php
+++ b/tests/Parser/CreateStatementTest.php
@@ -29,8 +29,10 @@ class CreateStatementTest extends TestCase
array('parser/parseCreateTable4'),
array('parser/parseCreateTableErr1'),
array('parser/parseCreateTableErr2'),
+ array('parser/parseCreateTableErr3'),
array('parser/parseCreateTableSelect'),
array('parser/parseCreateTableAsSelect'),
+ array('parser/parseCreateTableLike'),
array('parser/parseCreateTrigger'),
array('parser/parseCreateUser'),
array('parser/parseCreateView'),