mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-09-14 22:39:59 +00:00
Very rough first cut
supports int32, double, strings.
This commit is contained in:
14
parquet/parquet_table.h
Normal file
14
parquet/parquet_table.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef PARQUET_TABLE_H
|
||||
#define PARQUET_TABLE_H
|
||||
|
||||
#include <string>
|
||||
|
||||
class ParquetTable {
|
||||
public:
|
||||
ParquetTable(std::string file);
|
||||
std::string CreateStatement();
|
||||
std::string file;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user