本文整理汇总了C++中ProjectionScan::getResultTable方法的典型用法代码示例。如果您正苦于以下问题:C++ ProjectionScan::getResultTable方法的具体用法?C++ ProjectionScan::getResultTable怎么用?C++ ProjectionScan::getResultTable使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ProjectionScan
的用法示例。
在下文中一共展示了ProjectionScan::getResultTable方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
TEST_F(TransactionTests, delete_op_and_concurrent_read) {
auto writeCtx = tx::TransactionManager::getInstance().buildContext();
size_t before = linxxxs->size();
// Add One read all
auto pc = storage::PointerCalculator::create(linxxxs, new pos_list_t({0}));
ASSERT_EQ(1u, pc->size());
DeleteOp del;
del.setTXContext(writeCtx);
del.addInput(pc);
del.execute();
auto& mod = hyrise::tx::TransactionManager::getInstance()[writeCtx.tid];
ASSERT_EQ(1u, mod.deleted.size());
auto readCtx = tx::TransactionManager::getInstance().buildContext();
ProjectionScan ps;
ps.addInput(linxxxs);
ps.setTXContext(readCtx);
ps.addField(0);
ps.addField(1);
ps.execute();
ValidatePositions vp;
vp.setTXContext(readCtx);
vp.addInput(ps.getResultTable());
vp.execute();
auto res = vp.getResultTable();
ASSERT_EQ(before, res->size());
}
示例2:
TEST_F(ProjectionScanTests, basic_projection_scan_test) {
auto t = Loader::shortcuts::load("test/lin_xxs.tbl");
auto reference = Loader::shortcuts::load("test/reference/simple_projection.tbl");
ProjectionScan ps;
ps.addInput(t);
ps.addField(0);
ps.execute();
const auto &result = ps.getResultTable();
ASSERT_TRUE(result->contentEquals(reference));
}
示例3: getNumberOfCoresOnSystem
TEST_F(TransactionTests, parallel_writer) {
// first insert a lot in parallel
const size_t thread_count = getNumberOfCoresOnSystem();
const size_t inserts_per_thread = 1000;
std::vector<std::thread> threads;
for (size_t i = 0; i < thread_count; ++i) {
threads.push_back(std::thread(parallel_writer_thread_function, linxxxs, one_row, inserts_per_thread));
}
for (auto& thread : threads) {
thread.join();
}
// read all inserted rows and check if correct
auto readCtx = tx::TransactionManager::getInstance().buildContext();
// std::cout << "read context. cid: " << readCtx.cid << ". lastCid: " << readCtx.lastCid << ". tid: " << readCtx.tid
// << std::endl;
ProjectionScan ps;
ps.addInput(linxxxs);
ps.setTXContext(readCtx);
ps.addField(0);
ps.addField(1);
ps.execute();
ValidatePositions vp;
vp.setTXContext(readCtx);
vp.addInput(ps.getResultTable());
vp.execute();
auto res = vp.getResultTable();
auto size = res->size();
long sum = 0;
for (size_t i = 0; i < size; ++i) {
sum += res->getValue<hyrise_int_t>(0, i);
}
ASSERT_EQ(sum, (thread_count * inserts_per_thread * 99) + 8 + 6 + 400 + 200);
}
示例4:
TEST_F(MaterializingScanTests, basic_materializing_scan_test) {
auto t = io::Loader::shortcuts::load("test/lin_xxs.tbl");
auto no_p = (storage::PointerCalculator*) nullptr;
ProjectionScan ps;
ps.addInput(t);
ps.addField(0);
ps.setProducesPositions(true);
ps.execute();
const auto &t2 = ps.getResultTable();
ASSERT_NE(no_p, dynamic_cast<const storage::PointerCalculator*>(t2.get()));
MaterializingScan ms;
ms.addInput(t2);
ms.addField(0);
ms.execute();
const auto &result = ms.getResultTable();
ASSERT_EQ(no_p, dynamic_cast<const storage::PointerCalculator*>(result.get()));
ASSERT_EQ(100u, result->size());
ASSERT_EQ(1u, result->columnCount());
}