Update demo to use checked in parquet

This commit is contained in:
Colin Dellow 2018-03-04 13:06:50 -05:00
parent aea9469bff
commit f3e78408bf
1 changed files with 2 additions and 2 deletions

View File

@ -25,8 +25,8 @@ and may be good enough for yours, too.
``` ```
$ sqlite/sqlite3 $ sqlite/sqlite3
sqlite> .load parquet/libparquet sqlite> .load parquet/libparquet
sqlite> create virtual table demo USING parquet('demo.parquet'); sqlite> CREATE VIRTUAL TABLE demo USING parquet('parquet-generator/100-rows-1.parquet');
sqlite> select * from demo limit 1; sqlite> SELECT * FROM demo;
...if all goes well, you'll see data here!... ...if all goes well, you'll see data here!...
``` ```