Skip to content

Commit 85b4101

Browse files
committed
BaseDriver: fix parsing of SQL with trailing comment without EOL
[closes #102]
1 parent 82da016 commit 85b4101

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

src/Drivers/BaseDriver.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function loadFile($path)
7171
$parseOffset = 0;
7272
$queries = 0;
7373

74-
$space = "(?:\\s|/\\*.*\\*/|(?:#|-- )[^\\n]*\\n|--\\n)";
74+
$space = "(?:\\s|/\\*.*\\*/|(?:#|-- )[^\\n]*(?:\\n|\\z)|--(?:\\n|\\z))";
7575
$spacesRe = "~\\G{$space}*\\z~";
7676
$delimiter = ';';
7777
$delimiterRe = "~\\G{$space}*DELIMITER\\s+(\\S+)~i";
@@ -106,6 +106,10 @@ public function loadFile($path)
106106
$endRe = isset($endReTable[$found]) ? $endReTable[$found] : '(' . (preg_match('~^-- |^#~', $found) ? "\n" : preg_quote($found) . "|\\\\.") . '|\z)s';
107107
while (preg_match($endRe, $content, $match, PREG_OFFSET_CAPTURE, $parseOffset)) { //! respect sql_mode NO_BACKSLASH_ESCAPES
108108
$s = $match[0][0];
109+
if (strlen($s) === 0) {
110+
break 3;
111+
}
112+
109113
$parseOffset = $match[0][1] + strlen($s);
110114
if ($s[0] !== '\\') {
111115
continue 2;

tests/cases/unit/BaseDriverTest.phpt

+18-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,24 @@ class BaseDriverTest extends Tester\TestCase
7777
"\nCREATE TRIGGER `users_bu` BEFORE UPDATE ON `users` FOR EACH ROW BEGIN SELECT 1; END; ",
7878
"\nSELECT 2",
7979
]
80-
]
80+
],
81+
[
82+
'-- ', [],
83+
],
84+
[
85+
"--\n", [],
86+
],
87+
[
88+
"SELECT 1;\n--", [
89+
'SELECT 1'
90+
],
91+
],
92+
[
93+
"SELECT 1;\n--\nSELECT 2;", [
94+
'SELECT 1',
95+
"\n--\nSELECT 2",
96+
],
97+
],
8198
];
8299
}
83100
}

0 commit comments

Comments
 (0)