Package org.h2.command
Class QueryScope
- java.lang.Object
-
- org.h2.command.QueryScope
-
public final class QueryScope extends java.lang.ObjectThe scope of identifiers for a query with the WITH clause.
-
-
Field Summary
Fields Modifier and Type Field Description QueryScopeparentThe scope of a parent query with the WITH clause.java.util.LinkedHashMap<java.lang.String,Table>tableSubqueriesThe elements of the WITH list.
-
Constructor Summary
Constructors Constructor Description QueryScope(QueryScope parent)Creates new instance of a query scope.
-
-
-
Field Detail
-
parent
public final QueryScope parent
The scope of a parent query with the WITH clause.
-
tableSubqueries
public final java.util.LinkedHashMap<java.lang.String,Table> tableSubqueries
The elements of the WITH list.
-
-
Constructor Detail
-
QueryScope
public QueryScope(QueryScope parent)
Creates new instance of a query scope.- Parameters:
parent- parent scope, ornull
-
-