Package io.trino.sql.tree
Class TableExecute
- java.lang.Object
-
- io.trino.sql.tree.Node
-
- io.trino.sql.tree.Statement
-
- io.trino.sql.tree.TableExecute
-
public class TableExecute extends Statement
-
-
Constructor Summary
Constructors Constructor Description TableExecute(NodeLocation location, Table table, Identifier procedureName, List<CallArgument> arguments, Optional<Expression> where)TableExecute(Table table, Identifier procedureName, List<CallArgument> properties, Optional<Expression> where)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,C>
Raccept(AstVisitor<R,C> visitor, C context)Accessible forAstVisitor, useAstVisitor.process(Node, Object)instead.booleanequals(Object o)List<CallArgument>getArguments()List<? extends Node>getChildren()IdentifiergetProcedureName()TablegetTable()Optional<Expression>getWhere()inthashCode()StringtoString()-
Methods inherited from class io.trino.sql.tree.Node
getLocation, shallowEquals
-
-
-
-
Constructor Detail
-
TableExecute
public TableExecute(Table table, Identifier procedureName, List<CallArgument> properties, Optional<Expression> where)
-
TableExecute
public TableExecute(NodeLocation location, Table table, Identifier procedureName, List<CallArgument> arguments, Optional<Expression> where)
-
-
Method Detail
-
getTable
public Table getTable()
-
getProcedureName
public Identifier getProcedureName()
-
getArguments
public List<CallArgument> getArguments()
-
getWhere
public Optional<Expression> getWhere()
-
accept
public <R,C> R accept(AstVisitor<R,C> visitor, C context)
Description copied from class:NodeAccessible forAstVisitor, useAstVisitor.process(Node, Object)instead.
-
getChildren
public List<? extends Node> getChildren()
- Specified by:
getChildrenin classNode
-
-