Uses of Interface
global.GlobalConst

Packages that use GlobalConst
bufmgr   
diskmgr   
global   
heap   
index   
parser   
query   
tests   
 

Uses of GlobalConst in bufmgr
 

Classes in bufmgr that implement GlobalConst
 class BufMgr
          Minibase Buffer Manager
 

Uses of GlobalConst in diskmgr
 

Classes in diskmgr that implement GlobalConst
 class DiskMgr
          Minibase Disk Manager
 

Uses of GlobalConst in global
 

Classes in global that implement GlobalConst
 class Page
          Lowest-level view of a disk page.
 class PageId
          Although a PageId is simply an integer, wrapping it provides convenient methods and allows returning it via method parameters.
 

Uses of GlobalConst in heap
 

Classes in heap that implement GlobalConst
 class HeapFile
          Minibase Heap Files
 class HeapScan
          A HeapScan object is created only through the function openScan() in the HeapFile class.
(package private)  class HFPage
          Heap file data pages are implemented as slotted pages, with the slots at the front and the records in the back, both growing into the free space in the middle of the page.
 

Uses of GlobalConst in index
 

Classes in index that implement GlobalConst
 class BucketScan
          Scans an entire hash index file, bucket by bucket; created only through the openScan() method in the HashIndex class.
(package private)  class HashBucket
          A bucket is a linked list of SortedPages (overflow pages).
 class HashIndex
          Minibase Hash Index
 class HashScan
          A HashScan object is created only through the function openScan() in the HashIndex class.
(package private)  class SortedPage
          A base class for index pages that automatically stores records in ascending order by key value.
 

Uses of GlobalConst in parser
 

Classes in parser that implement GlobalConst
 class AST_CreateTable
          AST node for CREATE TABLE statements.
 

Uses of GlobalConst in query
 

Classes in query that implement GlobalConst
 class Catalog
          Minibase System Catalog
 

Uses of GlobalConst in tests
 

Classes in tests that implement GlobalConst
(package private)  class BMTest
          Test suite for the bufmgr layer.
(package private)  class DMTest
          Test suite for the diskmgr layer.
(package private)  class HFTest
          Test suite for the heap layer.
(package private)  class IXTest
          Test suite for the index layer.
(package private)  class ROTest
          Test suite for the relop layer.
(package private)  class TestDriver
          Minibase Test Driver