2018-03-03 20:44:01 +00:00
|
|
|
#ifndef PARQUET_TABLE_H
|
|
|
|
#define PARQUET_TABLE_H
|
|
|
|
|
2018-03-08 18:21:33 +00:00
|
|
|
#include <vector>
|
2018-03-03 20:44:01 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class ParquetTable {
|
2018-03-08 18:21:33 +00:00
|
|
|
std::vector<std::string> columnNames;
|
|
|
|
|
2018-03-03 20:44:01 +00:00
|
|
|
public:
|
|
|
|
ParquetTable(std::string file);
|
|
|
|
std::string CreateStatement();
|
|
|
|
std::string file;
|
2018-03-08 18:21:33 +00:00
|
|
|
std::string columnName(int idx);
|
2018-03-03 20:44:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|