From 1b0d2c78b2695be26c8d541c948088e2051ce9c5 Mon Sep 17 00:00:00 2001 From: zYne Date: Sun, 17 Sep 2006 18:31:28 +0000 Subject: [PATCH] new method isDistinct --- Doctrine/Query.php | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Doctrine/Query.php b/Doctrine/Query.php index 5ca6c9d85..3fbd402f9 100644 --- a/Doctrine/Query.php +++ b/Doctrine/Query.php @@ -43,6 +43,8 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable { private $tableStack; private $relationStack = array(); + + private $distinct; /** * create * returns a new Doctrine_Query object @@ -60,6 +62,13 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable { public function getRelationStack() { return $this->relationStack; } + + public function isDistinct($distinct = null) { + if(isset($distinct)) + $this->isDistinct = (bool) $distinct; + + return $this->isDistinct; + } /** * count * @@ -293,7 +302,12 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable { } // build the basic query - $q = "SELECT ".implode(", ",$this->parts["select"]). + + $str = ''; + if($this->isDistinct()) + $str = 'DISTINCT '; + + $q = "SELECT ".$str.implode(", ",$this->parts["select"]). " FROM "; foreach($this->parts["from"] as $tname => $bool) {