Uses of Class
org.h2.mvstore.db.MVTable
Packages that use MVTable
Package
Description
Contains high level classes of the database and classes that don't fit in another sub-package.
Helper classes to use the MVStore in the H2 database.
-
Uses of MVTable in org.h2.engine
Methods in org.h2.engine with parameters of type MVTableModifier and TypeMethodDescriptionprivate static void
SessionLocal.addTableToDependencies
(MVTable table, HashSet<MVMap<Object, VersionedValue<Object>>> maps) private static void
SessionLocal.addTableToDependencies
(MVTable table, HashSet<MVMap<Object, VersionedValue<Object>>> maps, HashSet<MVTable> processed) -
Uses of MVTable in org.h2.mvstore.db
Fields in org.h2.mvstore.db declared as MVTableModifier and TypeFieldDescriptionprivate final MVTable
MVPrimaryIndex.mvTable
private final MVTable
MVSecondaryIndex.MVStoreCursor.mvTable
private final MVTable
MVSecondaryIndex.mvTable
The multi-value table.private final MVTable
MVSpatialIndex.MVStoreCursor.mvTable
(package private) final MVTable
MVSpatialIndex.mvTable
The multi-value table.Fields in org.h2.mvstore.db with type parameters of type MVTableModifier and TypeFieldDescriptionprivate final ConcurrentHashMap
<String, MVTable> Store.tableMap
The map of open tables.Methods in org.h2.mvstore.db that return MVTableModifier and TypeMethodDescriptionStore.createTable
(CreateTableData data) Create a table.MVPrimaryIndex.getTable()
MVSecondaryIndex.getTable()
MVSpatialIndex.getTable()
Get MVTable by table name.Methods in org.h2.mvstore.db with parameters of type MVTableConstructors in org.h2.mvstore.db with parameters of type MVTableModifierConstructorDescriptionMVDelegateIndex
(MVTable table, int id, String name, MVPrimaryIndex mainIndex, IndexType indexType) MVPrimaryIndex
(Database db, MVTable table, int id, IndexColumn[] columns, IndexType indexType) MVSecondaryIndex
(Database db, MVTable table, int id, String indexName, IndexColumn[] columns, int uniqueColumnCount, IndexType indexType) MVSpatialIndex
(Database db, MVTable table, int id, String indexName, IndexColumn[] columns, int uniqueColumnCount, IndexType indexType) Constructor.(package private)
MVStoreCursor
(SessionLocal session, TransactionMap.TMIterator<SearchRow, Value, SearchRow> it, MVTable mvTable) (package private)
MVStoreCursor
(SessionLocal session, Iterator<Spatial> it, MVTable mvTable)