Uses of Class
org.h2.mvstore.db.MVTable
-
Packages that use MVTable Package Description org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.mvstore.db 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 MVTable Modifier and Type Method Description private static voidSessionLocal. addTableToDependencies(MVTable table, java.util.HashSet<MVMap<java.lang.Object,VersionedValue<java.lang.Object>>> maps)private static voidSessionLocal. addTableToDependencies(MVTable table, java.util.HashSet<MVMap<java.lang.Object,VersionedValue<java.lang.Object>>> maps, java.util.HashSet<MVTable> processed) -
Uses of MVTable in org.h2.mvstore.db
Fields in org.h2.mvstore.db declared as MVTable Modifier and Type Field Description private MVTableMVPrimaryIndex. mvTableprivate MVTableMVSecondaryIndex.MVStoreCursor. mvTableprivate MVTableMVSecondaryIndex. mvTableThe multi-value table.private MVTableMVSpatialIndex.MVStoreCursor. mvTable(package private) MVTableMVSpatialIndex. mvTableThe multi-value table.Fields in org.h2.mvstore.db with type parameters of type MVTable Modifier and Type Field Description private java.util.concurrent.ConcurrentHashMap<java.lang.String,MVTable>Store. tableMapThe map of open tables.Methods in org.h2.mvstore.db that return MVTable Modifier and Type Method Description MVTableStore. createTable(CreateTableData data)Create a table.MVTableMVPrimaryIndex. getTable()MVTableMVSecondaryIndex. getTable()MVTableMVSpatialIndex. getTable()MVTableStore. getTable(java.lang.String tableName)Get MVTable by table name.Methods in org.h2.mvstore.db with parameters of type MVTable Modifier and Type Method Description voidStore. removeTable(MVTable table)Remove a table.Constructors in org.h2.mvstore.db with parameters of type MVTable Constructor Description MVDelegateIndex(MVTable table, int id, java.lang.String name, MVPrimaryIndex mainIndex, IndexType indexType)MVPrimaryIndex(Database db, MVTable table, int id, IndexColumn[] columns, IndexType indexType)MVSecondaryIndex(Database db, MVTable table, int id, java.lang.String indexName, IndexColumn[] columns, int uniqueColumnCount, IndexType indexType)MVSpatialIndex(Database db, MVTable table, int id, java.lang.String indexName, IndexColumn[] columns, int uniqueColumnCount, IndexType indexType)Constructor.MVStoreCursor(SessionLocal session, TransactionMap.TMIterator<SearchRow,Value,SearchRow> it, MVTable mvTable)MVStoreCursor(SessionLocal session, java.util.Iterator<Spatial> it, MVTable mvTable)
-