mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-12-18 06:13:28 +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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user