Skip to content

Commit

Permalink
fix(grpc): add missing PlannerParams proto field (#1770)
Browse files Browse the repository at this point in the history
  • Loading branch information
alextheimer committed May 14, 2024
1 parent 3e40873 commit 9930e66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions grpc/src/main/protobuf/query_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ message PlannerParams {
optional bool useProtoExecPlans = 16;
optional bool reduceShardKeyRegexFanout = 17;
optional uint32 maxShardKeyRegexFanoutBatchSize = 18;
optional bool allowNestedAggregatePushdown = 19;
}

message Request {
Expand Down
1 change: 1 addition & 0 deletions query/src/main/scala/filodb/query/ProtoConverters.scala
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ object ProtoConverters {
builder.setUseProtoExecPlans(pp.useProtoExecPlans)
builder.setReduceShardKeyRegexFanout(pp.reduceShardKeyRegexFanout)
builder.setMaxShardKeyRegexFanoutBatchSize(pp.maxShardKeyRegexFanoutBatchSize)
builder.setAllowNestedAggregatePushdown(pp.allowNestedAggregatePushdown)
builder.build()
}
}
Expand Down

0 comments on commit 9930e66

Please sign in to comment.