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 void
SessionLocal. addTableToDependencies(MVTable table, java.util.HashSet<MVMap<java.lang.Object,VersionedValue<java.lang.Object>>> maps)
private static void
SessionLocal. 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 MVTable
MVPrimaryIndex. mvTable
private MVTable
MVSecondaryIndex.MVStoreCursor. mvTable
private MVTable
MVSecondaryIndex. mvTable
The multi-value table.private MVTable
MVSpatialIndex.MVStoreCursor. mvTable
(package private) MVTable
MVSpatialIndex. mvTable
The 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. tableMap
The map of open tables.Methods in org.h2.mvstore.db that return MVTable Modifier and Type Method Description MVTable
Store. createTable(CreateTableData data)
Create a table.MVTable
MVPrimaryIndex. getTable()
MVTable
MVSecondaryIndex. getTable()
MVTable
MVSpatialIndex. getTable()
MVTable
Store. 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 void
Store. 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)
-