summaryrefslogtreecommitdiffstats
path: root/tests/Parser
diff options
context:
space:
mode:
authorWilliam Desportes <williamdes@wdes.fr>2019-12-31 12:29:55 +0100
committerWilliam Desportes <williamdes@wdes.fr>2019-12-31 12:30:59 +0100
commit1f45fbcc794c7a8e10b78b6d024c1dc48a42eaf9 (patch)
tree7683586db3b254f1614b368dd4595115a013a515 /tests/Parser
parent9ef51add6d8f732cd52f07874f0b4beb0b9ac068 (diff)
parent128b21929b6c0d6e669b3cf3afaaa803b3ddbd44 (diff)
downloadsql-parser-1f45fbcc794c7a8e10b78b6d024c1dc48a42eaf9.zip
sql-parser-1f45fbcc794c7a8e10b78b6d024c1dc48a42eaf9.tar.gz
sql-parser-1f45fbcc794c7a8e10b78b6d024c1dc48a42eaf9.tar.bz2
Merge branch 'QA'
Signed-off-by: William Desportes <williamdes@wdes.fr>
Diffstat (limited to 'tests/Parser')
-rw-r--r--tests/Parser/CreateStatementTest.php4
-rw-r--r--tests/Parser/SelectStatementTest.php1
2 files changed, 5 insertions, 0 deletions
diff --git a/tests/Parser/CreateStatementTest.php b/tests/Parser/CreateStatementTest.php
index 25008f4..eb69e01 100644
--- a/tests/Parser/CreateStatementTest.php
+++ b/tests/Parser/CreateStatementTest.php
@@ -20,12 +20,16 @@ class CreateStatementTest extends TestCase
public function createProvider()
{
return [
+ ['parser/parseCreateDatabase'],
+ ['parser/parseCreateDatabaseErr'],
['parser/parseCreateFunction'],
['parser/parseCreateFunctionErr1'],
['parser/parseCreateFunctionErr2'],
['parser/parseCreateFunctionErr3'],
['parser/parseCreateProcedure'],
['parser/parseCreateProcedure2'],
+ ['parser/parseCreateSchema'],
+ ['parser/parseCreateSchemaErr'],
['parser/parseCreateTable'],
['parser/parseCreateTable2'],
['parser/parseCreateTable3'],
diff --git a/tests/Parser/SelectStatementTest.php b/tests/Parser/SelectStatementTest.php
index 976e698..3649412 100644
--- a/tests/Parser/SelectStatementTest.php
+++ b/tests/Parser/SelectStatementTest.php
@@ -86,6 +86,7 @@ class SelectStatementTest extends TestCase
['parser/parseSelectIndexHintErr2'],
['parser/parseSelectIndexHintErr3'],
['parser/parseSelectIndexHintErr4'],
+ ['parser/parseSelectWithParenthesis'],
];
}
}