Package org.apache.calcite.adapter.druid
Class UnarySuffixOperatorConversion
java.lang.Object
org.apache.calcite.adapter.druid.UnarySuffixOperatorConversion
- All Implemented Interfaces:
DruidSqlOperatorConverter
Unary suffix operator conversion; used to convert function likes expression
Unary_Operator.
-
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
-
UnarySuffixOperatorConversion
-
-
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
-