Package org.apache.calcite.adapter.druid
Class DirectOperatorConversion
java.lang.Object
org.apache.calcite.adapter.druid.DirectOperatorConversion
- All Implemented Interfaces:
DruidSqlOperatorConverter
Direct operator conversion for expression like Function(exp_1,...exp_n)
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the calcite SQL operator corresponding to Druid operator.@Nullable String
toDruidExpression
(RexNode rexNode, RelDataType rowType, DruidQuery druidQuery) Translate rexNode to valid Druid expression.
-
Constructor Details
-
DirectOperatorConversion
-
-
Method Details
-
calciteOperator
Description copied from interface:DruidSqlOperatorConverter
Returns the calcite SQL operator corresponding to Druid operator.- Specified by:
calciteOperator
in interfaceDruidSqlOperatorConverter
- Returns:
- operator
-
toDruidExpression
public @Nullable String toDruidExpression(RexNode rexNode, RelDataType rowType, DruidQuery druidQuery) Description copied from interface:DruidSqlOperatorConverter
Translate rexNode to valid Druid expression.- Specified by:
toDruidExpression
in interfaceDruidSqlOperatorConverter
- Parameters:
rexNode
- rexNode to translate to Druid expressionrowType
- row type associated with rexNodedruidQuery
- druid query used to figure out configs/fields related like timeZone- Returns:
- valid Druid expression or null if it can not convert the rexNode
-