This is an automated email from the ASF dual-hosted git repository.
jackie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new a5d2a35651 Cleanup unused aggregate internal hint (#13295)
a5d2a35651 is described below
commit a5d2a35651db882eabb51d3d0cbcdc0d1abcbc50
Author: Xiaotian (Jackie) Jiang <[email protected]>
AuthorDate: Mon Jun 3 11:24:59 2024 -0700
Cleanup unused aggregate internal hint (#13295)
---
.../apache/pinot/calcite/rel/hint/PinotHintOptions.java | 16 +++-------------
1 file changed, 3 insertions(+), 13 deletions(-)
diff --git
a/pinot-query-planner/src/main/java/org/apache/pinot/calcite/rel/hint/PinotHintOptions.java
b/pinot-query-planner/src/main/java/org/apache/pinot/calcite/rel/hint/PinotHintOptions.java
index 99e07b61df..f19fa8a705 100644
---
a/pinot-query-planner/src/main/java/org/apache/pinot/calcite/rel/hint/PinotHintOptions.java
+++
b/pinot-query-planner/src/main/java/org/apache/pinot/calcite/rel/hint/PinotHintOptions.java
@@ -30,24 +30,14 @@ import org.apache.calcite.rel.hint.RelHint;
* in {@link RelHint#kvOptions}</p>
*/
public class PinotHintOptions {
+ private PinotHintOptions() {
+ }
+
public static final String AGGREGATE_HINT_OPTIONS = "aggOptions";
public static final String JOIN_HINT_OPTIONS = "joinOptions";
public static final String TABLE_HINT_OPTIONS = "tableOptions";
public static final String WINDOW_HINT_OPTIONS = "windowOptions";
- /**
- * Hint to denote that the aggregation node is the final aggregation stage
which extracts the final result.
- */
- public static final String INTERNAL_AGG_OPTIONS = "aggOptionsInternal";
-
- private PinotHintOptions() {
- // do not instantiate.
- }
-
- public static class InternalAggregateOptions {
- public static final String AGG_TYPE = "agg_type";
- }
-
public static class AggregateOptions {
public static final String IS_PARTITIONED_BY_GROUP_BY_KEYS =
"is_partitioned_by_group_by_keys";
public static final String SKIP_LEAF_STAGE_GROUP_BY_AGGREGATION =
"is_skip_leaf_stage_group_by";
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]