mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-04-05 09:49:48 +00:00
Take mharju's suggestion to explicitly use int64_t
This commit is contained in:
parent
342f01eda7
commit
f3da6b41f1
@ -752,7 +752,7 @@ void ParquetCursor::ensureColumn(int col) {
|
||||
}
|
||||
case parquet::Type::INT64: {
|
||||
parquet::Int64Scanner *s = (parquet::Int64Scanner *)scanners[col].get();
|
||||
long long rv = 0;
|
||||
int64_t rv = 0;
|
||||
s->NextValue(&rv, &wasNull);
|
||||
break;
|
||||
}
|
||||
@ -830,7 +830,7 @@ void ParquetCursor::ensureColumn(int col) {
|
||||
}
|
||||
case parquet::Type::INT64: {
|
||||
parquet::Int64Scanner *s = (parquet::Int64Scanner *)scanners[col].get();
|
||||
long long rv = 0;
|
||||
int64_t rv = 0;
|
||||
hadValue = s->NextValue(&rv, &wasNull);
|
||||
colIntValues[col] = rv;
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user