mirror of
https://github.com/mmueller41/mxtasking.git
synced 2026-01-21 12:42:57 +01:00
13 lines
327 B
C++
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
|