1
0
mirror of https://github.com/cldellow/sqlite-parquet-vtable.git synced 2025-11-04 02:39:56 +00:00

WIP on making build work on Ubuntu 16.04

See comment at https://github.com/cldellow/sqlite-parquet-vtable/pull/39#issuecomment-553983872
in https://github.com/cldellow/sqlite-parquet-vtable/pull/39 for log messages.

I think I need to refactor the `-I` directives -- I think when I updated them to
fix finding compression library headers, I brought in an internal set of arrow
includes, perhaps?
This commit is contained in:
Ubuntu
2019-11-14 17:06:49 +00:00
parent 3085bb34b3
commit 897c4538fa
2 changed files with 3 additions and 1 deletions

View File

@@ -775,6 +775,7 @@ void ParquetCursor::ensureColumn(int col) {
case parquet::Type::INT64:
{
parquet::Int64Scanner* s = (parquet::Int64Scanner*)scanners[col].get();
//long rv = 0;
long long rv = 0;
s->NextValue(&rv, &wasNull);
break;
@@ -859,6 +860,7 @@ void ParquetCursor::ensureColumn(int col) {
case parquet::Type::INT64:
{
parquet::Int64Scanner* s = (parquet::Int64Scanner*)scanners[col].get();
//long rv = 0;
long long rv = 0;
hadValue = s->NextValue(&rv, &wasNull);
colIntValues[col] = rv;