This repository was archived by the owner on Aug 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Remove Eloquent\Builder::chunkById()
already having the correct id field in Laravel
#25
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -834,12 +834,12 @@ public function testChunkById(): void | |
User::create(['name' => 'spork', 'tags' => ['sharp', 'pointy', 'round', 'bowl']]); | ||
User::create(['name' => 'spoon', 'tags' => ['round', 'bowl']]); | ||
|
||
$count = 0; | ||
User::chunkById(2, function (EloquentCollection $items) use (&$count) { | ||
$count += count($items); | ||
$names = []; | ||
User::chunkById(2, function (EloquentCollection $items) use (&$names) { | ||
$names = array_merge($names, $items->pluck('name')->all()); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would it make sense to use If you like, you could also add a duplicate name to the fixtures above to assert that it's appended instead of merged. I'll note that there is no such problem with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The var_dump(['a', 'b'] + ['c']);
// Result: ['a', 'b'] |
||
}); | ||
|
||
$this->assertEquals(3, $count); | ||
$this->assertEquals(['fork', 'spork', 'spoon'], $names); | ||
} | ||
|
||
public function testTruncateModel() | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not familiar with
chunkById()
, but https://laravel.com/docs/10.x/queries#chunking-results states:Looking at the test below, I'm not sure where the primary key is being overwritten. How do we know an
_id
field isn't being created internally? Or does the User model in the test suite definename
as a primary key mapped to the_id
database field?Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The primary key is set in the model.
_id
is the default for MongoDB models.This key is used in Laravel's
chunkById
.