1
0
mirror of https://github.com/cldellow/sqlite-parquet-vtable.git synced 2025-04-03 09:39:47 +00:00
Colin Dellow f8599f8d3e Rename some references to CSVs
...some nonsensical things, like "first row of Parquet",
but we'll tidy them up later.
2018-03-02 19:18:36 -05:00
2018-03-02 19:18:36 -05:00
2018-03-02 18:46:40 -05:00
2018-03-02 18:46:40 -05:00
2018-03-02 18:37:08 -05:00
2018-03-02 18:59:34 -05:00

parquet-vtable

A SQLite virtual table extension to expose Parquet files as SQL tables.

Building

  1. Install parquet-cpp
  2. Run ./build-sqlite to fetch and build the SQLite dev bits
  3. Run ./parquet/make to build the module
  4. 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!...
Description
A SQLite vtable extension to read Parquet files
Readme Apache-2.0 570 KiB
Languages
C++ 55.8%
PLpgSQL 22.2%
Python 11.2%
Shell 10.8%