1
0
mirror of https://github.com/cldellow/sqlite-parquet-vtable.git synced 2025-09-16 22:49:59 +00:00

Remove unnecessary copy

Now the `== 'Dawson Creek'` query is ~210ms, which is approx the
same as a `count(*)` query. This seems maybe OK, since the row group
filter is only excluding 30% of records.
This commit is contained in:
Colin Dellow
2018-03-15 22:10:45 -04:00
parent f7f1ed03d1
commit 8ba13f44d5
2 changed files with 4 additions and 6 deletions

View File

@@ -9,7 +9,6 @@ ARROW_LIB = /usr/local/lib/libarrow.so
BOOST_LIB = /usr/lib/x86_64-linux-gnu/libboost_regex.so
LDFLAGS = -O3 $(PARQUET_LIB) $(THRIFT_LIB) $(ARROW_LIB) $(BOOST_LIB)
DEPS = hellomake.h
OBJ = parquet.o parquet_filter.o parquet_table.o parquet_cursor.o
libparquet.so: $(OBJ)