Skip to content

Commit 20a3da6

Browse files
committed
Fix
1 parent 346abf9 commit 20a3da6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

system/Database/BaseBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2704,7 +2704,7 @@ protected function _deleteBatch(string $table, array $keys, array $values): stri
27042704
array_map(
27052705
static fn ($key, $value, $id) => (
27062706
$value instanceof RawSql ?
2707-
$key :
2707+
$value :
27082708
(
27092709
is_string($key) ?
27102710
$table . '.' . $id . $key . $id . ' = ' . $alias . '.' . $value :

system/Database/OCI8/Builder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ protected function _deleteBatch(string $table, array $keys, array $values): stri
467467
array_map(
468468
static fn ($key, $value, $id) => (
469469
$value instanceof RawSql ?
470-
$key :
470+
$value :
471471
(
472472
is_string($key) ?
473473
$table . '.' . $id . $key . $id . ' = ' . $alias . '.' . $value :

system/Database/Postgre/Builder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ protected function _deleteBatch(string $table, array $keys, array $values): stri
441441
array_map(
442442
static fn ($key, $value, $id) => (
443443
$value instanceof RawSql ?
444-
$key :
444+
$value :
445445
(
446446
is_string($key) ?
447447
$table . '.' . $id . $key . $id . ' = ' . $alias . '.' . $value :

0 commit comments

Comments
 (0)