Package org.apache.calcite.rel.mutable
Class MutableCollect
- java.lang.Object
-
- org.apache.calcite.rel.mutable.MutableRel
-
- org.apache.calcite.rel.mutable.MutableSingleRel
-
- org.apache.calcite.rel.mutable.MutableCollect
-
public class MutableCollect extends MutableSingleRel
Mutable equivalent ofCollect
.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
fieldName
-
Fields inherited from class org.apache.calcite.rel.mutable.MutableSingleRel
input
-
Fields inherited from class org.apache.calcite.rel.mutable.MutableRel
cluster, ordinalInParent, PAIRWISE_STRING_EQUIVALENCE, parent, rowType, STRING_EQUIVALENCE, type
-
-
Constructor Summary
Constructors Modifier Constructor Description private
MutableCollect(RelDataType rowType, MutableRel input, java.lang.String fieldName)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableRel
clone()
java.lang.StringBuilder
digest(java.lang.StringBuilder buf)
boolean
equals(java.lang.Object obj)
int
hashCode()
static MutableCollect
of(RelDataType rowType, MutableRel input, java.lang.String fieldName)
Creates a MutableCollect.-
Methods inherited from class org.apache.calcite.rel.mutable.MutableSingleRel
childrenAccept, getInput, getInputs, setInput
-
Methods inherited from class org.apache.calcite.rel.mutable.MutableRel
deep, getParent, replaceInParent, toString
-
-
-
-
Constructor Detail
-
MutableCollect
private MutableCollect(RelDataType rowType, MutableRel input, java.lang.String fieldName)
-
-
Method Detail
-
of
public static MutableCollect of(RelDataType rowType, MutableRel input, java.lang.String fieldName)
Creates a MutableCollect.- Parameters:
rowType
- Row typeinput
- Input relational expressionfieldName
- Name of the sole output field
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
digest
public java.lang.StringBuilder digest(java.lang.StringBuilder buf)
- Specified by:
digest
in classMutableRel
-
clone
public MutableRel clone()
- Specified by:
clone
in classMutableRel
-
-