public abstract class SqlInternalOperators extends Object
These operators are always created directly, not by looking up a function
or operator by name or syntax, and therefore this class does not implement
interface SqlOperatorTable.
| Modifier and Type | Field and Description |
|---|---|
static SqlBetweenOperator |
DRUID_BETWEEN
A BETWEEN operator for Druid, analogous to
DRUID_IN. |
static SqlInOperator |
DRUID_IN
An IN operator for Druid.
|
static SqlInOperator |
DRUID_NOT_IN
A NOT IN operator for Druid, analogous to
DRUID_IN. |
public static final SqlInOperator DRUID_IN
Unlike the regular
SqlStdOperatorTable.IN operator it may
be used in RexCall. It does not require that
its operands have consistent types.
public static final SqlInOperator DRUID_NOT_IN
DRUID_IN.public static final SqlBetweenOperator DRUID_BETWEEN
DRUID_IN.Copyright © 2012-2020 Apache Software Foundation. All Rights Reserved.