NMSUCS582Spring2018Group9 / javaminibase

A repo for javaminibase for use in NMSU's CS 582's Course Project
1 stars 1 forks source link

Establish the TupleScan Class #4

Closed shanealv closed 6 years ago

shanealv commented 6 years ago

Create a new class called TupleScan; this scans all columns simultaneously to return complete tuples (see the heap.Scan class for analogy)

class TupleScan

Constructor Summary

TupleScan(Columnarfile cf)

Method Summary

void closetuplescan()

Closes the TupleScan object

Tuple getNext(TID tid)

Retrieve the next tuple in a sequential scan

boolean position(TID tid)

Position all scan cursors to the records with the given rids

shanealv commented 6 years ago

Blocked on Issue #3 (previously also blocked on issue #2). Need the ColumnnarFile to get this one going.