Skip to content

Commit

Permalink
DDC-3518 - Schema creation statement is not quoted
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius committed Jan 18, 2015
1 parent e0077b2 commit 56c5cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1360Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function testSchemaDoubleQuotedCreate()
));

$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);
Expand Down

0 comments on commit 56c5cb4

Please sign in to comment.