change total from -1 to max value

git-svn-id: file:///svn/phpbb/trunk@5311 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2005-11-21 09:24:58 +00:00
parent 0202eb8a66
commit ee4d02132f
2 changed files with 4 additions and 2 deletions

View file

@ -147,7 +147,8 @@ class dbal_mysql4 extends dbal
// if $total is set to 0 we do not want to limit the number of rows // if $total is set to 0 we do not want to limit the number of rows
if ($total == 0) if ($total == 0)
{ {
$total = -1; // Because MySQL 4.1+ no longer supports -1 in LIMIT queries we set it to the maximum value
$total = 18446744073709551615;
} }
$query .= "\n LIMIT " . ((!empty($offset)) ? $offset . ', ' . $total : $total); $query .= "\n LIMIT " . ((!empty($offset)) ? $offset . ', ' . $total : $total);

View file

@ -145,7 +145,8 @@ class dbal_mysqli extends dbal
// if $total is set to 0 we do not want to limit the number of rows // if $total is set to 0 we do not want to limit the number of rows
if ($total == 0) if ($total == 0)
{ {
$total = -1; // MySQL 4.1+ no longer supports -1 in limit queries
$total = 18446744073709551615;
} }
$query .= "\n LIMIT " . ((!empty($offset)) ? $offset . ', ' . $total : $total); $query .= "\n LIMIT " . ((!empty($offset)) ? $offset . ', ' . $total : $total);