Merge pull request #308 from sparksp/patch-3

SQLServer::limit and ::offset return strings
This commit is contained in:
Taylor Otwell 2012-02-04 18:00:21 -08:00
commit 2e492a710a
1 changed files with 2 additions and 2 deletions

View File

@ -124,7 +124,7 @@ protected function ansi_offset(Query $query, $components)
*/ */
protected function limit(Query $query) protected function limit(Query $query)
{ {
return; return '';
} }
/** /**
@ -135,7 +135,7 @@ protected function limit(Query $query)
*/ */
protected function offset(Query $query) protected function offset(Query $query)
{ {
return; return '';
} }
} }