Multi-core Hash Joins
Main-memory hash join implementations for multi-core CPUs
no_partitioning_join.h
Go to the documentation of this file.
1
13#ifndef NO_PARTITIONING_JOIN_H
14#define NO_PARTITIONING_JOIN_H
15
16#include "types.h" /* relation_t */
17
33NPO(relation_t *relR, relation_t *relS, int nthreads);
34
45NPO_st(relation_t *relR, relation_t *relS, int nthreads);
46
47
48#endif /* NO_PARTITIONING_JOIN_H */
result_t * NPO(relation_t *relR, relation_t *relS, int nthreads)
result_t * NPO_st(relation_t *relR, relation_t *relS, int nthreads)
Definition: types.h:74
Provides general type definitions used by all join algorithms.