6 #ifndef _JOINALGO_NESTEDLOOPJOIN_H_
7 #define _JOINALGO_NESTEDLOOPJOIN_H_
71 typedef std::shared_ptr<NestedLoopJoin> NestedLoopJoinPtr;
72 #define newNestedLoopJoin() make_shared<NestedLoopJoin>()
The abstraction to describe a join algorithm, providing virtual function of join.
Definition: AbstractJoinAlgo.h:28
void setAlgoName(string name)
set the name of algorithm
Definition: AbstractJoinAlgo.h:101
The top class package of Nested Loop Join providing a "join function".
Definition: NestedLoopJoin.h:25
virtual size_t join(TuplePtrQueue ts, TuplePtrQueue tr, int threads=1)
The function to execute join, batch of both.
virtual size_t join(TuplePtrQueue ts, TuplePtr tr, int threads=1)
The function to execute join, batch of one, tuple of another.
virtual size_t join(TuplePtr *ts, TuplePtr tr, size_t tsLen, int threads=1)
The function to execute join, batch of one, tuple of another.
virtual size_t join(TuplePtr *ts, TuplePtr *tr, size_t tsLen, size_t trLen, int threads=1)
The function to execute join, legacy way.
std::shared_ptr< class Tuple > TuplePtr
The class to describe a shared pointer to Tuple.
Definition: Types.h:150
std::shared_ptr< INTELLI::SPSCQueue< INTELLI::TuplePtr > > TuplePtrQueue
To describe a queue of TuplePtr under SPSCQueue.
Definition: Types.h:228
Definition: DatasetTool.h:10