-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3547 from morozov/default-expressions
Default column expressions do not work on SQL Server
- Loading branch information
Showing
4 changed files
with
81 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
tests/Doctrine/Tests/DBAL/Functional/Platform/DefaultExpressionTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\DBAL\Functional\Platform; | ||
|
||
use Doctrine\DBAL\FetchMode; | ||
use Doctrine\DBAL\Platforms\AbstractPlatform; | ||
use Doctrine\DBAL\Platforms\MySqlPlatform; | ||
use Doctrine\DBAL\Platforms\OraclePlatform; | ||
use Doctrine\DBAL\Schema\Table; | ||
use Doctrine\DBAL\Types\Types; | ||
use Doctrine\Tests\DbalFunctionalTestCase; | ||
use function sprintf; | ||
|
||
class DefaultExpressionTest extends DbalFunctionalTestCase | ||
{ | ||
public function testCurrentDate() : void | ||
{ | ||
$platform = $this->connection->getDatabasePlatform(); | ||
|
||
if ($platform instanceof MySqlPlatform) { | ||
self::markTestSkipped('Not supported on MySQL'); | ||
} | ||
|
||
$this->assertDefaultExpression(Types::DATE_MUTABLE, static function (AbstractPlatform $platform) : string { | ||
return $platform->getCurrentDateSQL(); | ||
}); | ||
} | ||
|
||
public function testCurrentTime() : void | ||
{ | ||
$platform = $this->connection->getDatabasePlatform(); | ||
|
||
if ($platform instanceof MySqlPlatform) { | ||
self::markTestSkipped('Not supported on MySQL'); | ||
} | ||
|
||
if ($platform instanceof OraclePlatform) { | ||
self::markTestSkipped('Not supported on Oracle'); | ||
} | ||
|
||
$this->assertDefaultExpression(Types::TIME_MUTABLE, static function (AbstractPlatform $platform) : string { | ||
return $platform->getCurrentTimeSQL(); | ||
}); | ||
} | ||
|
||
public function testCurrentTimestamp() : void | ||
{ | ||
$this->assertDefaultExpression(Types::DATETIME_MUTABLE, static function (AbstractPlatform $platform) : string { | ||
return $platform->getCurrentTimestampSQL(); | ||
}); | ||
} | ||
|
||
private function assertDefaultExpression(string $type, callable $expression) : void | ||
{ | ||
$platform = $this->connection->getDatabasePlatform(); | ||
$defaultSql = $expression($platform, $this); | ||
|
||
$table = new Table('default_expr_test'); | ||
$table->addColumn('actual_value', $type); | ||
$table->addColumn('default_value', $type, ['default' => $defaultSql]); | ||
$this->connection->getSchemaManager()->dropAndCreateTable($table); | ||
|
||
$this->connection->exec( | ||
sprintf( | ||
'INSERT INTO default_expr_test (actual_value) VALUES (%s)', | ||
$defaultSql | ||
) | ||
); | ||
|
||
[$actualValue, $defaultValue] = $this->connection->query( | ||
'SELECT default_value, actual_value FROM default_expr_test' | ||
)->fetch(FetchMode::NUMERIC); | ||
|
||
self::assertEquals($actualValue, $defaultValue); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters