Skip to content

Commit 195cedd

Browse files
Add parallel option to Options (#125)
## What is the goal of this PR? To allow clients to disable parallel execution, we add the `parallel_opt` to `Options. ## What are the changes implemented in this PR? * add `parallel_opt` to `Options.
1 parent 6c47e44 commit 195cedd

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

protobuf/options.proto

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,22 @@ message Options {
3535
oneof explain_opt {
3636
bool explain = 3;
3737
}
38+
oneof parallel_opt {
39+
bool parallel = 4;
40+
}
3841
oneof batch_size_opt {
39-
int32 batch_size = 4;
42+
int32 batch_size = 5;
4043
}
4144
oneof prefetch_opt {
42-
bool prefetch = 5;
45+
bool prefetch = 6;
4346
}
4447
oneof session_idle_timeout_opt {
45-
int32 session_idle_timeout_millis = 6;
48+
int32 session_idle_timeout_millis = 7;
4649
}
4750
oneof schema_lock_acquire_timeout_opt {
48-
int32 schema_lock_acquire_timeout_millis = 7;
51+
int32 schema_lock_acquire_timeout_millis = 8;
4952
}
5053
oneof read_any_replica_opt {
51-
bool read_any_replica = 8;
54+
bool read_any_replica = 9;
5255
}
5356
}

0 commit comments

Comments
 (0)