Skip to content

Commit

Permalink
p3 add back default params
Browse files Browse the repository at this point in the history
  • Loading branch information
Sweetsuro committed Mar 12, 2024
1 parent 0dd0a0b commit ae9650e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/execution/plans/index_scan_plan.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class IndexScanPlanNode : public AbstractPlanNode {
* @param pred_key The key for point lookup
*/
IndexScanPlanNode(SchemaRef output, table_oid_t table_oid, index_oid_t index_oid,
AbstractExpressionRef filter_predicate, std::vector<AbstractExpressionRef> pred_keys)
AbstractExpressionRef filter_predicate = nullptr, std::vector<AbstractExpressionRef> pred_keys = {})
: AbstractPlanNode(std::move(output), {}),
table_oid_(table_oid),
index_oid_(index_oid),
Expand Down

0 comments on commit ae9650e

Please sign in to comment.