Package org.apache.calcite.adapter.druid
Class UnaryPrefixOperatorConversion
java.lang.Object
org.apache.calcite.adapter.druid.UnaryPrefixOperatorConversion
- All Implemented Interfaces:
DruidSqlOperatorConverter
Unary prefix Operator conversion class; used to convert expressions like
Unary NOT and Minus.
-
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
-
UnaryPrefixOperatorConversion
-
-
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
-