aboutsummaryrefslogtreecommitdiff
path: root/protocol/src/main/protobuf/ExecutionProtos.proto
blob: 58ca5ade4ab0f35725b5dcbd48480c9729e008ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package exec.bit;

option java_package = "org.apache.drill.exec.proto";
option java_outer_classname = "ExecProtos";
option optimize_for = SPEED;

import "Coordination.proto";
import "UserBitShared.proto";

message FragmentHandle {
	optional exec.shared.QueryId query_id = 1;
	optional int32 major_fragment_id = 2;
	optional int32 minor_fragment_id = 3;
	optional exec.shared.QueryId parent_query_id = 4;
}

/*
 * Prepared statement state on server side. Clients do not
 * need to know the contents. They just need to submit it back to
 * server when executing the prepared statement.
 */
message ServerPreparedStatementState {
  optional string sql_query = 1;
}