1
0
mirror of https://github.com/cldellow/sqlite-parquet-vtable.git synced 2025-03-12 07:49:45 +00:00
sqlite-parquet-vtable/parquet/parquet_table.h
Colin Dellow 1de843fca8 Very rough first cut
supports int32, double, strings.
2018-03-03 15:44:01 -05:00

15 lines
196 B
C++

#ifndef PARQUET_TABLE_H
#define PARQUET_TABLE_H
#include <string>
class ParquetTable {
public:
ParquetTable(std::string file);
std::string CreateStatement();
std::string file;
};
#endif