Skip to content

Commit 9100491

Browse files
committed
Fix accidentally introduced ambiguity
1 parent a369c20 commit 9100491

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/src/arrow/compute/exec/exec_plan.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ class ARROW_EXPORT ExecPlan : public std::enable_shared_from_this<ExecPlan> {
6363

6464
ARROW_DEPRECATED("Deprecated in 11.0.0. Use version that takes ExecContext by value.")
6565
static Result<std::shared_ptr<ExecPlan>> Make(
66-
QueryOptions options, ExecContext* exec_context = default_exec_context(),
66+
QueryOptions options, ExecContext* exec_context,
6767
std::shared_ptr<const KeyValueMetadata> metadata = NULLPTR);
6868

6969
ARROW_DEPRECATED("Deprecated in 11.0.0. Use version that takes ExecContext by value.")
7070
static Result<std::shared_ptr<ExecPlan>> Make(
71-
ExecContext* exec_context = default_exec_context(),
71+
ExecContext* exec_context,
7272
std::shared_ptr<const KeyValueMetadata> metadata = NULLPTR);
7373

7474
ExecNode* AddNode(std::unique_ptr<ExecNode> node);

0 commit comments

Comments
 (0)