We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b974d3 commit 67bda81Copy full SHA for 67bda81
tests/Database/Reflection.phpt
@@ -91,6 +91,10 @@ $expectedColumns = [
91
92
switch ($driverName) {
93
case 'mysql':
94
+ $version = $connection->getPdo()->getAttribute(\PDO::ATTR_SERVER_VERSION);
95
+ if (version_compare($version, '8.0', '>=')) {
96
+ $expectedColumns[0]['size'] = null;
97
+ }
98
break;
99
case 'pgsql':
100
$expectedColumns[0]['nativetype'] = 'INT4';
0 commit comments