diff options
Diffstat (limited to 'src/Utils/Query.php')
-rw-r--r-- | src/Utils/Query.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Utils/Query.php b/src/Utils/Query.php index 41e99d1..86325ed 100644 --- a/src/Utils/Query.php +++ b/src/Utils/Query.php @@ -743,9 +743,7 @@ class Query for ($list->idx = 0; $list->idx < $list->count; ++$list->idx) { $token = $list->tokens[$list->idx]; - if (($token->type === Token::TYPE_COMMENT) - && (!($token->flags & Token::FLAG_COMMENT_MYSQL_CMD)) - ) { + if ($token->type === Token::TYPE_COMMENT) { continue; } |