Commit 26bb6ed8 authored by Fabio B. Silva's avatar Fabio B. Silva Committed by Benjamin Eberlei

fix DDC-1978

parent cc7b52ec
...@@ -79,43 +79,50 @@ class SQLParserUtils ...@@ -79,43 +79,50 @@ class SQLParserUtils
/** /**
* For a positional query this method can rewrite the sql statement with regard to array parameters. * For a positional query this method can rewrite the sql statement with regard to array parameters.
* *
* @param string $query * @param string $query The SQL query to execute.
* @param array $params * @param array $params The parameters to bind to the query.
* @param array $types * @param array $types The types the previous parameters are in.
*
* @return array * @return array
*/ */
static public function expandListParameters($query, $params, $types) static public function expandListParameters($query, $params, $types)
{ {
$isPositional = is_int(key($params)); $isPositional = is_int(key($params));
$arrayPositions = array(); $arrayPositions = array();
$bindIndex = -1; $bindIndex = -1;
foreach ($types as $name => $type) { foreach ($types as $name => $type) {
++$bindIndex; ++$bindIndex;
if ($type === Connection::PARAM_INT_ARRAY || $type === Connection::PARAM_STR_ARRAY) {
if ($isPositional) {
$name = $bindIndex;
}
$arrayPositions[$name] = false; if ($type !== Connection::PARAM_INT_ARRAY && $type !== Connection::PARAM_STR_ARRAY) {
continue;
}
if ($isPositional) {
$name = $bindIndex;
} }
$arrayPositions[$name] = false;
} }
if ((!$arrayPositions && $isPositional) || (count($params) != count($types))) { if (( ! $arrayPositions && $isPositional) || (count($params) != count($types))) {
return array($query, $params, $types); return array($query, $params, $types);
} }
$paramPos = self::getPlaceholderPositions($query, $isPositional); $paramPos = self::getPlaceholderPositions($query, $isPositional);
if ($isPositional) { if ($isPositional) {
$paramOffset = 0; $paramOffset = 0;
$queryOffset = 0; $queryOffset = 0;
foreach ($paramPos as $needle => $needlePos) { foreach ($paramPos as $needle => $needlePos) {
if (!isset($arrayPositions[$needle])) { if ( ! isset($arrayPositions[$needle])) {
continue; continue;
} }
$needle += $paramOffset; $needle += $paramOffset;
$needlePos += $queryOffset; $needlePos += $queryOffset;
$len = count($params[$needle]); $count = count($params[$needle]);
$params = array_merge( $params = array_merge(
array_slice($params, 0, $needle), array_slice($params, 0, $needle),
...@@ -125,50 +132,52 @@ class SQLParserUtils ...@@ -125,50 +132,52 @@ class SQLParserUtils
$types = array_merge( $types = array_merge(
array_slice($types, 0, $needle), array_slice($types, 0, $needle),
array_fill(0, $len, $types[$needle] - Connection::ARRAY_PARAM_OFFSET), // array needles are at PDO::PARAM_* + 100 array_fill(0, $count, $types[$needle] - Connection::ARRAY_PARAM_OFFSET), // array needles are at PDO::PARAM_* + 100
array_slice($types, $needle + 1) array_slice($types, $needle + 1)
); );
$expandStr = implode(", ", array_fill(0, $len, "?")); $expandStr = implode(", ", array_fill(0, $count, "?"));
$query = substr($query, 0, $needlePos) . $expandStr . substr($query, $needlePos + 1); $query = substr($query, 0, $needlePos) . $expandStr . substr($query, $needlePos + 1);
$paramOffset += ($len - 1); // Grows larger by number of parameters minus the replaced needle. $paramOffset += ($count - 1); // Grows larger by number of parameters minus the replaced needle.
$queryOffset += (strlen($expandStr) - 1); $queryOffset += (strlen($expandStr) - 1);
} }
} else { return array($query, $params, $types);
$queryOffset= 0; }
$typesOrd = array();
$paramsOrd = array();
foreach ($paramPos as $pos => $paramName) {
$paramLen = strlen($paramName) + 1;
$value = $params[$paramName];
if (!isset($arrayPositions[$paramName])) {
$pos += $queryOffset;
$queryOffset -= ($paramLen - 1);
$paramsOrd[] = $value;
$typesOrd[] = $types[$paramName];
$query = substr($query, 0, $pos) . '?' . substr($query, ($pos + $paramLen));
} else {
$len = count($value);
$expandStr = implode(", ", array_fill(0, $len, "?"));
foreach ($value as $val) {
$paramsOrd[] = $val;
$typesOrd[] = $types[$paramName] - Connection::ARRAY_PARAM_OFFSET;
}
$pos += $queryOffset; $queryOffset = 0;
$queryOffset += (strlen($expandStr) - $paramLen); $typesOrd = array();
$query = substr($query, 0, $pos) . $expandStr . substr($query, ($pos + $paramLen)); $paramsOrd = array();
}
foreach ($paramPos as $pos => $paramName) {
$paramLen = strlen($paramName) + 1;
$value = $params[$paramName];
if ( ! isset($arrayPositions[$paramName])) {
$pos += $queryOffset;
$queryOffset -= ($paramLen - 1);
$paramsOrd[] = $value;
$typesOrd[] = $types[$paramName];
$query = substr($query, 0, $pos) . '?' . substr($query, ($pos + $paramLen));
continue;
}
$count = count($value);
$expandStr = $count > 0 ? implode(', ', array_fill(0, $count, '?')) : '?';
foreach ($value as $val) {
$paramsOrd[] = $val;
$typesOrd[] = $types[$paramName] - Connection::ARRAY_PARAM_OFFSET;
} }
$types = $typesOrd; $pos += $queryOffset;
$params = $paramsOrd; $queryOffset += (strlen($expandStr) - $paramLen);
$query = substr($query, 0, $pos) . $expandStr . substr($query, ($pos + $paramLen));
} }
return array($query, $params, $types); return array($query, $paramsOrd, $typesOrd);
} }
} }
\ No newline at end of file
...@@ -98,6 +98,24 @@ class SQLParserUtilsTest extends \Doctrine\Tests\DbalTestCase ...@@ -98,6 +98,24 @@ class SQLParserUtilsTest extends \Doctrine\Tests\DbalTestCase
array(1, 2, 3, 4, 5), array(1, 2, 3, 4, 5),
array(\PDO::PARAM_INT, \PDO::PARAM_INT, \PDO::PARAM_INT, \PDO::PARAM_INT, \PDO::PARAM_INT) array(\PDO::PARAM_INT, \PDO::PARAM_INT, \PDO::PARAM_INT, \PDO::PARAM_INT, \PDO::PARAM_INT)
), ),
// Positional : Empty "integer" array DDC-1978
array(
"SELECT * FROM Foo WHERE foo IN (?)",
array('foo'=>array()),
array('foo'=>Connection::PARAM_INT_ARRAY),
'SELECT * FROM Foo WHERE foo IN (?)',
array(),
array()
),
// Positional : Empty "str" array DDC-1978
array(
"SELECT * FROM Foo WHERE foo IN (?)",
array('foo'=>array()),
array('foo'=>Connection::PARAM_STR_ARRAY),
'SELECT * FROM Foo WHERE foo IN (?)',
array(),
array()
),
// Named parameters : Very simple with param int // Named parameters : Very simple with param int
array( array(
"SELECT * FROM Foo WHERE foo = :foo", "SELECT * FROM Foo WHERE foo = :foo",
...@@ -191,6 +209,24 @@ class SQLParserUtilsTest extends \Doctrine\Tests\DbalTestCase ...@@ -191,6 +209,24 @@ class SQLParserUtilsTest extends \Doctrine\Tests\DbalTestCase
array(2, 3, 2), array(2, 3, 2),
array(\PDO::PARAM_INT, \PDO::PARAM_INT, \PDO::PARAM_INT) array(\PDO::PARAM_INT, \PDO::PARAM_INT, \PDO::PARAM_INT)
), ),
// Named parameters : Empty "integer" array DDC-1978
array(
"SELECT * FROM Foo WHERE foo IN (:foo)",
array('foo'=>array()),
array('foo'=>Connection::PARAM_INT_ARRAY),
'SELECT * FROM Foo WHERE foo IN (?)',
array(),
array()
),
// Named parameters : Two empty "str" array DDC-1978
array(
"SELECT * FROM Foo WHERE foo IN (:foo) OR bar IN (:bar)",
array('foo'=>array(), 'bar'=>array()),
array('foo'=>Connection::PARAM_STR_ARRAY, 'bar'=>Connection::PARAM_STR_ARRAY),
'SELECT * FROM Foo WHERE foo IN (?) OR bar IN (?)',
array(),
array()
),
); );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment