From 051f9847550fdadc00a812ea867ab02d0b034990 Mon Sep 17 00:00:00 2001 From: zYne Date: Thu, 28 Dec 2006 00:55:48 +0000 Subject: [PATCH] limit offset support for rawsql --- lib/Doctrine/RawSql.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/Doctrine/RawSql.php b/lib/Doctrine/RawSql.php index 5a51c8390..e9ec3d9a8 100644 --- a/lib/Doctrine/RawSql.php +++ b/lib/Doctrine/RawSql.php @@ -155,7 +155,7 @@ class Doctrine_RawSql extends Doctrine_Hydrate { foreach($this->tableAliases as $alias) { foreach($this->tables[$alias]->getPrimaryKeys() as $key) { - $field = $alias.".".$key; + $field = $alias . '.' . $key; if( ! isset($this->parts["select"][$field])) $this->parts["select"][$field] = $field." AS ".$alias."__".$key; } @@ -175,6 +175,8 @@ class Doctrine_RawSql extends Doctrine_Hydrate { $q .= ( ! empty($this->parts['groupby']))? ' GROUP BY ' . implode(', ', $this->parts['groupby']) : ''; $q .= ( ! empty($this->parts['having']))? ' HAVING ' . implode(' ', $this->parts['having']) : ''; $q .= ( ! empty($this->parts['orderby']))? ' ORDER BY ' . implode(' ', $this->parts['orderby']) : ''; + $q .= ( ! empty($this->parts['limit']))? ' LIMIT ' . implode(' ', $this->parts['limit']) : ''; + $q .= ( ! empty($this->parts['offset']))? ' OFFSET ' . implode(' ', $this->parts['offset']) : ''; if( ! empty($string)) array_pop($this->parts['where']);