From cafd087113349081f74b11162d391987eead86a7 Mon Sep 17 00:00:00 2001 From: Colin Dellow Date: Sat, 24 Mar 2018 12:49:03 -0400 Subject: [PATCH] Update README --- README.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/README.md b/README.md index 155d1f4..96330dc 100644 --- a/README.md +++ b/README.md @@ -2,17 +2,6 @@ A SQLite [virtual table](https://sqlite.org/vtab.html) extension to expose Parquet files as SQL tables. -## Caveats - -I'm not an experienced C/C++ programmer. This library is definitely not bombproof. It's good enough for my use case, -and may be good enough for yours, too. - -* I don't use `sqlite3_malloc` and `sqlite3_free` for C++ objects - * Maybe this doesn't matter, since portability isn't a goal -* The C -> C++ interop definitely leaks some C++ exceptions - * Obvious cases like file not found and unsupported Parquet types are OK - * Low memory conditions aren't handled gracefully. - ## Building 1. Install [`parquet-cpp`](https://github.com/apache/parquet-cpp)