fix: do not escape, user cannot have control over this, same as or other options.

pull/8390/head
Luciano Righetti 2022-05-19 11:22:55 +02:00
parent d72060ec8e
commit 44f7f5c71b
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ class MysqlExtended extends Mysql
{
$index = '';
if (isset($useIndexHint)) {
$index = 'USE INDEX ' . $this->value($useIndexHint);
$index = 'USE INDEX ' . $useIndexHint;
}
return $index;
}