From 045e17da341d66f70834f846abed86a48f7c9c19 Mon Sep 17 00:00:00 2001 From: Colin Dellow Date: Sun, 18 Mar 2018 18:25:08 -0400 Subject: [PATCH] Note about 64-bit sqlite --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 1a3c0d2..155d1f4 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,20 @@ sqlite> SELECT * FROM demo; ...if all goes well, you'll see data here!... ``` +Note: if you get an error like: + +``` +sqlite> .load parquet/libparquet +Error: parquet/libparquet.so: wrong ELF class: ELFCLASS64 +``` + +You have the 32-bit SQLite installed. To fix this, do: + +``` +sudo apt-get remove --purge sqlite3 +sudo apt-get install sqlite3:amd64 +``` + ## Supported features ### Row group filtering