1
0
mirror of synced 2025-02-02 13:31:45 +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( $this->assertEquals(array(
'CREATE SCHEMA "user"', 'CREATE SCHEMA user',
'CREATE TABLE "user"."user" (id INT NOT NULL, PRIMARY KEY(id))', 'CREATE TABLE "user"."user" (id INT NOT NULL, PRIMARY KEY(id))',
'CREATE SEQUENCE "user"."user_id_seq" INCREMENT BY 1 MINVALUE 1 START 1', 'CREATE SEQUENCE "user"."user_id_seq" INCREMENT BY 1 MINVALUE 1 START 1',
), $sql); ), $sql);