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 330608c commit 06e994eCopy full SHA for 06e994e
1 file changed
tests/Integration/Database/MySql/JoinLateralTest.php
@@ -58,7 +58,7 @@ protected function checkMySqlVersion()
58
59
if (str_contains($mySqlVersion, 'Maria')) {
60
$this->markTestSkipped('Lateral joins are not supported on MariaDB'.__CLASS__);
61
- } elseif ((float) $mySqlVersion < '8.0.14') {
+ } elseif (version_compare($mySqlVersion, '8.0.14', '<')) {
62
$this->markTestSkipped('Lateral joins are not supported on MySQL < 8.0.14'.__CLASS__);
63
}
64
0 commit comments