Uses of Class
io.trino.sql.analyzer.Field
Packages that use Field
-
Uses of Field in io.trino.sql.analyzer
Methods in io.trino.sql.analyzer that return FieldModifier and TypeMethodDescriptionResolvedField.getField()RelationType.getFieldByIndex(int fieldIndex) Gets the field at the specified index.static FieldField.newQualified(QualifiedName relationAlias, Optional<String> name, Type type, boolean hidden, Optional<QualifiedObjectName> originTable, Optional<String> originColumn, boolean aliased) static FieldField.newUnqualified(String name, Type type) static FieldField.newUnqualified(Optional<String> name, Type type) static FieldField.newUnqualified(Optional<String> name, Type type, Optional<QualifiedObjectName> originTable, Optional<String> originColumn, boolean aliased) Methods in io.trino.sql.analyzer that return types with arguments of type FieldModifier and TypeMethodDescriptionRelationType.getAllFields()Gets all fields including hidden fields.Analysis.UnnestAnalysis.getMappings()Analysis.UnnestAnalysis.getOrdinalityField()Analysis.getSelectAllResultFields(AllColumns node) ExpressionAnalyzer.getSourceFields()RelationType.getVisibleFields()Gets only the visible fields.RelationType.resolveFields(QualifiedName name) Gets the index of all columns matching the specified nameRelationType.resolveVisibleFieldsWithRelationPrefix(Optional<QualifiedName> prefix) Gets all visible fields whose relation alias matches given prefix.Methods in io.trino.sql.analyzer with parameters of type FieldModifier and TypeMethodDescriptionvoidAnalysis.addSourceColumns(Field field, Set<Analysis.SourceColumn> sourceColumn) Analysis.getSourceColumns(Field field) intGets the index of the specified field.voidAnalysis.setColumn(Field field, ColumnHandle handle) Method parameters in io.trino.sql.analyzer with type arguments of type FieldModifier and TypeMethodDescriptionvoidAnalysis.addExpressionFields(Expression expression, Collection<Field> fields) voidAnalysis.setSelectAllResultFields(AllColumns node, List<Field> expressions) Constructors in io.trino.sql.analyzer with parameters of type FieldModifierConstructorDescriptionRelationType(Field... fields) ResolvedField(Scope scope, Field field, int hierarchyFieldIndex, int relationFieldIndex, boolean local) Constructor parameters in io.trino.sql.analyzer with type arguments of type FieldModifierConstructorDescriptionRelationType(List<Field> fields) UnnestAnalysis(Map<NodeRef<Expression>, List<Field>> mappings, Optional<Field> ordinalityField) UnnestAnalysis(Map<NodeRef<Expression>, List<Field>> mappings, Optional<Field> ordinalityField) -
Uses of Field in io.trino.sql.planner
Methods in io.trino.sql.planner with parameters of type Field