Skip to content

Commit 5dc7610

Browse files
authored
Merge pull request #520 from sakuraovq/master
remove batchUpdateOrInsert
2 parents 4bbe57a + 491c9ac commit 5dc7610

File tree

5 files changed

+0
-222
lines changed

5 files changed

+0
-222
lines changed

src/db/src/Eloquent/Builder.php

-60
Original file line numberDiff line numberDiff line change
@@ -1251,66 +1251,6 @@ public function batchUpdateByIds(array $values): int
12511251
return $this->toBase()->batchUpdateByIds($values, $primary);
12521252
}
12531253

1254-
/**
1255-
* Batch Update Or Insert, UpdateOrInsert operating suggest add unique index
1256-
*
1257-
* @param array $items origin item
1258-
* @param array $baseWhere only support [key=>value] where
1259-
* @param array $whereKeys exists data where item
1260-
* @param array $updateKeys update item key
1261-
* @param array $incrKeys increment item key
1262-
*
1263-
* @return bool
1264-
* @throws ContainerException
1265-
* @throws DbException
1266-
* @throws ReflectionException
1267-
*/
1268-
public function batchUpdateOrInsert(
1269-
array $items,
1270-
array $baseWhere,
1271-
array $whereKeys = [],
1272-
array $updateKeys = [],
1273-
array $incrKeys = []
1274-
): bool {
1275-
$primary = $this->model->getKeyName();
1276-
1277-
$count = 0;
1278-
$timeColumn = $this->model->updateTimestamps();
1279-
1280-
foreach ($items as $k => &$item) {
1281-
$item = $this->model->getSafeAttributes($item);
1282-
1283-
if ($count === 0) {
1284-
$count = count($item);
1285-
} elseif ($count !== count($item)) {
1286-
throw new DbException('batchUpdateOrInsert The parameter length must be consistent.');
1287-
}
1288-
1289-
if (empty($item)) {
1290-
continue;
1291-
}
1292-
1293-
if ($timeColumn) {
1294-
$items[$k] = array_merge($timeColumn, $item);
1295-
}
1296-
}
1297-
unset($item);
1298-
// Filter empty values
1299-
$items = array_filter($items);
1300-
if (empty($items)) {
1301-
return false;
1302-
}
1303-
1304-
// Auto update "updateAt" column
1305-
$updateAtColumn = $this->model->getUpdatedAtColumn();
1306-
if (isset($timeColumn[$updateAtColumn])) {
1307-
$updateKeys[] = $updateAtColumn;
1308-
}
1309-
1310-
return $this->toBase()->batchUpdateOrInsert($items, $baseWhere, $whereKeys, $updateKeys, $incrKeys, $primary);
1311-
}
1312-
1313-
13141254
/**
13151255
* Dynamically handle calls into the query instance.
13161256
*

src/db/src/Eloquent/Model.php

-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
* @method static static firstOrCreate(array $attributes, array $values = [])
5353
* @method static static updateOrCreate(array $attributes, array $values = [], array $counters = [])
5454
* @method static bool updateOrInsert(array $attributes, array $values = [], array $counters = [])
55-
* @method static bool batchUpdateOrInsert(array $items, array $baseWhere, array $whereKeys = [], array $updateKeys = [], array $incrKeys = []);
5655
* @method static int batchUpdateByIds(array $values)
5756
* @method static int updateAllCounters(array $attributes, array $counters, array $extra = [])
5857
* @method static int updateAllCountersAdoptPrimary(array $attributes, array $counters, array $extra = [])

src/db/src/Query/Builder.php

-86
Original file line numberDiff line numberDiff line change
@@ -2894,92 +2894,6 @@ public function batchUpdateByIds(array $values, string $primary = 'id')
28942894
return $affectedRows;
28952895
}
28962896

2897-
/**
2898-
* Batch Update Or Insert, UpdateOrInsert operating suggest add unique index
2899-
*
2900-
* @param array $items origin item
2901-
* @param array $baseWhere only support [key=>value] where
2902-
* @param array $whereKeys exists data where item
2903-
* @param array $updateKeys update item key
2904-
* @param array $incrKeys increment item key
2905-
* @param string $primary table primary
2906-
*
2907-
* @return bool
2908-
* @throws ContainerException
2909-
* @throws DbException
2910-
* @throws ReflectionException
2911-
*/
2912-
public function batchUpdateOrInsert(
2913-
array $items,
2914-
array $baseWhere,
2915-
array $whereKeys = [],
2916-
array $updateKeys = [],
2917-
array $incrKeys = [],
2918-
string $primary = 'id'
2919-
): bool {
2920-
$wheres = [];
2921-
foreach ($items as $k => $v) {
2922-
foreach ($whereKeys as $whereKey) {
2923-
$value = $v[$whereKey];
2924-
$wheres[$whereKey][$value] = $value;
2925-
}
2926-
2927-
if ($baseWhere) {
2928-
$items[$k] = array_merge($baseWhere, $v);
2929-
}
2930-
}
2931-
2932-
$existMaps = [];
2933-
2934-
$searchWhere = $wheres;
2935-
if ($baseWhere) {
2936-
$searchWhere = array_merge($baseWhere, $wheres);
2937-
}
2938-
2939-
$exitsList = $this->select($primary, ...$whereKeys)->where($searchWhere)->get();
2940-
$uniqueKeys = array_keys($searchWhere);
2941-
foreach ($exitsList as $record) {
2942-
$mergeData = $record;
2943-
if ($baseWhere) {
2944-
$mergeData = array_merge($baseWhere, $record);
2945-
}
2946-
2947-
$uniqueId = ArrayHelper::toString(
2948-
ArrayHelper::only($mergeData, $uniqueKeys)
2949-
);
2950-
$existMaps[$uniqueId] = $record[$primary];
2951-
}
2952-
2953-
$addItems = $updateItems = [];
2954-
foreach ($items as $item) {
2955-
$uniqueId = ArrayHelper::toString(ArrayHelper::only($item, $uniqueKeys));
2956-
2957-
if (isset($existMaps[$uniqueId])) {
2958-
$updateItem = array_merge(
2959-
ArrayHelper::only($item, $updateKeys),
2960-
$this->warpCounters(ArrayHelper::only($item, $incrKeys))
2961-
);
2962-
$updateItems[] = $updateItem;
2963-
2964-
continue;
2965-
}
2966-
2967-
$addItems[] = $item;
2968-
}
2969-
2970-
$updateRes = $addRes = true;
2971-
2972-
if ($updateItems) {
2973-
$updateRes = $this->batchUpdateByIds($updateItems);
2974-
}
2975-
2976-
if ($addItems) {
2977-
$addRes = $this->insert($addItems);
2978-
}
2979-
2980-
return $updateRes && $addRes;
2981-
}
2982-
29832897
/**
29842898
* Insert a new record and get the value of the primary key.
29852899
*

src/db/test/unit/Eloquent/ModelTest.php

-40
Original file line numberDiff line numberDiff line change
@@ -867,44 +867,4 @@ public function testWhereCall()
867867
$this->assertEquals($sql, $toSql);
868868
}
869869

870-
public function testModelBatchUpdateOrInsert()
871-
{
872-
$updateOrInsertItems = [
873-
[
874-
'age' => 2,
875-
'user_desc' => 'desc2',
876-
'hahh' => 2,
877-
],
878-
[
879-
'age' => 3,
880-
'user_desc' => 'desc2',
881-
'hahh' => 3,
882-
],
883-
[
884-
'age' => 3,
885-
'user_desc' => 'desc1',
886-
'hahh' => 3,
887-
],
888-
[
889-
'age' => 3,
890-
'user_desc' => 'desc41',
891-
'hahh' => 3,
892-
]
893-
];
894-
895-
$baseWhere = [
896-
'name' => 'swoft'
897-
];
898-
899-
$result = User::batchUpdateOrInsert(
900-
$updateOrInsertItems,
901-
$baseWhere,
902-
['user_desc'],
903-
['age', 'user_desc'],
904-
['hahh']
905-
);
906-
907-
$this->assertTrue($result);
908-
}
909-
910870
}

src/db/test/unit/Query/BuilderTest.php

-35
Original file line numberDiff line numberDiff line change
@@ -778,39 +778,4 @@ public function testWhereArray()
778778

779779
$this->assertEquals($expectSql, $res);
780780
}
781-
782-
public function testBatchUpdateOrInsert()
783-
{
784-
$updateOrInsertItems = [
785-
[
786-
'age' => 2,
787-
'user_desc' => 'desc',
788-
'hahh' => 2,
789-
],
790-
[
791-
'age' => 3,
792-
'user_desc' => 'desc',
793-
'hahh' => 3,
794-
],
795-
[
796-
'age' => 3,
797-
'user_desc' => 'desc1',
798-
'hahh' => 3,
799-
]
800-
];
801-
802-
$baseWhere = [
803-
'name' => 'swoft'
804-
];
805-
806-
$result = DB::table('user')->batchUpdateOrInsert(
807-
$updateOrInsertItems,
808-
$baseWhere,
809-
['user_desc'],
810-
['age', 'user_desc'],
811-
['hahh']
812-
);
813-
814-
$this->assertTrue($result);
815-
}
816781
}

0 commit comments

Comments
 (0)