Skip to content

Commit

Permalink
Merge pull request #10816 from carlopi/fixes
Browse files Browse the repository at this point in the history
Trivial fixes
  • Loading branch information
Mytherin authored Feb 23, 2024
2 parents ea9742f + b795479 commit cd98e7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/execution/operator/aggregate/aggregate_object.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ AggregateObject::AggregateObject(BoundWindowExpression &window)

vector<AggregateObject> AggregateObject::CreateAggregateObjects(const vector<BoundAggregateExpression *> &bindings) {
vector<AggregateObject> aggregates;
aggregates.reserve(aggregates.size());
aggregates.reserve(bindings.size());
for (auto &binding : bindings) {
aggregates.emplace_back(binding);
}
Expand Down
4 changes: 2 additions & 2 deletions test/sql/join/external/simple_external_join.test_coverage
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ pragma debug_force_external=false

# higher memory limit for this because the strings are so large
statement ok
pragma memory_limit='150mb'
pragma memory_limit='200mb'

# add some strings that are longer than Storage::BLOCK_SIZE
statement ok
Expand All @@ -73,4 +73,4 @@ insert into t2 select concat(range::VARCHAR, repeat('0', 300000)) i from range(9
query T
select count(*) from t1, t2 where i = j
----
100010
100010

0 comments on commit cd98e7d

Please sign in to comment.