diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Parser.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Parser.php b/src/Parser.php index ac92aaf..3b5a40a 100644 --- a/src/Parser.php +++ b/src/Parser.php @@ -375,6 +375,7 @@ namespace SqlParser { ) { // Skipping to the end of this statement. $list->getNextOfType(Token::TYPE_DELIMITER); + $prevLastIdx = $list->idx; continue; } @@ -412,7 +413,6 @@ namespace SqlParser { } // Skipping to the end of this statement. $list->getNextOfType(Token::TYPE_DELIMITER); - // $prevLastIdx = $list->idx; continue; } |