-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
databaseIssues or pull requests that affect the database layerIssues or pull requests that affect the database layer
Description
set*Batch()
public function setInsertBatch($key, string $value = '', ?bool $escape = null);
public function setUpdateBatch($key, string $index = '', ?bool $escape = null);
setUpdateBatch()
does not have $value
.
*Batch()
public function insertBatch(?array $set = null, ?bool $escape = null, int $batchSize = 100);
public function updateBatch(?array $set = null, ?string $index = null, int $batchSize = 100);
updateBatch()
does not have $escape
.
References
- [QueryBuilder] The combination of the
setUpdateBatch()
and theupdateBatch()
is difficult to use. #5134 - Refactor BaseBuilder.php and fix xxxBatch() methods docs #5148
- Bug: [QueryBuilder] setInsertBatch() + insertBatch() #5674
- Add missing escape parameter for updateBatch #6153
- Add Upsert/UpsertBatch to builder #6294
Metadata
Metadata
Assignees
Labels
databaseIssues or pull requests that affect the database layerIssues or pull requests that affect the database layer