Skip to content

Commit 81e15ab

Browse files
committed
feat: add support for IN (array) condition with update() and delete() calls
1 parent 604277e commit 81e15ab

File tree

2 files changed

+83
-11
lines changed

2 files changed

+83
-11
lines changed

src/Connection.php

+16-11
Original file line numberDiff line numberDiff line change
@@ -365,9 +365,14 @@ private function getCriteriaCondition(array $criteria): array
365365
continue;
366366
}
367367

368-
$columns[] = $columnName;
369-
$values[] = $value;
370-
$conditions[] = $columnName . ' = ?';
368+
if (is_array($value)) {
369+
$conditions[] = $columnName . ' IN (?)';
370+
} else {
371+
$conditions[] = $columnName . ' = ?';
372+
}
373+
374+
$columns[] = $columnName;
375+
$values[] = $value;
371376
}
372377

373378
return [$columns, $values, $conditions];
@@ -378,8 +383,8 @@ private function getCriteriaCondition(array $criteria): array
378383
*
379384
* Table expression and columns are not escaped and are not safe for user-input.
380385
*
381-
* @param array<string, mixed> $criteria
382-
* @param array<int<0,max>, string|ParameterType|Type>|array<string, string|ParameterType|Type> $types
386+
* @param array<string, mixed> $criteria
387+
* @param array<int<0,max>, string|ParameterType|ArrayParameterType|Type>|array<string, string|ArrayParameterType|ParameterType|Type> $types
383388
*
384389
* @return int|numeric-string The number of affected rows.
385390
*
@@ -442,9 +447,9 @@ public function getTransactionIsolation(): TransactionIsolationLevel
442447
*
443448
* Table expression and columns are not escaped and are not safe for user-input.
444449
*
445-
* @param array<string, mixed> $data
446-
* @param array<string, mixed> $criteria
447-
* @param array<int<0,max>, string|ParameterType|Type>|array<string, string|ParameterType|Type> $types
450+
* @param array<string, mixed> $data
451+
* @param array<string, mixed> $criteria
452+
* @param array<int<0,max>, string|ParameterType|ArrayParameterType|Type>|array<string, string|ParameterType|ArrayParameterType|Type> $types
448453
*
449454
* @return int|numeric-string The number of affected rows.
450455
*
@@ -518,10 +523,10 @@ public function insert(string $table, array $data, array $types = []): int|strin
518523
/**
519524
* Extract ordered type list from an ordered column list and type map.
520525
*
521-
* @param array<int, string> $columns
522-
* @param array<int, string|ParameterType|Type>|array<string, string|ParameterType|Type> $types
526+
* @param array<int, string> $columns
527+
* @param array<int, string|ParameterType|ArrayParameterType|Type>|array<string, string|ParameterType|ArrayParameterType|Type> $types
523528
*
524-
* @return array<int<0, max>, string|ParameterType|Type>
529+
* @return array<int<0, max>, string|ParameterType|ArrayParameterType|Type>
525530
*/
526531
private function extractTypeValues(array $columns, array $types): array
527532
{

tests/ConnectionTest.php

+67
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
namespace Doctrine\DBAL\Tests;
66

7+
use Doctrine\DBAL\ArrayParameterType;
78
use Doctrine\DBAL\Cache\QueryCacheProfile;
89
use Doctrine\DBAL\Configuration;
910
use Doctrine\DBAL\Connection;
@@ -380,6 +381,41 @@ public function testUpdateWithIsNull(): void
380381
);
381382
}
382383

384+
public function testUpdateWithInArray(): void
385+
{
386+
$conn = $this->getExecuteStatementMockConnection();
387+
388+
$conn->expects(self::once())
389+
->method('executeStatement')
390+
->with(
391+
'UPDATE TestTable SET text = ? WHERE id IN (?) AND name = ?',
392+
[
393+
'some text',
394+
[1, 2],
395+
'foo',
396+
],
397+
[
398+
'string',
399+
ArrayParameterType::STRING,
400+
'string',
401+
],
402+
);
403+
404+
$conn->update(
405+
'TestTable',
406+
['text' => 'some text'],
407+
[
408+
'id' => [1, 2],
409+
'name' => 'foo',
410+
],
411+
[
412+
'text' => 'string',
413+
'id' => ArrayParameterType::STRING,
414+
'name' => 'string',
415+
],
416+
);
417+
}
418+
383419
public function testDeleteWithIsNull(): void
384420
{
385421
$conn = $this->getExecuteStatementMockConnection();
@@ -405,6 +441,37 @@ public function testDeleteWithIsNull(): void
405441
);
406442
}
407443

444+
public function testDeleteWithInArray(): void
445+
{
446+
$conn = $this->getExecuteStatementMockConnection();
447+
448+
$conn->expects(self::once())
449+
->method('executeStatement')
450+
->with(
451+
'DELETE FROM TestTable WHERE id IN (?) AND name = ?',
452+
[
453+
[1, 2],
454+
'foo',
455+
],
456+
[
457+
ArrayParameterType::STRING,
458+
'string',
459+
],
460+
);
461+
462+
$conn->delete(
463+
'TestTable',
464+
[
465+
'id' => [1, 2],
466+
'name' => 'foo',
467+
],
468+
[
469+
'id' => ArrayParameterType::STRING,
470+
'name' => 'string',
471+
],
472+
);
473+
}
474+
408475
#[DataProvider('fetchModeProvider')]
409476
public function testFetch(string $method, callable $invoke, mixed $expected): void
410477
{

0 commit comments

Comments
 (0)