mirror of https://github.com/apache/druid.git
SqlOperatorConversion Javadoc fix. (#7713)
Appears to be a copypasta error; the toDruidFilter method was referred to aggregations, but it's not handling aggregations.
This commit is contained in:
parent
d69aa6f7f6
commit
cb6ec2cab8
|
@ -52,10 +52,10 @@ public interface SqlOperatorConversion
|
|||
DruidExpression toDruidExpression(PlannerContext plannerContext, RowSignature rowSignature, RexNode rexNode);
|
||||
|
||||
/**
|
||||
* Returns a Druid Aggregation corresponding to a SQL {@link SqlOperator} used to filter rows
|
||||
* Returns a Druid filter corresponding to a Calcite {@code RexNode} used as a filter condition.
|
||||
*
|
||||
* @param plannerContext SQL planner context
|
||||
* @param querySignature signature of the rows being aggregated and expression column references
|
||||
* @param querySignature signature of the rows being filtered, and any expression column references
|
||||
* @param rexNode filter expression rex node
|
||||
*
|
||||
* @return filter, or null if the call cannot be translated
|
||||
|
|
Loading…
Reference in New Issue