UWHustle / hustle-in-Rust-now-defunct

Hustle
GNU General Public License v3.0
7 stars 1 forks source link

Storage functions #100

Closed kpgaffney closed 5 years ago

kpgaffney commented 5 years ago

This adds two functions to the storage manager:

  1. get_row returns an iterator over the columns of a given row.
  2. get_col returns an iterator over the rows of a given column, along with the row IDs.

These are going to be useful for @srora's hash join implementation.