Class VariantValue
java.lang.Object
org.apache.calcite.runtime.variant.VariantValue
- Direct Known Subclasses:
VariantNull
,VariantSqlValue
Base class for the runtime support for values of the VARIANT SQL type.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract @Nullable Object
cast
(RuntimeTypeInformation type) Cast this value to the specified type.abstract String
A string describing the runtime type information of this value.static @Nullable String
getTypeString
(Object object) abstract @Nullable Object
-
Constructor Details
-
VariantValue
public VariantValue()
-
-
Method Details
-
getTypeString
-
getTypeString
A string describing the runtime type information of this value. -
cast
Cast this value to the specified type. Currently, the rule is: if the value has the specified type, the value field is returned, otherwise a SQL NULL is returned. -
item
-