Package db
Class FieldIndexTable
- java.lang.Object
-
- db.FieldIndexTable
-
public class FieldIndexTable extends java.lang.Object
FieldIndexTable
provides a simplified index table whose key is a fixed or variable lengthIndexField
which consists of a concatenation of the index field value and associated primary table key.
-
-
Field Summary
Fields Modifier and Type Field Description protected DBHandle
db
Database Handleprotected static Field[]
emptyKeyArray
protected int
indexColumn
Indexed column within primary table schema.protected Table
indexTable
Underlying table which contains secondary index data.protected db.TableRecord
indexTableRecord
Master table record for this index table.protected boolean
isSparseIndex
protected Table
primaryTable
Primary table
-
-
-
Field Detail
-
emptyKeyArray
protected static final Field[] emptyKeyArray
-
db
protected final DBHandle db
Database Handle
-
indexTableRecord
protected final db.TableRecord indexTableRecord
Master table record for this index table.
-
primaryTable
protected Table primaryTable
Primary table
-
indexTable
protected Table indexTable
Underlying table which contains secondary index data.
-
indexColumn
protected final int indexColumn
Indexed column within primary table schema.
-
isSparseIndex
protected final boolean isSparseIndex
-
-