From d430a45e412676c1f6b09ab0421347013c455f34 Mon Sep 17 00:00:00 2001 From: Colin Dellow Date: Sun, 18 Mar 2018 15:08:02 -0400 Subject: [PATCH] Update README --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 50b3399..1a3c0d2 100644 --- a/README.md +++ b/README.md @@ -21,12 +21,21 @@ and may be good enough for yours, too. 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. +## Tests + +Run: + +``` +tests/create-queries-from-templates +tests/test-all +``` + ## Use ``` $ sqlite/sqlite3 sqlite> .load parquet/libparquet -sqlite> CREATE VIRTUAL TABLE demo USING parquet('parquet-generator/100-rows-1.parquet'); +sqlite> CREATE VIRTUAL TABLE demo USING parquet('parquet-generator/99-rows-1.parquet'); sqlite> SELECT * FROM demo; ...if all goes well, you'll see data here!... ```