-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Deprecated platform-specific portability mode constants #4061
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
morozov
merged 1 commit into
doctrine:2.11.x
from
morozov:deprecate-portability-platform-constants
Jun 10, 2020
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,44 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\DBAL\Portability; | ||
|
||
use Doctrine\DBAL\Platforms\AbstractPlatform; | ||
use Doctrine\DBAL\Platforms\DB2Platform; | ||
use Doctrine\DBAL\Platforms\OraclePlatform; | ||
use Doctrine\DBAL\Platforms\PostgreSQL94Platform; | ||
use Doctrine\DBAL\Platforms\SQLAnywhere16Platform; | ||
use Doctrine\DBAL\Platforms\SqlitePlatform; | ||
use Doctrine\DBAL\Platforms\SQLServer2012Platform; | ||
|
||
final class OptimizeFlags | ||
{ | ||
/** | ||
* Platform-specific portability flags that need to be excluded from the user-provided mode | ||
* since the platform already operates in this mode to avoid unnecessary conversion overhead. | ||
* | ||
* @var array<string,int> | ||
*/ | ||
private static $platforms = [ | ||
DB2Platform::class => 0, | ||
OraclePlatform::class => Connection::PORTABILITY_EMPTY_TO_NULL, | ||
PostgreSQL94Platform::class => 0, | ||
SQLAnywhere16Platform::class => 0, | ||
SqlitePlatform::class => 0, | ||
SQLServer2012Platform::class => 0, | ||
]; | ||
|
||
public function __invoke(AbstractPlatform $platform, int $flags): int | ||
{ | ||
foreach (self::$platforms as $class => $mask) { | ||
if ($platform instanceof $class) { | ||
$flags &= ~$mask; | ||
|
||
break; | ||
} | ||
} | ||
|
||
return $flags; | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
tests/Doctrine/Tests/DBAL/Portability/OptimizeFlagsTest.php
This file contains hidden or 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,36 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\DBAL\Portability; | ||
|
||
use Doctrine\DBAL\Platforms\OraclePlatform; | ||
use Doctrine\DBAL\Platforms\SqlitePlatform; | ||
use Doctrine\DBAL\Portability\Connection; | ||
use Doctrine\DBAL\Portability\OptimizeFlags; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class OptimizeFlagsTest extends TestCase | ||
{ | ||
/** @var OptimizeFlags */ | ||
private $optimizeFlags; | ||
|
||
protected function setUp(): void | ||
{ | ||
$this->optimizeFlags = new OptimizeFlags(); | ||
} | ||
|
||
public function testOracle(): void | ||
{ | ||
$flags = ($this->optimizeFlags)(new OraclePlatform(), Connection::PORTABILITY_ALL); | ||
|
||
self::assertSame(0, $flags & Connection::PORTABILITY_EMPTY_TO_NULL); | ||
} | ||
|
||
public function testAnotherPlatform(): void | ||
{ | ||
$flags = ($this->optimizeFlags)(new SqlitePlatform(), Connection::PORTABILITY_ALL); | ||
|
||
self::assertSame(Connection::PORTABILITY_ALL, $flags); | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.