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
110110 if ($ this ->sqlVersionProvider ->isMysqlGte8029 ()) {
111111 $ this ->dbKey = DataProviderFromFile::POSSIBLE_SUFFIXES [SqlVersionProvider::MYSQL_8_0_29_VERSION ];
112112 break ;
113- } elseif ($ this ->sqlVersionProvider ->isMariaDBGte10_4_27 ()) {
113+ } elseif ($ this ->sqlVersionProvider ->isMariaDBGte10427 ()) {
114114 $ this ->dbKey = DataProviderFromFile::POSSIBLE_SUFFIXES [SqlVersionProvider::MARIA_DB_10_4_27_VERSION ];
115115 break ;
116- } elseif ($ this ->sqlVersionProvider ->isMariaDBGte10_6_11 ()) {
116+ } elseif ($ this ->sqlVersionProvider ->isMariaDBGte10611 ()) {
117117 $ this ->dbKey = DataProviderFromFile::POSSIBLE_SUFFIXES [SqlVersionProvider::MARIA_DB_10_6_11_VERSION ];
118118 break ;
119119 } 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
150150 * @return bool
151151 * @throws ConnectionException
152152 */
153- public function isMariaDBGte10_6_11 (): bool
153+ public function isMariaDBGte10611 (): bool
154154 {
155155 $ sqlVersion = $ this ->getSqlVersion ();
156156 $ isMariaDB = str_contains ($ sqlVersion , SqlVersionProvider::MARIA_DB_10_VERSION );
@@ -167,7 +167,7 @@ public function isMariaDBGte10_6_11(): bool
167167 * @return bool
168168 * @throws ConnectionException
169169 */
170- public function isMariaDBGte10_4_27 (): bool
170+ public function isMariaDBGte10427 (): bool
171171 {
172172 $ sqlVersion = $ this ->getSqlVersion ();
173173 $ isMariaDB = str_contains ($ sqlVersion , SqlVersionProvider::MARIA_DB_10_VERSION );
You can’t perform that action at this time.
0 commit comments