2009-04-09 22:12:48 +04:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
|
|
|
* and is licensed under the LGPL. For more information, see
|
|
|
|
* <http://www.doctrine-project.org>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Doctrine\ORM\Query;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A ResultSetMapping describes how a result set of an SQL query maps to a Doctrine result.
|
|
|
|
*
|
2009-05-14 18:57:08 +04:00
|
|
|
* IMPORTANT NOTE:
|
2009-07-30 19:16:02 +04:00
|
|
|
* The properties of this class are only public for fast internal READ access and to (drastically)
|
|
|
|
* reduce the size of serialized instances for more effective caching due to better (un-)serialization
|
|
|
|
* performance.
|
|
|
|
*
|
2009-08-15 22:11:51 +04:00
|
|
|
* <b>Users should use the public methods.</b>
|
2009-05-14 18:57:08 +04:00
|
|
|
*
|
2009-04-09 22:12:48 +04:00
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
|
|
|
* @since 2.0
|
2009-12-19 16:38:54 +03:00
|
|
|
* @todo Think about whether the number of lookup maps can be reduced.
|
2009-04-09 22:12:48 +04:00
|
|
|
*/
|
|
|
|
class ResultSetMapping
|
|
|
|
{
|
2009-12-19 16:38:54 +03:00
|
|
|
/**
|
|
|
|
* Whether the result is mixed (contains scalar values together with field values).
|
|
|
|
*
|
|
|
|
* @ignore
|
|
|
|
* @var boolean
|
|
|
|
*/
|
2009-05-14 18:57:08 +04:00
|
|
|
public $isMixed = false;
|
2009-12-19 16:38:54 +03:00
|
|
|
/**
|
|
|
|
* Maps alias names to class names.
|
|
|
|
*
|
|
|
|
* @ignore
|
|
|
|
* @var array
|
|
|
|
*/
|
2009-05-14 18:57:08 +04:00
|
|
|
public $aliasMap = array();
|
2009-12-19 16:38:54 +03:00
|
|
|
/**
|
|
|
|
* Maps alias names to related association field names.
|
|
|
|
*
|
|
|
|
* @ignore
|
|
|
|
* @var array
|
|
|
|
*/
|
2009-05-14 18:57:08 +04:00
|
|
|
public $relationMap = array();
|
2009-12-19 16:38:54 +03:00
|
|
|
/**
|
|
|
|
* Maps alias names to parent alias names.
|
|
|
|
*
|
|
|
|
* @ignore
|
|
|
|
* @var array
|
|
|
|
*/
|
2009-05-14 18:57:08 +04:00
|
|
|
public $parentAliasMap = array();
|
2009-12-19 16:38:54 +03:00
|
|
|
/**
|
|
|
|
* Maps column names in the result set to field names for each class.
|
|
|
|
*
|
|
|
|
* @ignore
|
|
|
|
* @var array
|
|
|
|
*/
|
2009-05-14 18:57:08 +04:00
|
|
|
public $fieldMappings = array();
|
2009-12-19 16:38:54 +03:00
|
|
|
/**
|
|
|
|
* Maps column names in the result set to the alias/field name to use in the mapped result.
|
|
|
|
*
|
|
|
|
* @ignore
|
|
|
|
* @var array
|
|
|
|
*/
|
2009-05-14 18:57:08 +04:00
|
|
|
public $scalarMappings = array();
|
2009-12-19 16:38:54 +03:00
|
|
|
/**
|
|
|
|
* Maps column names of meta columns (foreign keys, discriminator columns, ...) to field names.
|
|
|
|
*
|
|
|
|
* @ignore
|
|
|
|
* @var array
|
|
|
|
*/
|
2009-07-20 19:30:54 +04:00
|
|
|
public $metaMappings = array();
|
2009-12-19 16:38:54 +03:00
|
|
|
/**
|
|
|
|
* Maps column names in the result set to the alias they belong to.
|
|
|
|
*
|
|
|
|
* @ignore
|
|
|
|
* @var array
|
|
|
|
*/
|
2009-05-14 18:57:08 +04:00
|
|
|
public $columnOwnerMap = array();
|
2009-12-19 16:38:54 +03:00
|
|
|
/**
|
|
|
|
* List of columns in the result set that are used as discriminator columns.
|
|
|
|
*
|
|
|
|
* @ignore
|
|
|
|
* @var array
|
|
|
|
*/
|
2009-05-14 18:57:08 +04:00
|
|
|
public $discriminatorColumns = array();
|
2009-12-19 16:38:54 +03:00
|
|
|
/**
|
|
|
|
* Maps alias names to field names that should be used for indexing.
|
|
|
|
*
|
|
|
|
* @ignore
|
|
|
|
* @var array
|
|
|
|
*/
|
2009-05-14 18:57:08 +04:00
|
|
|
public $indexByMap = array();
|
2009-12-19 16:38:54 +03:00
|
|
|
/**
|
|
|
|
* Map from column names to class names that declare the field the column is mapped to.
|
|
|
|
*
|
|
|
|
* @ignore
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $declaringClasses = array();
|
2009-04-09 22:12:48 +04:00
|
|
|
|
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Adds an entity result to this ResultSetMapping.
|
2009-04-09 22:12:48 +04:00
|
|
|
*
|
2009-08-03 17:25:56 +04:00
|
|
|
* @param string $class The class name of the entity.
|
|
|
|
* @param string $alias The alias for the class. The alias must be unique among all entity
|
|
|
|
* results or joined entity results within this ResultSetMapping.
|
2009-12-19 16:38:54 +03:00
|
|
|
* @todo Rename: addRootEntity
|
2009-04-09 22:12:48 +04:00
|
|
|
*/
|
2009-04-12 23:02:12 +04:00
|
|
|
public function addEntityResult($class, $alias)
|
2009-04-09 22:12:48 +04:00
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
$this->aliasMap[$alias] = $class;
|
2009-04-12 23:02:12 +04:00
|
|
|
}
|
|
|
|
|
2009-05-14 22:34:12 +04:00
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Sets a discriminator column for an entity result or joined entity result.
|
|
|
|
* The discriminator column will be used to determine the concrete class name to
|
|
|
|
* instantiate.
|
2009-05-14 22:34:12 +04:00
|
|
|
*
|
2009-08-03 17:25:56 +04:00
|
|
|
* @param string $alias The alias of the entity result or joined entity result the discriminator
|
|
|
|
* column should be used for.
|
|
|
|
* @param string $discrColumn The name of the discriminator column in the SQL result set.
|
2009-12-19 16:38:54 +03:00
|
|
|
* @todo Rename: addDiscriminatorColumn
|
2009-05-14 22:34:12 +04:00
|
|
|
*/
|
2009-05-26 15:30:07 +04:00
|
|
|
public function setDiscriminatorColumn($alias, $discrColumn)
|
2009-04-12 23:02:12 +04:00
|
|
|
{
|
2009-05-26 15:30:07 +04:00
|
|
|
$this->discriminatorColumns[$alias] = $discrColumn;
|
2009-05-14 18:57:08 +04:00
|
|
|
$this->columnOwnerMap[$discrColumn] = $alias;
|
2009-04-12 23:02:12 +04:00
|
|
|
}
|
|
|
|
|
2009-05-14 22:34:12 +04:00
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Sets a field to use for indexing an entity result or joined entity result.
|
2009-05-14 22:34:12 +04:00
|
|
|
*
|
2009-08-03 17:25:56 +04:00
|
|
|
* @param string $alias The alias of an entity result or joined entity result.
|
|
|
|
* @param string $fieldName The name of the field to use for indexing.
|
2009-05-14 22:34:12 +04:00
|
|
|
*/
|
2009-04-09 22:12:48 +04:00
|
|
|
public function addIndexBy($alias, $fieldName)
|
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
$this->indexByMap[$alias] = $fieldName;
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
2009-05-14 22:34:12 +04:00
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Checks whether an entity result or joined entity result with a given alias has
|
|
|
|
* a field set for indexing.
|
2009-05-14 22:34:12 +04:00
|
|
|
*
|
|
|
|
* @param string $alias
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2009-04-09 22:12:48 +04:00
|
|
|
public function hasIndexBy($alias)
|
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
return isset($this->indexByMap[$alias]);
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
2009-05-14 22:34:12 +04:00
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Checks whether the column with the given name is mapped as a field result
|
|
|
|
* as part of an entity result or joined entity result.
|
2009-05-14 22:34:12 +04:00
|
|
|
*
|
2009-08-03 17:25:56 +04:00
|
|
|
* @param string $columnName The name of the column in the SQL result set.
|
2009-05-14 22:34:12 +04:00
|
|
|
* @return boolean
|
2009-12-19 16:38:54 +03:00
|
|
|
* @todo Rename: isField
|
2009-05-14 22:34:12 +04:00
|
|
|
*/
|
2009-04-12 23:02:12 +04:00
|
|
|
public function isFieldResult($columnName)
|
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
return isset($this->fieldMappings[$columnName]);
|
2009-04-12 23:02:12 +04:00
|
|
|
}
|
|
|
|
|
2009-05-14 22:34:12 +04:00
|
|
|
/**
|
2009-12-19 16:38:54 +03:00
|
|
|
* Adds a field to the result that belongs to an entity or joined entity.
|
2009-05-14 22:34:12 +04:00
|
|
|
*
|
2009-12-19 16:38:54 +03:00
|
|
|
* @param string $alias The alias of the root entity or joined entity to which the field belongs.
|
2009-08-03 17:25:56 +04:00
|
|
|
* @param string $columnName The name of the column in the SQL result set.
|
2009-12-19 16:38:54 +03:00
|
|
|
* @param string $fieldName The name of the field on the declaring class.
|
|
|
|
* @param string $declaringClass The name of the class that declares/owns the specified field.
|
|
|
|
* When $alias refers to a superclass in a mapped hierarchy but
|
|
|
|
* the field $fieldName is defined on a subclass, specify that here.
|
|
|
|
* If not specified, the field is assumed to belong to the class
|
|
|
|
* designated by $alias.
|
|
|
|
* @todo Rename: addField
|
2009-05-14 22:34:12 +04:00
|
|
|
*/
|
2009-12-19 16:38:54 +03:00
|
|
|
public function addFieldResult($alias, $columnName, $fieldName, $declaringClass = null)
|
2009-04-09 22:12:48 +04:00
|
|
|
{
|
2009-12-19 16:38:54 +03:00
|
|
|
// column name (in result set) => field name
|
2009-05-14 18:57:08 +04:00
|
|
|
$this->fieldMappings[$columnName] = $fieldName;
|
2009-12-19 16:38:54 +03:00
|
|
|
// column name => alias of owner
|
2009-05-14 18:57:08 +04:00
|
|
|
$this->columnOwnerMap[$columnName] = $alias;
|
2009-12-19 16:38:54 +03:00
|
|
|
// field name => class name of declaring class
|
|
|
|
$this->declaringClasses[$columnName] = $declaringClass ?: $this->aliasMap[$alias];
|
2009-05-14 18:57:08 +04:00
|
|
|
if ( ! $this->isMixed && $this->scalarMappings) {
|
|
|
|
$this->isMixed = true;
|
2009-04-12 23:02:12 +04:00
|
|
|
}
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
2009-05-14 22:34:12 +04:00
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Adds a joined entity result.
|
2009-05-14 22:34:12 +04:00
|
|
|
*
|
2009-08-03 17:25:56 +04:00
|
|
|
* @param string $class The class name of the joined entity.
|
|
|
|
* @param string $alias The unique alias to use for the joined entity.
|
|
|
|
* @param string $parentAlias The alias of the entity result that is the parent of this joined result.
|
2009-08-15 22:11:51 +04:00
|
|
|
* @param object $relation The association field that connects the parent entity result with the joined entity result.
|
2009-12-19 16:38:54 +03:00
|
|
|
* @todo Rename: addJoinedEntity
|
2009-05-14 22:34:12 +04:00
|
|
|
*/
|
2009-04-12 23:02:12 +04:00
|
|
|
public function addJoinedEntityResult($class, $alias, $parentAlias, $relation)
|
2009-04-09 22:12:48 +04:00
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
$this->aliasMap[$alias] = $class;
|
|
|
|
$this->parentAliasMap[$alias] = $parentAlias;
|
|
|
|
$this->relationMap[$alias] = $relation;
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
2009-05-28 15:13:12 +04:00
|
|
|
|
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Adds a scalar result mapping.
|
2009-05-28 15:13:12 +04:00
|
|
|
*
|
2009-08-03 17:25:56 +04:00
|
|
|
* @param string $columnName The name of the column in the SQL result set.
|
2009-08-15 22:11:51 +04:00
|
|
|
* @param string $alias The result alias with which the scalar result should be placed in the result structure.
|
2009-12-19 16:38:54 +03:00
|
|
|
* @todo Rename: addScalar
|
2009-05-28 15:13:12 +04:00
|
|
|
*/
|
2009-04-09 22:12:48 +04:00
|
|
|
public function addScalarResult($columnName, $alias)
|
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
$this->scalarMappings[$columnName] = $alias;
|
|
|
|
if ( ! $this->isMixed && $this->fieldMappings) {
|
|
|
|
$this->isMixed = true;
|
2009-04-12 23:02:12 +04:00
|
|
|
}
|
2009-07-19 20:54:53 +04:00
|
|
|
}
|
2009-04-09 22:12:48 +04:00
|
|
|
|
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Checks whether a column with a given name is mapped as a scalar result.
|
|
|
|
*
|
|
|
|
* @param string $columName The name of the column in the SQL result set.
|
2009-04-09 22:12:48 +04:00
|
|
|
* @return boolean
|
2009-12-19 16:38:54 +03:00
|
|
|
* @todo Rename: isScalar
|
2009-04-09 22:12:48 +04:00
|
|
|
*/
|
|
|
|
public function isScalarResult($columnName)
|
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
return isset($this->scalarMappings[$columnName]);
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Gets the name of the class of an entity result or joined entity result,
|
|
|
|
* identified by the given unique alias.
|
2009-04-09 22:12:48 +04:00
|
|
|
*
|
2009-08-03 17:25:56 +04:00
|
|
|
* @param string $alias
|
|
|
|
* @return string
|
2009-04-09 22:12:48 +04:00
|
|
|
*/
|
2009-08-03 17:25:56 +04:00
|
|
|
public function getClassName($alias)
|
2009-04-09 22:12:48 +04:00
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
return $this->aliasMap[$alias];
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Gets the field alias for a column that is mapped as a scalar value.
|
2009-04-09 22:12:48 +04:00
|
|
|
*
|
2009-08-03 17:25:56 +04:00
|
|
|
* @param string $columnName The name of the column in the SQL result set.
|
2009-04-09 22:12:48 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getScalarAlias($columnName)
|
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
return $this->scalarMappings[$columnName];
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Gets the name of the class that owns a field mapping for the specified column.
|
2009-04-09 22:12:48 +04:00
|
|
|
*
|
|
|
|
* @param string $columnName
|
2009-08-03 17:25:56 +04:00
|
|
|
* @return string
|
2009-04-09 22:12:48 +04:00
|
|
|
*/
|
2009-12-19 16:38:54 +03:00
|
|
|
public function getDeclaringClass($columnName)
|
2009-04-09 22:12:48 +04:00
|
|
|
{
|
2009-12-19 16:38:54 +03:00
|
|
|
return $this->declaringClasses[$columnName];
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
2009-05-14 22:34:12 +04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param string $alias
|
|
|
|
* @return AssociationMapping
|
|
|
|
*/
|
2009-04-09 22:12:48 +04:00
|
|
|
public function getRelation($alias)
|
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
return $this->relationMap[$alias];
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
2009-05-14 22:34:12 +04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param string $alias
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2009-05-13 19:19:27 +04:00
|
|
|
public function isRelation($alias)
|
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
return isset($this->relationMap[$alias]);
|
2009-05-13 19:19:27 +04:00
|
|
|
}
|
|
|
|
|
2009-04-09 22:12:48 +04:00
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Gets the alias of the class that owns a field mapping for the specified column.
|
2009-04-09 22:12:48 +04:00
|
|
|
*
|
2009-08-03 17:25:56 +04:00
|
|
|
* @param string $columnName
|
|
|
|
* @return string
|
2009-04-09 22:12:48 +04:00
|
|
|
*/
|
|
|
|
public function getEntityAlias($columnName)
|
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
return $this->columnOwnerMap[$columnName];
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Gets the parent alias of the given alias.
|
2009-04-09 22:12:48 +04:00
|
|
|
*
|
2009-05-14 22:34:12 +04:00
|
|
|
* @param string $alias
|
|
|
|
* @return string
|
2009-04-09 22:12:48 +04:00
|
|
|
*/
|
|
|
|
public function getParentAlias($alias)
|
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
return $this->parentAliasMap[$alias];
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
2009-05-14 22:34:12 +04:00
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Checks whether the given alias has a parent alias.
|
2009-05-14 22:34:12 +04:00
|
|
|
*
|
|
|
|
* @param string $alias
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2009-04-09 22:12:48 +04:00
|
|
|
public function hasParentAlias($alias)
|
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
return isset($this->parentAliasMap[$alias]);
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-05-14 22:34:12 +04:00
|
|
|
* Gets the field name for a column name.
|
2009-04-09 22:12:48 +04:00
|
|
|
*
|
2009-05-14 22:34:12 +04:00
|
|
|
* @param string $columnName
|
|
|
|
* @return string
|
2009-04-09 22:12:48 +04:00
|
|
|
*/
|
|
|
|
public function getFieldName($columnName)
|
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
return $this->fieldMappings[$columnName];
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
2009-05-14 22:34:12 +04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
2009-04-09 22:12:48 +04:00
|
|
|
public function getAliasMap()
|
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
return $this->aliasMap;
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
2009-05-14 22:34:12 +04:00
|
|
|
/**
|
2009-08-03 17:25:56 +04:00
|
|
|
* Gets the number of different entities that appear in the mapped result.
|
2009-05-14 22:34:12 +04:00
|
|
|
*
|
|
|
|
* @return integer
|
|
|
|
*/
|
2009-04-09 22:12:48 +04:00
|
|
|
public function getEntityResultCount()
|
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
return count($this->aliasMap);
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
2009-04-12 23:02:12 +04:00
|
|
|
|
2009-05-14 22:34:12 +04:00
|
|
|
/**
|
2009-07-20 19:30:54 +04:00
|
|
|
* Checks whether this ResultSetMapping defines a mixed result.
|
|
|
|
* Mixed results can only occur in object and array (graph) hydration. In such a
|
|
|
|
* case a mixed result means that scalar values are mixed with objects/array in
|
|
|
|
* the result.
|
2009-05-14 22:34:12 +04:00
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2009-04-12 23:02:12 +04:00
|
|
|
public function isMixedResult()
|
|
|
|
{
|
2009-05-14 18:57:08 +04:00
|
|
|
return $this->isMixed;
|
2009-04-12 23:02:12 +04:00
|
|
|
}
|
2009-07-20 19:30:54 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param $alias
|
|
|
|
* @param $columnName
|
|
|
|
* @param $fieldName
|
|
|
|
* @return unknown_type
|
|
|
|
*/
|
|
|
|
public function addMetaResult($alias, $columnName, $fieldName)
|
|
|
|
{
|
|
|
|
$this->metaMappings[$columnName] = $fieldName;
|
|
|
|
$this->columnOwnerMap[$columnName] = $alias;
|
|
|
|
}
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|