Uses of Interface
org.teiid.language.TableReference
-
Packages that use TableReference Package Description org.teiid.dqp.internal.datamgr org.teiid.language -
-
Uses of TableReference in org.teiid.dqp.internal.datamgr
Methods in org.teiid.dqp.internal.datamgr that return TableReference Modifier and Type Method Description TableReference
LanguageBridgeFactory. translate(FromClause clause)
-
Uses of TableReference in org.teiid.language
Classes in org.teiid.language that implement TableReference Modifier and Type Class Description class
Call
Represents a procedural execution (such as a stored procedure).class
DerivedTable
Represents a derived table or inline view in the from clause.class
Join
class
NamedProcedureCall
Represents a procedure call that returns a table.class
NamedTable
Represents a table in the language objects.Methods in org.teiid.language that return TableReference Modifier and Type Method Description TableReference
Join. getLeftItem()
TableReference
Join. getRightItem()
Methods in org.teiid.language that return types with arguments of type TableReference Modifier and Type Method Description List<TableReference>
Select. getFrom()
Get FROM clause, should never be null.Methods in org.teiid.language with parameters of type TableReference Modifier and Type Method Description Join
LanguageFactory. createJoin(Join.JoinType joinType, TableReference leftItem, TableReference rightItem, Condition condition)
void
Join. setLeftItem(TableReference item)
void
Join. setRightItem(TableReference item)
Method parameters in org.teiid.language with type arguments of type TableReference Modifier and Type Method Description void
Select. setFrom(List<TableReference> from)
Set FROM clause, should never be null.Constructors in org.teiid.language with parameters of type TableReference Constructor Description Join(TableReference left, TableReference right, Join.JoinType joinType, Condition criteria)
-