#include <os.h>
#include <DataType.h>
#include <Transaction.h>
#include <Database.h>
#include <Index.h>
#include <CatalogTables.h>
#include <Info.h>
#include <Debug.h>
#include <DatabaseManagerImpl.h>
#include <Predicate.h>
Include dependency graph for TableImpl.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
class | TupleIterator |
class | TableImpl |
Enumerations | |
enum | ScanType { fullTableScan = 0, hashIndexScan, treeIndexScan, unknownScan } |
enum ScanType |
Definition at line 28 of file TableImpl.h.
00029 { 00030 fullTableScan = 0, 00031 hashIndexScan, 00032 treeIndexScan, 00033 unknownScan 00034 };