Skip to content

Commit

Permalink
Remove unnecessary space character
Browse files Browse the repository at this point in the history
  • Loading branch information
snelg committed Apr 7, 2016
1 parent a12fd21 commit fd94236
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OracleCompiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ protected function _buildLimitPart($limit, $query)
$origEpilog = $query->clause('epilog');
$limitEnd = ') a WHERE ROWNUM <= :SNELG_MAX_ROW_TO_FETCH';
if (!empty($offset) && $offset > 0) {
$limitEnd .= ' ' . $origEpilog['snelgOracleEndWrap'];
$limitEnd .= $origEpilog['snelgOracleEndWrap'];
$origEpilog = $origEpilog['snelgOracleOrigEpilog'];
}

Expand Down

0 comments on commit fd94236

Please sign in to comment.