From f3e78408bf0bee47bcbd79e9230d420b148e4c4b Mon Sep 17 00:00:00 2001 From: Colin Dellow Date: Sun, 4 Mar 2018 13:06:50 -0500 Subject: [PATCH] Update demo to use checked in parquet --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 709cd8b..a35c1cc 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,8 @@ and may be good enough for yours, too. ``` $ sqlite/sqlite3 sqlite> .load parquet/libparquet -sqlite> create virtual table demo USING parquet('demo.parquet'); -sqlite> select * from demo limit 1; +sqlite> CREATE VIRTUAL TABLE demo USING parquet('parquet-generator/100-rows-1.parquet'); +sqlite> SELECT * FROM demo; ...if all goes well, you'll see data here!... ```