Skip to content

Projection Operator

Zuozhi Wang edited this page Aug 29, 2016 · 3 revisions

Author(s): Zuozhi Wang

Reviewer(s): Chen Li

Synopsis

Implement an operator to use an index-based method based on gram inverted index to support efficient regular expressions on large datasets. Our implementation is based on Russ Cox's algorithm and the corresponding open source implementation.

Status

As of 8/29/2016: FINISHED

Modules

edu.uci.ics.textdb.dataflow.projection

Related Issues and Pull Requests

https://github.com/TextDB/textdb/pull/209

Description

A projection operator projects a subset of columns (fields, attributes) of a tuple to a new tuple consisting of those fields.

Clone this wiki locally