1
0
mirror of https://github.com/cldellow/sqlite-parquet-vtable.git synced 2025-09-14 22:39:59 +00:00

better debug logs for xBestIndex

This commit is contained in:
Colin Dellow
2018-03-08 13:21:33 -05:00
parent 2d616c54fb
commit 824a416f51
4 changed files with 64 additions and 8 deletions

View File

@@ -1,14 +1,17 @@
#ifndef PARQUET_TABLE_H
#define PARQUET_TABLE_H
#include <vector>
#include <string>
class ParquetTable {
std::vector<std::string> columnNames;
public:
ParquetTable(std::string file);
std::string CreateStatement();
std::string file;
std::string columnName(int idx);
};
#endif