Uses of Class
org.h2.index.ViewIndex
-
Packages that use ViewIndex Package Description org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.index Various table index implementations, as well as cursors to navigate in an index.org.h2.table Classes related to a table and table meta data. -
-
Uses of ViewIndex in org.h2.engine
Fields in org.h2.engine with type parameters of type ViewIndex Modifier and Type Field Description private java.util.HashMap<java.lang.Object,ViewIndex>
SessionLocal. subQueryIndexCache
private SmallLRUCache<java.lang.Object,ViewIndex>
SessionLocal. viewIndexCache
Methods in org.h2.engine that return types with arguments of type ViewIndex Modifier and Type Method Description java.util.Map<java.lang.Object,ViewIndex>
SessionLocal. getViewIndexCache(boolean subQuery)
Get the view cache for this session. -
Uses of ViewIndex in org.h2.index
Fields in org.h2.index declared as ViewIndex Modifier and Type Field Description private ViewIndex
ViewCursor. index
Constructors in org.h2.index with parameters of type ViewIndex Constructor Description ViewCursor(ViewIndex index, ResultInterface result, SearchRow first, SearchRow last)
ViewIndex(TableView view, ViewIndex index, SessionLocal session, int[] masks, TableFilter[] filters, int filter, SortOrder sortOrder)
Constructor for plan item generation. -
Uses of ViewIndex in org.h2.table
Fields in org.h2.table declared as ViewIndex Modifier and Type Field Description private ViewIndex
TableView. index
-