Package db
Class TableStatistics
java.lang.Object
db.TableStatistics
Table statistics data
-
Field Summary
Modifier and TypeFieldDescriptionint
Total number of table nodesint
Total number of buffers used within chanined DBBuffers for record storage.int
For index tables, this indicates the indexed column within the primary table.int
Total number of interior nodesName of table (same name used by both primary table and related index tables)int
Total number of leaf/record nodes.int
Total size of table -
Constructor Summary
-
Method Summary
-
Field Details
-
name
Name of table (same name used by both primary table and related index tables) -
indexColumn
public int indexColumnFor index tables, this indicates the indexed column within the primary table. For primary tables, this value is -1 and does not apply. -
bufferCount
public int bufferCountTotal number of table nodes -
size
public int sizeTotal size of table -
interiorNodeCnt
public int interiorNodeCntTotal number of interior nodes -
recordNodeCnt
public int recordNodeCntTotal number of leaf/record nodes. -
chainedBufferCnt
public int chainedBufferCntTotal number of buffers used within chanined DBBuffers for record storage.
-
-
Constructor Details
-
TableStatistics
public TableStatistics()
-