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

Method Scan

publication/source_code/bench_end_to_end/src/vectorwise/QueryBuilder.cpp:51–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49}
50
51QueryBuilder::ScanBuilder QueryBuilder::Scan(std::string relation) {
52 auto& rel = db[relation];
53 auto nr = nextOpNr();
54 auto& s = operatorState.get<Scan::Shared>(nr);
55 auto scan = make_unique<class Scan>(s, rel.tup_c, vecs.getVecSize());
56 auto res = scan.get();
57 pushOperator(move(scan));
58 return {*res, rel};
59}
60
61void QueryBuilder::DebugCounter(std::string message) {
62 struct Counter {

Callers

nothing calls this directly

Calls 2

getVecSizeMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected