File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
dev/tests/setup-integration/framework/Magento/TestFramework/TestCase
lib/internal/Magento/Framework/DB/Adapter Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -110,10 +110,10 @@ private function getDbKey(): string
110
110
if ($ this ->sqlVersionProvider ->isMysqlGte8029 ()) {
111
111
$ this ->dbKey = DataProviderFromFile::POSSIBLE_SUFFIXES [SqlVersionProvider::MYSQL_8_0_29_VERSION ];
112
112
break ;
113
- } elseif ($ this ->sqlVersionProvider ->isMariaDBGte10_4_27 ()) {
113
+ } elseif ($ this ->sqlVersionProvider ->isMariaDBGte10427 ()) {
114
114
$ this ->dbKey = DataProviderFromFile::POSSIBLE_SUFFIXES [SqlVersionProvider::MARIA_DB_10_4_27_VERSION ];
115
115
break ;
116
- } elseif ($ this ->sqlVersionProvider ->isMariaDBGte10_6_11 ()) {
116
+ } elseif ($ this ->sqlVersionProvider ->isMariaDBGte10611 ()) {
117
117
$ this ->dbKey = DataProviderFromFile::POSSIBLE_SUFFIXES [SqlVersionProvider::MARIA_DB_10_6_11_VERSION ];
118
118
break ;
119
119
} elseif (strpos ($ this ->getDatabaseVersion (), (string )$ possibleVersion ) !== false ) {
Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ public function isMysqlGte8029(): bool
150
150
* @return bool
151
151
* @throws ConnectionException
152
152
*/
153
- public function isMariaDBGte10_6_11 (): bool
153
+ public function isMariaDBGte10611 (): bool
154
154
{
155
155
$ sqlVersion = $ this ->getSqlVersion ();
156
156
$ isMariaDB = str_contains ($ sqlVersion , SqlVersionProvider::MARIA_DB_10_VERSION );
@@ -167,7 +167,7 @@ public function isMariaDBGte10_6_11(): bool
167
167
* @return bool
168
168
* @throws ConnectionException
169
169
*/
170
- public function isMariaDBGte10_4_27 (): bool
170
+ public function isMariaDBGte10427 (): bool
171
171
{
172
172
$ sqlVersion = $ this ->getSqlVersion ();
173
173
$ isMariaDB = str_contains ($ sqlVersion , SqlVersionProvider::MARIA_DB_10_VERSION );
You can’t perform that action at this time.
0 commit comments