1
0
mirror of synced 2025-02-02 05:21:44 +03:00

DDC-3518 - Schema creation statement is not quoted

This commit is contained in:
Marco Pivetta 2015-01-18 17:39:10 +01:00
parent e0077b290b
commit 56c5cb41fc

View File

@ -20,7 +20,7 @@ class DDC1360Test extends OrmFunctionalTestCase
));
$this->assertEquals(array(
'CREATE SCHEMA "user"',
'CREATE SCHEMA user',
'CREATE TABLE "user"."user" (id INT NOT NULL, PRIMARY KEY(id))',
'CREATE SEQUENCE "user"."user_id_seq" INCREMENT BY 1 MINVALUE 1 START 1',
), $sql);