Package org.apache.calcite.adapter.druid
Class FloorOperatorConversion
java.lang.Object
org.apache.calcite.adapter.druid.FloorOperatorConversion
- All Implemented Interfaces:
DruidSqlOperatorConverter
DruidSqlOperatorConverter implementation that handles Floor operations
conversions.
-
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
-
FloorOperatorConversion
public FloorOperatorConversion()
-
-
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
-