lock table ref

This commit is contained in:
Yuri Kuznetsov
2023-02-09 12:55:47 +02:00
parent 5eb49d6c3d
commit e7fa98dc09
@@ -51,7 +51,7 @@ class MysqlQueryComposer extends BaseQueryComposer
throw new LogicException();
}
$sql = "LOCK TABLES `{$table}` ";
$sql = "LOCK TABLES " . $this->quoteIdentifier($table) . " ";
$modeMap = [
LockTableQuery::MODE_SHARE => 'READ',