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

Initial checkin of CSV table

parquet.cc is a fork of the sample CSV virtual table at
https://www.sqlite.org/src/artifact?ci=trunk&filename=ext/misc/csv.c

So far the only changes are those needed to make it compile cleanly in
C++11 mode.
This commit is contained in:
Colin Dellow
2018-03-02 18:59:34 -05:00
parent 811badc9f9
commit 552da5a647
6 changed files with 959 additions and 1 deletions

View File

@@ -1,2 +1,20 @@
# parquet-vtable
A SQLite vtable extension to read Parquet files
A SQLite [virtual table](https://sqlite.org/vtab.html) extension to expose Parquet files as SQL tables.
## Building
1. Install [`parquet-cpp`](https://github.com/apache/parquet-cpp)
2. Run `./build-sqlite` to fetch and build the SQLite dev bits
3. Run `./parquet/make` to build the module
1. You will need to fixup the paths in this file to point at your local parquet-cpp folder.
## Use
```
$ sqlite/sqlite3
sqlite> .load parquet/libparquet
sqlite> create virtual table demo USING parquet('demo.parquet');
sqlite> select * from demo limit 1;
...if all goes well, you'll see data here!...
```