Skip to content

Commit d45d522

Browse files
committed
CHG: the Lexer has now a concatNegativeNumbers() method, which merges
the sign of a number to the number token.
1 parent c81cf48 commit d45d522

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

src/PHPSQLParser/lexer/PHPSQLLexer.php

+39
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,48 @@ public function split($sql) {
126126
$tokens = $this->concatComments($tokens);
127127
$tokens = $this->concatUserDefinedVariables($tokens);
128128
$tokens = $this->concatScientificNotations($tokens);
129+
$tokens = $this->concatNegativeNumbers($tokens);
129130
return $tokens;
130131
}
131132

133+
protected function concatNegativeNumbers($tokens) {
134+
135+
$i = 0;
136+
$cnt = count($tokens);
137+
$possibleSign = true;
138+
139+
while ($i < $cnt) {
140+
141+
if (!isset($tokens[$i])) {
142+
$i++;
143+
continue;
144+
}
145+
146+
$token = $tokens[$i];
147+
148+
// a sign is also possible on the first position of the tokenlist
149+
if ($possibleSign === true) {
150+
if ($token === '-' || $token === '+') {
151+
if (is_numeric($tokens[$i + 1])) {
152+
$tokens[$i + 1] = $token . $tokens[$i + 1];
153+
unset($tokens[$i]);
154+
}
155+
}
156+
$possibleSign = false;
157+
continue;
158+
}
159+
160+
// TODO: we can have sign of a number after "(" and ",", are others possible?
161+
if (substr($token, -1, 1) === "," || substr($token, -1, 1) === "(") {
162+
$possibleSign = true;
163+
}
164+
165+
$i++;
166+
}
167+
168+
return array_values($tokens);
169+
}
170+
132171
protected function concatScientificNotations($tokens) {
133172

134173
$i = 0;

0 commit comments

Comments
 (0)