Skip to content

Commit

Permalink
Add test to show bug in SqlserverSchema when using DEFAULT NULL.
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed May 4, 2016
1 parent c20763b commit 34defff
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions tests/TestCase/Database/Schema/SqlserverSchemaTest.php
Expand Up @@ -68,6 +68,8 @@ protected function _createTables($connection)
published BIT DEFAULT 0,
views SMALLINT DEFAULT 0,
created DATETIME,
field1 VARCHAR(10) DEFAULT NULL,
field2 VARCHAR(10) DEFAULT 'NULL',
CONSTRAINT [content_idx] UNIQUE ([title], [body]),
CONSTRAINT [author_idx] FOREIGN KEY ([author_id]) REFERENCES [schema_authors] ([id]) ON DELETE CASCADE ON UPDATE CASCADE
)
Expand Down Expand Up @@ -345,6 +347,24 @@ public function testDescribeTable()
'precision' => null,
'comment' => null,
],
'field1' => [
'type' => 'string',
'null' => true,
'default' => null,
'length' => 10,
'precision' => null,
'fixed' => null,
'comment' => null,
],
'field2' => [
'type' => 'string',
'null' => true,
'default' => 'NULL',
'length' => 10,
'precision' => null,
'fixed' => null,
'comment' => null,
],
];
$this->assertEquals(['id'], $result->primaryKey());
foreach ($expected as $field => $definition) {
Expand Down

0 comments on commit 34defff

Please sign in to comment.