Skip to content

Commit bdf9e6b

Browse files
committed
MC-38893: Avoid BIC making introduced const DDL_EXISTS private in lib/internal/Magento/Framework/DB/Adapter/Pdo/Mysql.php
1 parent 010211f commit bdf9e6b

File tree

1 file changed

+0
-2
lines changed
  • lib/internal/Magento/Framework/DB/Adapter/Pdo

1 file changed

+0
-2
lines changed

lib/internal/Magento/Framework/DB/Adapter/Pdo/Mysql.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -665,11 +665,9 @@ protected function _prepareQuery(&$sql, &$bind = [])
665665
}
666666

667667
// Mixed bind is not supported - so remember whether it is named bind, to normalize later if required
668-
$isNamedBind = false;
669668
if ($bind) {
670669
foreach ($bind as $k => $v) {
671670
if (!is_int($k)) {
672-
$isNamedBind = true;
673671
if ($k[0] != ':') {
674672
$bind[":{$k}"] = $v;
675673
unset($bind[$k]);

0 commit comments

Comments
 (0)