Commit bbf513ba authored by Bill Schaller's avatar Bill Schaller Committed by Steve Müller

fix typo

parent 7c5114d5
...@@ -1265,7 +1265,7 @@ class SQLServerPlatform extends AbstractPlatform ...@@ -1265,7 +1265,7 @@ class SQLServerPlatform extends AbstractPlatform
$subQueryBuffer = ''; $subQueryBuffer = '';
$parenCount = 0; $parenCount = 0;
// If $parentCount goes negative, we've exited the subquery we're examining. // If $parenCount goes negative, we've exited the subquery we're examining.
// If $currentPosition goes negative, we've reached the beginning of the query. // If $currentPosition goes negative, we've reached the beginning of the query.
while ($parenCount >= 0 && $currentPosition >= 0) { while ($parenCount >= 0 && $currentPosition >= 0) {
if ($query[$currentPosition] == '(') { if ($query[$currentPosition] == '(') {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment