Skip to content

Commit 42604fc

Browse files
committed
Fix
1 parent 1398cd1 commit 42604fc

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
@@ -2674,7 +2674,7 @@ protected function _deleteBatch(string $table, array $keys, array $values): stri
26742674
array_map(
26752675
static fn ($key, $value, $id) => (
26762676
$value instanceof RawSql ?
2677-
$key :
2677+
$value :
26782678
(
26792679
is_string($key) ?
26802680
$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
@@ -443,7 +443,7 @@ protected function _deleteBatch(string $table, array $keys, array $values): stri
443443
array_map(
444444
static fn ($key, $value, $id) => (
445445
$value instanceof RawSql ?
446-
$key :
446+
$value :
447447
(
448448
is_string($key) ?
449449
$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
@@ -433,7 +433,7 @@ protected function _deleteBatch(string $table, array $keys, array $values): stri
433433
array_map(
434434
static fn ($key, $value, $id) => (
435435
$value instanceof RawSql ?
436-
$key :
436+
$value :
437437
(
438438
is_string($key) ?
439439
$table . '.' . $id . $key . $id . ' = ' . $alias . '.' . $value :

0 commit comments

Comments
 (0)