1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

#1178 - handling custom types when filtering by key in extra-lazy many-to-many associations

This commit is contained in:
Marco Pivetta 2015-01-17 04:48:47 +01:00
parent e39f08f6bd
commit 5e49aeef6f

View file

@ -182,11 +182,11 @@ class ManyToManyPersister extends AbstractCollectionPersister
throw new \BadMethodCallException("Selecting a collection by index is only supported on indexed collections."); throw new \BadMethodCallException("Selecting a collection by index is only supported on indexed collections.");
} }
list($quotedJoinTable, $whereClauses, $params) = $this->getJoinTableRestrictionsWithKey($collection, $key, true); list($quotedJoinTable, $whereClauses, $params, $types) = $this->getJoinTableRestrictionsWithKey($collection, $key, true);
$sql = 'SELECT 1 FROM ' . $quotedJoinTable . ' WHERE ' . implode(' AND ', $whereClauses); $sql = 'SELECT 1 FROM ' . $quotedJoinTable . ' WHERE ' . implode(' AND ', $whereClauses);
return (bool) $this->conn->fetchColumn($sql, $params); return (bool) $this->conn->fetchColumn($sql, $params, 0, $types);
} }
/** /**
@ -552,7 +552,11 @@ class ManyToManyPersister extends AbstractCollectionPersister
* @param string $key * @param string $key
* @param boolean $addFilters Whether the filter SQL should be included or not. * @param boolean $addFilters Whether the filter SQL should be included or not.
* *
* @return array * @return array ordered vector:
* - quoted join table name
* - where clauses to be added for filtering
* - parameters to be bound for filtering
* - types of the parameters to be bound for filtering
*/ */
private function getJoinTableRestrictionsWithKey(PersistentCollection $collection, $key, $addFilters) private function getJoinTableRestrictionsWithKey(PersistentCollection $collection, $key, $addFilters)
{ {
@ -560,7 +564,6 @@ class ManyToManyPersister extends AbstractCollectionPersister
$mapping = $filterMapping; $mapping = $filterMapping;
$indexBy = $mapping['indexBy']; $indexBy = $mapping['indexBy'];
$id = $this->uow->getEntityIdentifier($collection->getOwner()); $id = $this->uow->getEntityIdentifier($collection->getOwner());
$targetEntity = $this->em->getClassMetadata($mapping['targetEntity']); $targetEntity = $this->em->getClassMetadata($mapping['targetEntity']);
if (! $mapping['isOwningSide']) { if (! $mapping['isOwningSide']) {
@ -568,17 +571,20 @@ class ManyToManyPersister extends AbstractCollectionPersister
$mapping = $associationSourceClass->associationMappings[$mapping['mappedBy']]; $mapping = $associationSourceClass->associationMappings[$mapping['mappedBy']];
$joinColumns = $mapping['joinTable']['joinColumns']; $joinColumns = $mapping['joinTable']['joinColumns'];
$relationMode = 'relationToTargetKeyColumns'; $relationMode = 'relationToTargetKeyColumns';
$inverseRelationMode = 'relationToSourceKeyColumns';
} else { } else {
$joinColumns = $mapping['joinTable']['inverseJoinColumns']; $joinColumns = $mapping['joinTable']['inverseJoinColumns'];
$associationSourceClass = $this->em->getClassMetadata($mapping['sourceEntity']); $associationSourceClass = $this->em->getClassMetadata($mapping['sourceEntity']);
$relationMode = 'relationToSourceKeyColumns'; $relationMode = 'relationToSourceKeyColumns';
$inverseRelationMode = 'relationToTargetKeyColumns';
} }
$quotedJoinTable = $this->quoteStrategy->getJoinTableName($mapping, $associationSourceClass, $this->platform). ' t'; $quotedJoinTable = $this->quoteStrategy->getJoinTableName($mapping, $associationSourceClass, $this->platform). ' t';
$whereClauses = array(); $whereClauses = array();
$params = array(); $params = array();
$types = array();
$joinNeeded = !in_array($indexBy, $targetEntity->identifier); $joinNeeded = ! in_array($indexBy, $targetEntity->identifier);
if ($joinNeeded) { // extra join needed if indexBy is not a @id if ($joinNeeded) { // extra join needed if indexBy is not a @id
$joinConditions = array(); $joinConditions = array();
@ -591,16 +597,23 @@ class ManyToManyPersister extends AbstractCollectionPersister
$whereClauses[] = 'tr.' . $targetEntity->getColumnName($indexBy) . ' = ?'; $whereClauses[] = 'tr.' . $targetEntity->getColumnName($indexBy) . ' = ?';
$params[] = $key; $params[] = $key;
$types[] = PersisterHelper::getTypeOfField($indexBy, $targetEntity, $this->em);
} }
foreach ($mapping['joinTableColumns'] as $joinTableColumn) { foreach ($mapping['joinTableColumns'] as $joinTableColumn) {
if (isset($mapping[$relationMode][$joinTableColumn])) { if (isset($mapping[$relationMode][$joinTableColumn])) {
$whereClauses[] = 't.' . $joinTableColumn . ' = ?'; $whereClauses[] = 't.' . $joinTableColumn . ' = ?';
$params[] = $id[$targetEntity->getFieldForColumn($mapping[$relationMode][$joinTableColumn])]; $column = $mapping[$relationMode][$joinTableColumn];
} elseif (!$joinNeeded) { $params[] = $id[$targetEntity->getFieldForColumn($mapping[$relationMode][$joinTableColumn])];
$types[] = PersisterHelper::getTypeOfColumn($column, $targetEntity, $this->em);
} elseif ( ! $joinNeeded) {
$whereClauses[] = 't.' . $joinTableColumn . ' = ?'; $whereClauses[] = 't.' . $joinTableColumn . ' = ?';
$params[] = $key; $params[] = $key;
$types[] = PersisterHelper::getTypeOfColumn(
$mapping[$inverseRelationMode][$joinTableColumn],
$targetEntity,
$this->em
);
} }
} }
@ -613,7 +626,7 @@ class ManyToManyPersister extends AbstractCollectionPersister
} }
} }
return array($quotedJoinTable, $whereClauses, $params); return array($quotedJoinTable, $whereClauses, $params, $types);
} }
/** /**