Files
mxtasking/src/application/hashjoin_benchmark/tpch_table_reader.h
2021-03-22 18:38:54 +01:00

13 lines
327 B
C++

#pragma once
#include <cstdint>
#include <functional>
#include <string>
namespace application::hash_join {
class TPCHTableReader
{
public:
static void read(const std::string &file_name,
std::function<void(const std::uint16_t, const std::string &)> &&callback);
};
} // namespace application::hash_join