MCPcopy Create free account
hub / github.com/cwida/ALP / Scan

Method Scan

publication/source_code/bench_end_to_end/src/vectorwise/Operators.cpp:46–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44}
45
46Scan::Scan(Shared& s, size_t ttl_tup_c, size_t vec_c)
47 : shared(s)
48 , needsInit(true)
49 , currentChunk(0)
50 , lastOffset(0)
51 , ttl_tup_c(ttl_tup_c)
52 , vec_c(vec_c) {
53 scan_chunk_c = 1;
54 size_t scan_morsel_c = cfg::morsel_c;
55 if (vec_c < scan_morsel_c) { scan_chunk_c = scan_morsel_c / vec_c + 1; }
56 vecInChunk = scan_chunk_c;
57}
58
59// FLS_CHANGE
60void Scan::addConsumer(void** col_p, size_t type_sz) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected