Uses of Class
io.prestosql.sql.tree.Query
-
Packages that use Query Package Description io.prestosql.sql io.prestosql.sql.tree -
-
Uses of Query in io.prestosql.sql
Methods in io.prestosql.sql that return Query Modifier and Type Method Description static QueryQueryUtil. query(QueryBody body)static QueryQueryUtil. simpleQuery(Select select)static QueryQueryUtil. simpleQuery(Select select, Relation from)static QueryQueryUtil. simpleQuery(Select select, Relation from, Expression where)static QueryQueryUtil. simpleQuery(Select select, Relation from, Expression where, OrderBy orderBy)static QueryQueryUtil. simpleQuery(Select select, Relation from, OrderBy orderBy)static QueryQueryUtil. simpleQuery(Select select, Relation from, java.util.Optional<Expression> where, java.util.Optional<GroupBy> groupBy, java.util.Optional<Expression> having, java.util.Optional<OrderBy> orderBy, java.util.Optional<Offset> offset, java.util.Optional<Node> limit)static QueryQueryUtil. simpleQuery(Select select, Relation from, java.util.Optional<Expression> where, java.util.Optional<OrderBy> orderBy)static QueryQueryUtil. singleValueQuery(java.lang.String columnName, boolean value)static QueryQueryUtil. singleValueQuery(java.lang.String columnName, java.lang.String value)Methods in io.prestosql.sql with parameters of type Query Modifier and Type Method Description static RelationQueryUtil. subquery(Query query) -
Uses of Query in io.prestosql.sql.tree
Methods in io.prestosql.sql.tree that return Query Modifier and Type Method Description QueryCreateTableAsSelect. getQuery()QueryCreateView. getQuery()QueryInsert. getQuery()QueryLateral. getQuery()QuerySubqueryExpression. getQuery()QueryTableSubquery. getQuery()QueryWithQuery. getQuery()Methods in io.prestosql.sql.tree with parameters of type Query Modifier and Type Method Description protected RAstVisitor. visitQuery(Query node, C context)protected java.lang.VoidDefaultTraversalVisitor. visitQuery(Query node, C context)Constructors in io.prestosql.sql.tree with parameters of type Query Constructor Description CreateTableAsSelect(NodeLocation location, QualifiedName name, Query query, boolean notExists, java.util.List<Property> properties, boolean withData, java.util.Optional<java.util.List<Identifier>> columnAliases, java.util.Optional<java.lang.String> comment)CreateTableAsSelect(QualifiedName name, Query query, boolean notExists, java.util.List<Property> properties, boolean withData, java.util.Optional<java.util.List<Identifier>> columnAliases, java.util.Optional<java.lang.String> comment)CreateView(NodeLocation location, QualifiedName name, Query query, boolean replace, java.util.Optional<java.lang.String> comment, java.util.Optional<CreateView.Security> security)CreateView(QualifiedName name, Query query, boolean replace, java.util.Optional<java.lang.String> comment, java.util.Optional<CreateView.Security> security)Insert(QualifiedName target, java.util.Optional<java.util.List<Identifier>> columns, Query query)Lateral(NodeLocation location, Query query)Lateral(Query query)SubqueryExpression(NodeLocation location, Query query)SubqueryExpression(Query query)TableSubquery(NodeLocation location, Query query)TableSubquery(Query query)WithQuery(Identifier name, Query query, java.util.Optional<java.util.List<Identifier>> columnNames)WithQuery(NodeLocation location, Identifier name, Query query, java.util.Optional<java.util.List<Identifier>> columnNames)
-