Uses of Class
edu.caltech.nanodb.storage.PageTuple
-
Packages that use PageTuple Package Description edu.caltech.nanodb.indexes edu.caltech.nanodb.storage.heapfile This package provides a naive implementation of the heap file organization for NanoDB. -
-
Uses of PageTuple in edu.caltech.nanodb.indexes
Methods in edu.caltech.nanodb.indexes that return PageTuple Modifier and Type Method Description static PageTuple
IndexUtils. findTupleInIndex(Tuple key, TupleFile idxTupleFile)
Given an index tuple-file and a search key, this method attempts to find the first tuple in the index that matches the search key.Methods in edu.caltech.nanodb.indexes with parameters of type PageTuple Modifier and Type Method Description private void
IndexUpdater. addRowToIndexes(TableInfo tblFileInfo, PageTuple ptup)
This helper method handles the case when a tuple is being added to the table, after the row has already been added to the table.private void
IndexUpdater. removeRowFromIndexes(TableInfo tableInfo, PageTuple ptup)
This helper method handles the case when a tuple is being removed from the table, before the row has actually been removed from the table. -
Uses of PageTuple in edu.caltech.nanodb.storage.heapfile
Subclasses of PageTuple in edu.caltech.nanodb.storage.heapfile Modifier and Type Class Description class
HeapFilePageTuple
-