Uses of Class
edu.caltech.nanodb.queryeval.TableStats
-
Packages that use TableStats Package Description edu.caltech.nanodb.relations This package contains the basic data-types for representing relations in NanoDB.edu.caltech.nanodb.storage This package contains the classes for the Storage Manager, which is responsible for how data is stored in and retrieved from database files.edu.caltech.nanodb.storage.heapfile This package provides a naive implementation of the heap file organization for NanoDB. -
-
Uses of TableStats in edu.caltech.nanodb.relations
Methods in edu.caltech.nanodb.relations that return TableStats Modifier and Type Method Description TableStats
TableInfo. getStats()
-
Uses of TableStats in edu.caltech.nanodb.storage
Methods in edu.caltech.nanodb.storage that return TableStats Modifier and Type Method Description TableStats
TupleFile. getStats()
Returns statistics describing the data in this tuple file.static TableStats
StatsWriter. readTableStats(PageReader pgReader, Schema schema)
Reads the table-statistics from the specified data file.Methods in edu.caltech.nanodb.storage with parameters of type TableStats Modifier and Type Method Description static void
StatsWriter. writeTableStats(Schema schema, TableStats stats, PageWriter pgWriter)
Writes the specified table-statistics to a data file. -
Uses of TableStats in edu.caltech.nanodb.storage.heapfile
Fields in edu.caltech.nanodb.storage.heapfile declared as TableStats Modifier and Type Field Description private TableStats
HeapTupleFile. stats
Statistics for this tuple file.Methods in edu.caltech.nanodb.storage.heapfile that return TableStats Modifier and Type Method Description TableStats
HeapTupleFile. getStats()
Constructors in edu.caltech.nanodb.storage.heapfile with parameters of type TableStats Constructor Description HeapTupleFile(StorageManager storageManager, HeapTupleFileManager heapFileManager, DBFile dbFile, Schema schema, TableStats stats)
-