2018-03-03 20:44:01 +00:00
|
|
|
#include "parquet_cursor.h"
|
|
|
|
|
|
|
|
ParquetCursor::ParquetCursor(ParquetTable* table) {
|
|
|
|
this->table = table;
|
2018-03-05 02:05:26 +00:00
|
|
|
reader = NULL;
|
2018-03-11 17:58:10 +00:00
|
|
|
reset(std::vector<Constraint>());
|
2018-03-03 20:44:01 +00:00
|
|
|
}
|
|
|
|
|
2018-03-16 01:37:52 +00:00
|
|
|
bool ParquetCursor::currentRowGroupSatisfiesRowIdFilter(Constraint& constraint) {
|
2018-03-18 18:31:23 +00:00
|
|
|
if(constraint.type != Integer)
|
|
|
|
return true;
|
|
|
|
|
2018-03-16 03:04:11 +00:00
|
|
|
int64_t target = constraint.intValue;
|
|
|
|
switch(constraint.op) {
|
2018-03-13 00:42:50 +00:00
|
|
|
case IsNull:
|
|
|
|
return false;
|
|
|
|
case Is:
|
|
|
|
case Equal:
|
|
|
|
return target >= rowId && target < rowId + rowGroupSize;
|
|
|
|
case GreaterThan:
|
|
|
|
// rowId > target
|
|
|
|
return rowId + rowGroupSize > target;
|
|
|
|
case GreaterThanOrEqual:
|
|
|
|
// rowId >= target
|
|
|
|
return rowId + rowGroupSize >= rowId;
|
|
|
|
case LessThan:
|
|
|
|
return target > rowId;
|
|
|
|
case LessThanOrEqual:
|
|
|
|
return target >= rowId;
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-16 01:37:52 +00:00
|
|
|
bool ParquetCursor::currentRowGroupSatisfiesTextFilter(Constraint& constraint, std::shared_ptr<parquet::RowGroupStatistics> _stats) {
|
2018-03-13 03:07:41 +00:00
|
|
|
parquet::TypedRowGroupStatistics<parquet::DataType<parquet::Type::BYTE_ARRAY>>* stats =
|
|
|
|
(parquet::TypedRowGroupStatistics<parquet::DataType<parquet::Type::BYTE_ARRAY>>*)_stats.get();
|
|
|
|
|
|
|
|
if(!stats->HasMinMax()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-16 03:04:11 +00:00
|
|
|
if(constraint.type != Text) {
|
2018-03-16 00:40:21 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-16 03:04:11 +00:00
|
|
|
const std::string& str = constraint.stringValue;
|
2018-03-16 02:10:45 +00:00
|
|
|
const parquet::ByteArray& min = stats->min();
|
|
|
|
const parquet::ByteArray& max = stats->max();
|
2018-03-13 03:07:41 +00:00
|
|
|
std::string minStr((const char*)min.ptr, min.len);
|
|
|
|
std::string maxStr((const char*)max.ptr, max.len);
|
2018-03-16 00:40:21 +00:00
|
|
|
// printf("min=%s [%d], max=%s [%d], target=%s\n", minStr.data(), min.len, maxStr.data(), max.len, str.data());
|
2018-03-13 03:07:41 +00:00
|
|
|
|
2018-03-16 03:04:11 +00:00
|
|
|
switch(constraint.op) {
|
2018-03-13 03:07:41 +00:00
|
|
|
case Is:
|
|
|
|
case Equal:
|
2018-03-16 00:40:21 +00:00
|
|
|
return str >= minStr && str <= maxStr;
|
2018-03-13 03:07:41 +00:00
|
|
|
case GreaterThanOrEqual:
|
2018-03-16 20:07:41 +00:00
|
|
|
return maxStr >= str;
|
|
|
|
case GreaterThan:
|
|
|
|
return maxStr > str;
|
2018-03-13 03:07:41 +00:00
|
|
|
case LessThan:
|
2018-03-16 20:07:41 +00:00
|
|
|
return minStr < str;
|
2018-03-13 03:07:41 +00:00
|
|
|
case LessThanOrEqual:
|
2018-03-16 20:07:41 +00:00
|
|
|
return minStr <= str;
|
2018-03-13 03:07:41 +00:00
|
|
|
case IsNot:
|
|
|
|
case NotEqual:
|
2018-03-16 20:07:41 +00:00
|
|
|
// If min == max == str, we can skip this.
|
|
|
|
return !(minStr == maxStr && str == minStr);
|
2018-03-13 03:07:41 +00:00
|
|
|
case Like:
|
2018-03-17 04:11:38 +00:00
|
|
|
{
|
2018-03-17 19:28:51 +00:00
|
|
|
const std::string& likeStringValue = constraint.likeStringValue;
|
|
|
|
std::string truncatedMin = minStr.substr(0, likeStringValue.size());
|
|
|
|
std::string truncatedMax = maxStr.substr(0, likeStringValue.size());
|
|
|
|
return likeStringValue.empty() || (likeStringValue >= truncatedMin && likeStringValue <= truncatedMax);
|
2018-03-17 04:11:38 +00:00
|
|
|
}
|
2018-03-13 03:07:41 +00:00
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-16 20:07:41 +00:00
|
|
|
int64_t int96toMsSinceEpoch(const parquet::Int96& rv) {
|
|
|
|
__int128 ns = rv.value[0] + ((unsigned long)rv.value[1] << 32);
|
|
|
|
__int128 julianDay = rv.value[2];
|
|
|
|
__int128 nsSinceEpoch = (julianDay - 2440588);
|
|
|
|
nsSinceEpoch *= 86400;
|
|
|
|
nsSinceEpoch *= 1000 * 1000 * 1000;
|
|
|
|
nsSinceEpoch += ns;
|
|
|
|
nsSinceEpoch /= 1000000;
|
|
|
|
return nsSinceEpoch;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ParquetCursor::currentRowGroupSatisfiesIntegerFilter(Constraint& constraint, std::shared_ptr<parquet::RowGroupStatistics> _stats) {
|
|
|
|
if(!_stats->HasMinMax()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(constraint.type != Integer) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int column = constraint.column;
|
|
|
|
|
|
|
|
int64_t min = std::numeric_limits<int64_t>::min();
|
|
|
|
int64_t max = std::numeric_limits<int64_t>::max();
|
|
|
|
parquet::Type::type pqType = types[column];
|
|
|
|
|
|
|
|
if(pqType == parquet::Type::INT32) {
|
|
|
|
parquet::TypedRowGroupStatistics<parquet::DataType<parquet::Type::INT32>>* stats =
|
|
|
|
(parquet::TypedRowGroupStatistics<parquet::DataType<parquet::Type::INT32>>*)_stats.get();
|
|
|
|
|
|
|
|
min = stats->min();
|
|
|
|
max = stats->max();
|
|
|
|
} else if(pqType == parquet::Type::INT64) {
|
|
|
|
parquet::TypedRowGroupStatistics<parquet::DataType<parquet::Type::INT64>>* stats =
|
|
|
|
(parquet::TypedRowGroupStatistics<parquet::DataType<parquet::Type::INT64>>*)_stats.get();
|
|
|
|
|
|
|
|
min = stats->min();
|
|
|
|
max = stats->max();
|
|
|
|
} else if(pqType == parquet::Type::INT96) {
|
|
|
|
parquet::TypedRowGroupStatistics<parquet::DataType<parquet::Type::INT96>>* stats =
|
|
|
|
(parquet::TypedRowGroupStatistics<parquet::DataType<parquet::Type::INT96>>*)_stats.get();
|
|
|
|
|
|
|
|
min = int96toMsSinceEpoch(stats->min());
|
|
|
|
max = int96toMsSinceEpoch(stats->max());
|
|
|
|
|
|
|
|
} else if(pqType == parquet::Type::BOOLEAN) {
|
|
|
|
parquet::TypedRowGroupStatistics<parquet::DataType<parquet::Type::BOOLEAN>>* stats =
|
|
|
|
(parquet::TypedRowGroupStatistics<parquet::DataType<parquet::Type::BOOLEAN>>*)_stats.get();
|
|
|
|
|
|
|
|
min = stats->min();
|
|
|
|
max = stats->max();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// Should be impossible to get here as we should have forbidden this at
|
|
|
|
// CREATE time -- maybe file changed underneath us?
|
|
|
|
std::ostringstream ss;
|
|
|
|
ss << __FILE__ << ":" << __LINE__ << ": currentRowGroupSatisfiesIntegerFilter called on unsupported type: " <<
|
|
|
|
parquet::TypeToString(pqType);
|
|
|
|
throw std::invalid_argument(ss.str());
|
|
|
|
}
|
|
|
|
|
|
|
|
const int64_t value = constraint.intValue;
|
|
|
|
// printf("min=%s [%d], max=%s [%d], target=%s\n", minStr.data(), min.len, maxStr.data(), max.len, str.data());
|
|
|
|
|
|
|
|
switch(constraint.op) {
|
|
|
|
case Is:
|
|
|
|
case Equal:
|
|
|
|
return value >= min && value <= max;
|
|
|
|
case GreaterThanOrEqual:
|
|
|
|
return max >= value;
|
|
|
|
case GreaterThan:
|
|
|
|
return max > value;
|
|
|
|
case LessThan:
|
|
|
|
return min < value;
|
|
|
|
case LessThanOrEqual:
|
|
|
|
return min <= value;
|
|
|
|
case IsNot:
|
|
|
|
case NotEqual:
|
|
|
|
// If min == max == str, we can skip this.
|
|
|
|
return !(min == max && value == min);
|
|
|
|
case Like:
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-13 03:07:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-16 20:30:05 +00:00
|
|
|
bool ParquetCursor::currentRowGroupSatisfiesDoubleFilter(Constraint& constraint, std::shared_ptr<parquet::RowGroupStatistics> _stats) {
|
|
|
|
if(!_stats->HasMinMax()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(constraint.type != Double) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int column = constraint.column;
|
|
|
|
|
|
|
|
double min = std::numeric_limits<double>::min();
|
|
|
|
double max = std::numeric_limits<double>::max();
|
|
|
|
parquet::Type::type pqType = types[column];
|
|
|
|
|
|
|
|
if(pqType == parquet::Type::DOUBLE) {
|
|
|
|
parquet::TypedRowGroupStatistics<parquet::DataType<parquet::Type::DOUBLE>>* stats =
|
|
|
|
(parquet::TypedRowGroupStatistics<parquet::DataType<parquet::Type::DOUBLE>>*)_stats.get();
|
|
|
|
|
|
|
|
min = stats->min();
|
|
|
|
max = stats->max();
|
|
|
|
} else if(pqType == parquet::Type::FLOAT) {
|
|
|
|
parquet::TypedRowGroupStatistics<parquet::DataType<parquet::Type::FLOAT>>* stats =
|
|
|
|
(parquet::TypedRowGroupStatistics<parquet::DataType<parquet::Type::FLOAT>>*)_stats.get();
|
|
|
|
|
|
|
|
min = stats->min();
|
|
|
|
max = stats->max();
|
|
|
|
} else {
|
|
|
|
// Should be impossible to get here as we should have forbidden this at
|
|
|
|
// CREATE time -- maybe file changed underneath us?
|
|
|
|
std::ostringstream ss;
|
|
|
|
ss << __FILE__ << ":" << __LINE__ << ": currentRowGroupSatisfiesIntegerFilter called on unsupported type: " <<
|
|
|
|
parquet::TypeToString(pqType);
|
|
|
|
throw std::invalid_argument(ss.str());
|
|
|
|
}
|
|
|
|
|
|
|
|
const double value = constraint.doubleValue;
|
|
|
|
// printf("min=%s [%d], max=%s [%d], target=%s\n", minStr.data(), min.len, maxStr.data(), max.len, str.data());
|
|
|
|
|
|
|
|
switch(constraint.op) {
|
|
|
|
case Is:
|
|
|
|
case Equal:
|
|
|
|
return value >= min && value <= max;
|
|
|
|
case GreaterThanOrEqual:
|
|
|
|
return max >= value;
|
|
|
|
case GreaterThan:
|
|
|
|
return max > value;
|
|
|
|
case LessThan:
|
|
|
|
return min < value;
|
|
|
|
case LessThanOrEqual:
|
|
|
|
return min <= value;
|
|
|
|
case IsNot:
|
|
|
|
case NotEqual:
|
|
|
|
// If min == max == str, we can skip this.
|
|
|
|
return !(min == max && value == min);
|
|
|
|
case Like:
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-13 03:07:41 +00:00
|
|
|
return true;
|
2018-03-16 20:30:05 +00:00
|
|
|
|
2018-03-13 03:07:41 +00:00
|
|
|
}
|
|
|
|
|
2018-03-16 01:37:52 +00:00
|
|
|
bool ParquetCursor::currentRowSatisfiesTextFilter(Constraint& constraint) {
|
2018-03-16 03:04:11 +00:00
|
|
|
if(constraint.type != Text) {
|
2018-03-16 01:37:52 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-16 03:04:11 +00:00
|
|
|
parquet::ByteArray* ba = getByteArray(constraint.column);
|
2018-03-16 01:37:52 +00:00
|
|
|
|
2018-03-16 03:04:11 +00:00
|
|
|
switch(constraint.op) {
|
2018-03-16 01:37:52 +00:00
|
|
|
case Is:
|
|
|
|
case Equal:
|
2018-03-17 19:28:51 +00:00
|
|
|
{
|
|
|
|
const std::vector<unsigned char>& blob = constraint.blobValue;
|
|
|
|
|
2018-03-16 01:37:52 +00:00
|
|
|
if(blob.size() != ba->len)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return 0 == memcmp(&blob[0], ba->ptr, ba->len);
|
2018-03-17 19:28:51 +00:00
|
|
|
}
|
2018-03-16 20:07:41 +00:00
|
|
|
case IsNot:
|
|
|
|
case NotEqual:
|
2018-03-17 19:28:51 +00:00
|
|
|
{
|
|
|
|
const std::vector<unsigned char>& blob = constraint.blobValue;
|
|
|
|
|
2018-03-16 20:07:41 +00:00
|
|
|
if(blob.size() != ba->len)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return 0 != memcmp(&blob[0], ba->ptr, ba->len);
|
2018-03-17 19:28:51 +00:00
|
|
|
}
|
2018-03-16 01:37:52 +00:00
|
|
|
case GreaterThan:
|
2018-03-17 19:28:51 +00:00
|
|
|
{
|
|
|
|
const std::vector<unsigned char>& blob = constraint.blobValue;
|
|
|
|
|
|
|
|
return std::lexicographical_compare(
|
|
|
|
&blob[0],
|
|
|
|
&blob[0] + blob.size(),
|
|
|
|
ba->ptr,
|
|
|
|
ba->ptr + ba->len);
|
|
|
|
}
|
2018-03-16 01:37:52 +00:00
|
|
|
case GreaterThanOrEqual:
|
2018-03-17 19:28:51 +00:00
|
|
|
{
|
|
|
|
const std::vector<unsigned char>& blob = constraint.blobValue;
|
|
|
|
|
|
|
|
bool equal = blob.size() == ba->len && 0 == memcmp(&blob[0], ba->ptr, ba->len);
|
|
|
|
|
|
|
|
return equal || std::lexicographical_compare(
|
|
|
|
&blob[0],
|
|
|
|
&blob[0] + blob.size(),
|
|
|
|
ba->ptr,
|
|
|
|
ba->ptr + ba->len);
|
|
|
|
}
|
2018-03-16 01:37:52 +00:00
|
|
|
case LessThan:
|
2018-03-17 19:28:51 +00:00
|
|
|
{
|
|
|
|
const std::vector<unsigned char>& blob = constraint.blobValue;
|
|
|
|
|
|
|
|
return std::lexicographical_compare(
|
|
|
|
ba->ptr,
|
|
|
|
ba->ptr + ba->len,
|
|
|
|
&blob[0],
|
|
|
|
&blob[0] + blob.size());
|
|
|
|
}
|
2018-03-16 01:37:52 +00:00
|
|
|
case LessThanOrEqual:
|
2018-03-17 19:28:51 +00:00
|
|
|
{
|
|
|
|
const std::vector<unsigned char>& blob = constraint.blobValue;
|
|
|
|
|
|
|
|
bool equal = blob.size() == ba->len && 0 == memcmp(&blob[0], ba->ptr, ba->len);
|
2018-03-16 20:07:41 +00:00
|
|
|
|
2018-03-17 19:28:51 +00:00
|
|
|
return equal || std::lexicographical_compare(
|
|
|
|
ba->ptr,
|
|
|
|
ba->ptr + ba->len,
|
|
|
|
&blob[0],
|
|
|
|
&blob[0] + blob.size());
|
|
|
|
}
|
2018-03-16 01:37:52 +00:00
|
|
|
case Like:
|
2018-03-17 19:28:51 +00:00
|
|
|
{
|
|
|
|
const std::string& likeStringValue = constraint.likeStringValue;
|
|
|
|
if(likeStringValue.size() > ba->len)
|
|
|
|
return false;
|
2018-03-16 01:37:52 +00:00
|
|
|
|
2018-03-17 19:28:51 +00:00
|
|
|
size_t len = ba->len;
|
|
|
|
if(likeStringValue.size() < len)
|
|
|
|
len = likeStringValue.size();
|
|
|
|
return 0 == memcmp(&likeStringValue[0], ba->ptr, len);
|
|
|
|
}
|
2018-03-16 01:37:52 +00:00
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ParquetCursor::currentRowSatisfiesIntegerFilter(Constraint& constraint) {
|
2018-03-17 20:05:38 +00:00
|
|
|
if(constraint.type != Integer) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int column = constraint.column;
|
|
|
|
|
|
|
|
// CONSIDER: should we just store int64s everywhere?
|
|
|
|
int64_t value = 0;
|
|
|
|
|
|
|
|
if(column == -1) {
|
|
|
|
value = rowId;
|
|
|
|
} else {
|
|
|
|
parquet::Type::type pqType = types[column];
|
|
|
|
|
|
|
|
if(pqType == parquet::Type::INT32 || pqType == parquet::Type::BOOLEAN) {
|
|
|
|
value = getInt32(column);
|
|
|
|
} else if(pqType == parquet::Type::INT64 || pqType == parquet::Type::INT96) {
|
|
|
|
value = getInt64(column);
|
|
|
|
} else {
|
|
|
|
// Should be impossible to get here
|
|
|
|
std::ostringstream ss;
|
|
|
|
ss << __FILE__ << ":" << __LINE__ << ": currentRowSatisfiesIntegerFilter called on unsupported type: " <<
|
|
|
|
parquet::TypeToString(pqType);
|
|
|
|
throw std::invalid_argument(ss.str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t constraintValue = constraint.intValue;
|
|
|
|
|
|
|
|
switch(constraint.op) {
|
|
|
|
case Is:
|
|
|
|
case Equal:
|
|
|
|
return constraintValue == value;
|
|
|
|
case IsNot:
|
|
|
|
case NotEqual:
|
|
|
|
return constraintValue != value;
|
|
|
|
case GreaterThan:
|
|
|
|
return value > constraintValue;
|
|
|
|
case GreaterThanOrEqual:
|
|
|
|
return value >= constraintValue;
|
|
|
|
case LessThan:
|
|
|
|
return value < constraintValue;
|
|
|
|
case LessThanOrEqual:
|
|
|
|
return value <= constraintValue;
|
|
|
|
case Like:
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-16 01:37:52 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ParquetCursor::currentRowSatisfiesDoubleFilter(Constraint& constraint) {
|
2018-03-17 20:09:57 +00:00
|
|
|
if(constraint.type != Double) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int column = constraint.column;
|
|
|
|
double value = getDouble(column);
|
|
|
|
double constraintValue = constraint.doubleValue;
|
|
|
|
|
|
|
|
switch(constraint.op) {
|
|
|
|
case Is:
|
|
|
|
case Equal:
|
|
|
|
return constraintValue == value;
|
|
|
|
case IsNot:
|
|
|
|
case NotEqual:
|
|
|
|
return constraintValue != value;
|
|
|
|
case GreaterThan:
|
|
|
|
return value > constraintValue;
|
|
|
|
case GreaterThanOrEqual:
|
|
|
|
return value >= constraintValue;
|
|
|
|
case LessThan:
|
|
|
|
return value < constraintValue;
|
|
|
|
case LessThanOrEqual:
|
|
|
|
return value <= constraintValue;
|
|
|
|
case Like:
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-16 01:37:52 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-11 19:43:40 +00:00
|
|
|
// Return true if it is _possible_ that the current
|
|
|
|
// rowgroup satisfies the constraints. Only return false
|
|
|
|
// if it definitely does not.
|
|
|
|
//
|
|
|
|
// This avoids opening rowgroups that can't return useful
|
|
|
|
// data, which provides substantial performance benefits.
|
|
|
|
bool ParquetCursor::currentRowGroupSatisfiesFilter() {
|
|
|
|
for(unsigned int i = 0; i < constraints.size(); i++) {
|
2018-03-16 03:04:11 +00:00
|
|
|
int column = constraints[i].column;
|
|
|
|
int op = constraints[i].op;
|
2018-03-11 19:43:40 +00:00
|
|
|
bool rv = true;
|
|
|
|
|
2018-03-11 23:18:44 +00:00
|
|
|
if(column == -1) {
|
2018-03-13 00:42:50 +00:00
|
|
|
rv = currentRowGroupSatisfiesRowIdFilter(constraints[i]);
|
2018-03-11 23:18:44 +00:00
|
|
|
} else {
|
2018-03-13 01:09:00 +00:00
|
|
|
std::unique_ptr<parquet::ColumnChunkMetaData> md = rowGroupMetadata->ColumnChunk(column);
|
|
|
|
if(!md->is_stats_set()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
std::shared_ptr<parquet::RowGroupStatistics> stats = md->statistics();
|
2018-03-11 23:18:44 +00:00
|
|
|
|
2018-03-16 00:25:02 +00:00
|
|
|
// SQLite is much looser with types than you might expect if you
|
|
|
|
// come from a Postgres background. The constraint '30.0' (that is,
|
|
|
|
// a string containing a floating point number) should be treated
|
|
|
|
// as equal to a field containing an integer 30.
|
|
|
|
//
|
|
|
|
// This means that even if the parquet physical type is integer,
|
|
|
|
// the constraint type may be a string, so dispatch to the filter
|
|
|
|
// fn based on the Parquet type.
|
|
|
|
|
2018-03-11 23:18:44 +00:00
|
|
|
if(op == IsNull) {
|
2018-03-13 01:09:00 +00:00
|
|
|
rv = stats->null_count() > 0;
|
2018-03-11 23:18:44 +00:00
|
|
|
} else if(op == IsNotNull) {
|
2018-03-13 01:09:00 +00:00
|
|
|
rv = stats->num_values() > 0;
|
2018-03-16 00:25:02 +00:00
|
|
|
} else {
|
|
|
|
parquet::Type::type pqType = types[column];
|
|
|
|
|
|
|
|
if(pqType == parquet::Type::BYTE_ARRAY) {
|
|
|
|
rv = currentRowGroupSatisfiesTextFilter(constraints[i], stats);
|
|
|
|
} else if(pqType == parquet::Type::INT32 ||
|
|
|
|
pqType == parquet::Type::INT64 ||
|
|
|
|
pqType == parquet::Type::INT96 ||
|
|
|
|
pqType == parquet::Type::BOOLEAN) {
|
|
|
|
rv = currentRowGroupSatisfiesIntegerFilter(constraints[i], stats);
|
|
|
|
} else if(pqType == parquet::Type::FLOAT || pqType == parquet::Type::DOUBLE) {
|
|
|
|
rv = currentRowGroupSatisfiesDoubleFilter(constraints[i], stats);
|
|
|
|
}
|
2018-03-11 23:18:44 +00:00
|
|
|
}
|
2018-03-11 19:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!rv)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-04 22:49:19 +00:00
|
|
|
bool ParquetCursor::nextRowGroup() {
|
2018-03-11 19:43:40 +00:00
|
|
|
start:
|
2018-03-13 00:42:50 +00:00
|
|
|
// Ensure that rowId points at the start of this rowGroup (eg, in the case where
|
|
|
|
// we skipped an entire row group).
|
|
|
|
rowId = rowGroupStartRowId + rowGroupSize;
|
|
|
|
|
|
|
|
if((rowGroupId + 1) >= numRowGroups) {
|
2018-03-04 22:49:19 +00:00
|
|
|
return false;
|
2018-03-13 00:42:50 +00:00
|
|
|
}
|
2018-03-03 20:44:01 +00:00
|
|
|
|
2018-03-05 03:29:35 +00:00
|
|
|
rowGroupStartRowId = rowId;
|
2018-03-03 20:44:01 +00:00
|
|
|
rowGroupId++;
|
2018-03-11 19:04:38 +00:00
|
|
|
rowGroupMetadata = reader->metadata()->RowGroup(rowGroupId);
|
2018-03-13 00:42:50 +00:00
|
|
|
rowGroupSize = rowsLeftInRowGroup = rowGroupMetadata->num_rows();
|
2018-03-03 20:44:01 +00:00
|
|
|
rowGroup = reader->RowGroup(rowGroupId);
|
|
|
|
for(unsigned int i = 0; i < scanners.size(); i++)
|
|
|
|
scanners[i] = NULL;
|
|
|
|
|
|
|
|
while(types.size() < (unsigned int)rowGroupMetadata->num_columns()) {
|
|
|
|
types.push_back(rowGroupMetadata->schema()->Column(0)->physical_type());
|
|
|
|
}
|
|
|
|
|
2018-03-04 22:20:28 +00:00
|
|
|
while(logicalTypes.size() < (unsigned int)rowGroupMetadata->num_columns()) {
|
|
|
|
logicalTypes.push_back(rowGroupMetadata->schema()->Column(0)->logical_type());
|
|
|
|
}
|
|
|
|
|
2018-03-03 20:44:01 +00:00
|
|
|
for(unsigned int i = 0; i < (unsigned int)rowGroupMetadata->num_columns(); i++) {
|
|
|
|
types[i] = rowGroupMetadata->schema()->Column(i)->physical_type();
|
2018-03-04 22:20:28 +00:00
|
|
|
logicalTypes[i] = rowGroupMetadata->schema()->Column(i)->logical_type();
|
2018-03-03 20:44:01 +00:00
|
|
|
}
|
2018-03-04 22:49:19 +00:00
|
|
|
|
2018-03-05 03:29:35 +00:00
|
|
|
for(unsigned int i = 0; i < colRows.size(); i++) {
|
|
|
|
colRows[i] = rowId;
|
|
|
|
}
|
|
|
|
|
2018-03-13 00:42:50 +00:00
|
|
|
// Increment rowId so currentRowGroupSatisfiesRowIdFilter can access it;
|
|
|
|
// it'll get decremented by our caller
|
|
|
|
rowId++;
|
2018-03-11 19:43:40 +00:00
|
|
|
if(!currentRowGroupSatisfiesFilter())
|
|
|
|
goto start;
|
|
|
|
|
2018-03-04 22:49:19 +00:00
|
|
|
return true;
|
2018-03-03 20:44:01 +00:00
|
|
|
}
|
|
|
|
|
2018-03-11 17:58:10 +00:00
|
|
|
// Return true if it is _possible_ that the current
|
|
|
|
// row satisfies the constraints. Only return false
|
|
|
|
// if it definitely does not.
|
2018-03-11 19:43:40 +00:00
|
|
|
//
|
|
|
|
// This avoids pointless transitions between the SQLite VM
|
|
|
|
// and the extension, which can add up on a dataset of tens
|
|
|
|
// of millions of rows.
|
2018-03-11 17:58:10 +00:00
|
|
|
bool ParquetCursor::currentRowSatisfiesFilter() {
|
|
|
|
for(unsigned int i = 0; i < constraints.size(); i++) {
|
2018-03-11 19:43:40 +00:00
|
|
|
bool rv = true;
|
2018-03-16 03:04:11 +00:00
|
|
|
int column = constraints[i].column;
|
2018-03-11 17:58:10 +00:00
|
|
|
ensureColumn(column);
|
2018-03-16 03:04:11 +00:00
|
|
|
int op = constraints[i].op;
|
2018-03-11 17:58:10 +00:00
|
|
|
|
|
|
|
if(op == IsNull) {
|
2018-03-11 19:43:40 +00:00
|
|
|
rv = isNull(column);
|
2018-03-11 17:58:10 +00:00
|
|
|
} else if(op == IsNotNull) {
|
2018-03-11 19:43:40 +00:00
|
|
|
rv = !isNull(column);
|
2018-03-16 01:37:52 +00:00
|
|
|
} else {
|
|
|
|
parquet::Type::type pqType = types[column];
|
|
|
|
|
|
|
|
if(pqType == parquet::Type::BYTE_ARRAY) {
|
|
|
|
rv = currentRowSatisfiesTextFilter(constraints[i]);
|
|
|
|
} else if(pqType == parquet::Type::INT32 ||
|
|
|
|
pqType == parquet::Type::INT64 ||
|
|
|
|
pqType == parquet::Type::INT96 ||
|
|
|
|
pqType == parquet::Type::BOOLEAN) {
|
|
|
|
rv = currentRowSatisfiesIntegerFilter(constraints[i]);
|
|
|
|
} else if(pqType == parquet::Type::FLOAT || pqType == parquet::Type::DOUBLE) {
|
|
|
|
rv = currentRowSatisfiesDoubleFilter(constraints[i]);
|
|
|
|
}
|
2018-03-11 17:58:10 +00:00
|
|
|
}
|
2018-03-11 19:43:40 +00:00
|
|
|
|
|
|
|
if(!rv)
|
|
|
|
return false;
|
2018-03-11 17:58:10 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-03 20:44:01 +00:00
|
|
|
void ParquetCursor::next() {
|
2018-03-11 17:58:10 +00:00
|
|
|
start:
|
2018-03-04 22:49:19 +00:00
|
|
|
if(rowsLeftInRowGroup == 0) {
|
|
|
|
if(!nextRowGroup()) {
|
|
|
|
// put rowId over the edge so eof returns true
|
2018-03-13 00:42:50 +00:00
|
|
|
rowId = numRows + 1;
|
2018-03-04 22:49:19 +00:00
|
|
|
return;
|
2018-03-13 00:42:50 +00:00
|
|
|
} else {
|
|
|
|
// After a successful nextRowGroup, rowId is pointing at the current row. Make it
|
|
|
|
// point before so the rest of the logic works out.
|
|
|
|
rowId--;
|
2018-03-04 22:49:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-03 20:44:01 +00:00
|
|
|
rowsLeftInRowGroup--;
|
|
|
|
rowId++;
|
2018-03-11 17:58:10 +00:00
|
|
|
if(!currentRowSatisfiesFilter())
|
|
|
|
goto start;
|
2018-03-16 20:07:41 +00:00
|
|
|
|
2018-03-03 20:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ParquetCursor::getRowId() {
|
|
|
|
return rowId;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ParquetCursor::eof() {
|
|
|
|
return rowId >= numRows;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ParquetCursor::ensureColumn(int col) {
|
2018-03-11 17:58:10 +00:00
|
|
|
// -1 signals rowid, which is trivially available
|
|
|
|
if(col == -1)
|
|
|
|
return;
|
|
|
|
|
2018-03-03 20:44:01 +00:00
|
|
|
// need to ensure a scanner exists (and skip the # of rows in the rowgroup)
|
|
|
|
while((unsigned int)col >= scanners.size()) {
|
|
|
|
scanners.push_back(std::shared_ptr<parquet::Scanner>());
|
2018-03-05 03:29:35 +00:00
|
|
|
// If it doesn't exist, it's the rowId as of the last nextRowGroup call
|
|
|
|
colRows.push_back(rowGroupStartRowId);
|
2018-03-03 20:44:01 +00:00
|
|
|
colNulls.push_back(false);
|
|
|
|
colIntValues.push_back(0);
|
|
|
|
colDoubleValues.push_back(0);
|
|
|
|
colByteArrayValues.push_back(parquet::ByteArray());
|
|
|
|
}
|
|
|
|
|
|
|
|
if(scanners[col].get() == NULL) {
|
|
|
|
std::shared_ptr<parquet::ColumnReader> colReader = rowGroup->Column(col);
|
|
|
|
scanners[col] = parquet::Scanner::Make(colReader);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Actually fetch a value, stash data in colRows, colNulls, colValues
|
|
|
|
if(colRows[col] != rowId) {
|
2018-03-05 03:29:35 +00:00
|
|
|
// We may need to skip some records, eg, a query like
|
|
|
|
// SELECT a WHERE b = 10
|
|
|
|
// may have read b, but skipped a until b matches the predicate.
|
2018-03-03 20:44:01 +00:00
|
|
|
bool wasNull = false;
|
2018-03-05 03:29:35 +00:00
|
|
|
while(colRows[col] + 1 < rowId) {
|
|
|
|
switch(types[col]) {
|
|
|
|
case parquet::Type::INT32:
|
|
|
|
{
|
|
|
|
parquet::Int32Scanner* s = (parquet::Int32Scanner*)scanners[col].get();
|
|
|
|
int rv = 0;
|
|
|
|
s->NextValue(&rv, &wasNull);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case parquet::Type::FLOAT:
|
|
|
|
{
|
|
|
|
parquet::FloatScanner* s = (parquet::FloatScanner*)scanners[col].get();
|
|
|
|
float rv = 0;
|
|
|
|
s->NextValue(&rv, &wasNull);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case parquet::Type::DOUBLE:
|
|
|
|
{
|
|
|
|
parquet::DoubleScanner* s = (parquet::DoubleScanner*)scanners[col].get();
|
|
|
|
double rv = 0;
|
|
|
|
s->NextValue(&rv, &wasNull);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case parquet::Type::BYTE_ARRAY:
|
|
|
|
{
|
|
|
|
parquet::ByteArrayScanner* s = (parquet::ByteArrayScanner*)scanners[col].get();
|
|
|
|
parquet::ByteArray ba;
|
|
|
|
s->NextValue(&ba, &wasNull);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case parquet::Type::INT96:
|
|
|
|
{
|
|
|
|
parquet::Int96Scanner* s = (parquet::Int96Scanner*)scanners[col].get();
|
|
|
|
parquet::Int96 rv;
|
|
|
|
s->NextValue(&rv, &wasNull);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case parquet::Type::INT64:
|
|
|
|
{
|
|
|
|
parquet::Int64Scanner* s = (parquet::Int64Scanner*)scanners[col].get();
|
|
|
|
long rv = 0;
|
|
|
|
s->NextValue(&rv, &wasNull);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case parquet::Type::BOOLEAN:
|
|
|
|
{
|
|
|
|
parquet::BoolScanner* s = (parquet::BoolScanner*)scanners[col].get();
|
|
|
|
bool rv = false;
|
|
|
|
s->NextValue(&rv, &wasNull);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case parquet::Type::FIXED_LEN_BYTE_ARRAY:
|
|
|
|
{
|
|
|
|
parquet::FixedLenByteArrayScanner* s = (parquet::FixedLenByteArrayScanner*)scanners[col].get();
|
|
|
|
parquet::FixedLenByteArray flba;
|
|
|
|
s->NextValue(&flba, &wasNull);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
// Should be impossible to get here as we should have forbidden this at
|
|
|
|
// CREATE time -- maybe file changed underneath us?
|
|
|
|
std::ostringstream ss;
|
|
|
|
ss << __FILE__ << ":" << __LINE__ << ": column " << col << " has unsupported type: " <<
|
|
|
|
parquet::TypeToString(types[col]);
|
|
|
|
throw std::invalid_argument(ss.str());
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
colRows[col]++;
|
|
|
|
}
|
|
|
|
|
|
|
|
colRows[col] = rowId;
|
|
|
|
wasNull = false;
|
2018-03-03 20:44:01 +00:00
|
|
|
|
|
|
|
switch(types[col]) {
|
|
|
|
case parquet::Type::INT32:
|
|
|
|
{
|
|
|
|
parquet::Int32Scanner* s = (parquet::Int32Scanner*)scanners[col].get();
|
|
|
|
int rv = 0;
|
|
|
|
if(s->NextValue(&rv, &wasNull)) {
|
|
|
|
colIntValues[col] = rv;
|
|
|
|
} else {
|
|
|
|
throw std::invalid_argument("unexpectedly lacking a next value");
|
|
|
|
}
|
2018-03-04 01:00:50 +00:00
|
|
|
break;
|
2018-03-03 20:44:01 +00:00
|
|
|
}
|
2018-03-04 01:57:09 +00:00
|
|
|
case parquet::Type::FLOAT:
|
|
|
|
{
|
|
|
|
parquet::FloatScanner* s = (parquet::FloatScanner*)scanners[col].get();
|
|
|
|
float rv = 0;
|
|
|
|
if(s->NextValue(&rv, &wasNull)) {
|
|
|
|
colDoubleValues[col] = rv;
|
|
|
|
} else {
|
|
|
|
throw std::invalid_argument("unexpectedly lacking a next value");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2018-03-03 20:44:01 +00:00
|
|
|
case parquet::Type::DOUBLE:
|
|
|
|
{
|
|
|
|
parquet::DoubleScanner* s = (parquet::DoubleScanner*)scanners[col].get();
|
|
|
|
double rv = 0;
|
|
|
|
if(s->NextValue(&rv, &wasNull)) {
|
|
|
|
colDoubleValues[col] = rv;
|
|
|
|
} else {
|
|
|
|
throw std::invalid_argument("unexpectedly lacking a next value");
|
|
|
|
}
|
2018-03-04 01:00:50 +00:00
|
|
|
break;
|
2018-03-03 20:44:01 +00:00
|
|
|
}
|
|
|
|
case parquet::Type::BYTE_ARRAY:
|
|
|
|
{
|
|
|
|
parquet::ByteArrayScanner* s = (parquet::ByteArrayScanner*)scanners[col].get();
|
|
|
|
if(!s->NextValue(&colByteArrayValues[col], &wasNull)) {
|
|
|
|
throw std::invalid_argument("unexpectedly lacking a next value");
|
|
|
|
}
|
2018-03-04 01:00:50 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case parquet::Type::INT96:
|
|
|
|
{
|
|
|
|
// INT96 tracks a date with nanosecond precision, convert to ms since epoch.
|
|
|
|
// ...see https://github.com/apache/parquet-format/pull/49 for more
|
|
|
|
//
|
|
|
|
// First 8 bytes: nanoseconds into the day
|
|
|
|
// Last 4 bytes: Julian day
|
|
|
|
// To get nanoseconds since the epoch:
|
|
|
|
// (julian_day - 2440588) * (86400 * 1000 * 1000 * 1000) + nanoseconds
|
|
|
|
parquet::Int96Scanner* s = (parquet::Int96Scanner*)scanners[col].get();
|
2018-03-16 20:07:41 +00:00
|
|
|
parquet::Int96 rv {0, 0, 0};
|
2018-03-04 01:00:50 +00:00
|
|
|
if(s->NextValue(&rv, &wasNull)) {
|
2018-03-16 20:07:41 +00:00
|
|
|
colIntValues[col] = int96toMsSinceEpoch(rv);
|
2018-03-04 01:00:50 +00:00
|
|
|
} else {
|
|
|
|
throw std::invalid_argument("unexpectedly lacking a next value");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case parquet::Type::INT64:
|
|
|
|
{
|
|
|
|
parquet::Int64Scanner* s = (parquet::Int64Scanner*)scanners[col].get();
|
|
|
|
long rv = 0;
|
|
|
|
if(s->NextValue(&rv, &wasNull)) {
|
|
|
|
colIntValues[col] = rv;
|
|
|
|
} else {
|
|
|
|
throw std::invalid_argument("unexpectedly lacking a next value");
|
|
|
|
}
|
|
|
|
break;
|
2018-03-03 20:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case parquet::Type::BOOLEAN:
|
2018-03-04 01:00:50 +00:00
|
|
|
{
|
|
|
|
parquet::BoolScanner* s = (parquet::BoolScanner*)scanners[col].get();
|
|
|
|
bool rv = false;
|
|
|
|
if(s->NextValue(&rv, &wasNull)) {
|
|
|
|
colIntValues[col] = rv ? 1 : 0;
|
|
|
|
} else {
|
|
|
|
throw std::invalid_argument("unexpectedly lacking a next value");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2018-03-03 20:44:01 +00:00
|
|
|
case parquet::Type::FIXED_LEN_BYTE_ARRAY:
|
2018-03-04 22:20:28 +00:00
|
|
|
{
|
|
|
|
parquet::FixedLenByteArrayScanner* s = (parquet::FixedLenByteArrayScanner*)scanners[col].get();
|
|
|
|
parquet::FixedLenByteArray flba;
|
|
|
|
if(s->NextValue(&flba, &wasNull)) {
|
|
|
|
colByteArrayValues[col].ptr = flba.ptr;
|
|
|
|
// TODO: cache this
|
|
|
|
colByteArrayValues[col].len = rowGroupMetadata->schema()->Column(col)->type_length();
|
|
|
|
} else {
|
|
|
|
throw std::invalid_argument("unexpectedly lacking a next value");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2018-03-03 20:44:01 +00:00
|
|
|
default:
|
2018-03-04 01:00:50 +00:00
|
|
|
// Should be impossible to get here as we should have forbidden this at
|
|
|
|
// CREATE time -- maybe file changed underneath us?
|
|
|
|
std::ostringstream ss;
|
|
|
|
ss << __FILE__ << ":" << __LINE__ << ": column " << col << " has unsupported type: " <<
|
|
|
|
parquet::TypeToString(types[col]);
|
|
|
|
throw std::invalid_argument(ss.str());
|
2018-03-03 20:44:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
colNulls[col] = wasNull;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ParquetCursor::isNull(int col) {
|
2018-03-11 17:58:10 +00:00
|
|
|
// -1 is rowid, which is trivially non null
|
|
|
|
if(col == -1)
|
|
|
|
return false;
|
|
|
|
|
2018-03-03 20:44:01 +00:00
|
|
|
return colNulls[col];
|
|
|
|
}
|
|
|
|
|
2018-03-04 01:00:50 +00:00
|
|
|
int ParquetCursor::getInt32(int col) {
|
|
|
|
return colIntValues[col];
|
|
|
|
}
|
|
|
|
|
|
|
|
long ParquetCursor::getInt64(int col) {
|
2018-03-03 20:44:01 +00:00
|
|
|
return colIntValues[col];
|
|
|
|
}
|
|
|
|
|
|
|
|
double ParquetCursor::getDouble(int col) {
|
|
|
|
return colDoubleValues[col];
|
|
|
|
}
|
|
|
|
|
|
|
|
parquet::ByteArray* ParquetCursor::getByteArray(int col) {
|
|
|
|
return &colByteArrayValues[col];
|
|
|
|
}
|
|
|
|
|
|
|
|
parquet::Type::type ParquetCursor::getPhysicalType(int col) {
|
|
|
|
return types[col];
|
|
|
|
}
|
2018-03-04 22:20:28 +00:00
|
|
|
|
|
|
|
parquet::LogicalType::type ParquetCursor::getLogicalType(int col) {
|
|
|
|
return logicalTypes[col];
|
|
|
|
}
|
2018-03-05 02:05:26 +00:00
|
|
|
|
|
|
|
void ParquetCursor::close() {
|
|
|
|
if(reader != NULL) {
|
|
|
|
reader->Close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-11 17:58:10 +00:00
|
|
|
void ParquetCursor::reset(std::vector<Constraint> constraints) {
|
2018-03-05 02:05:26 +00:00
|
|
|
close();
|
2018-03-11 17:58:10 +00:00
|
|
|
this->constraints = constraints;
|
2018-03-05 02:05:26 +00:00
|
|
|
rowId = -1;
|
|
|
|
// TODO: consider having a long lived handle in ParquetTable that can be borrowed
|
|
|
|
// without incurring the cost of opening the file from scratch twice
|
2018-03-15 23:57:38 +00:00
|
|
|
reader = parquet::ParquetFileReader::OpenFile(
|
|
|
|
table->file.data(),
|
|
|
|
true,
|
|
|
|
parquet::default_reader_properties(),
|
|
|
|
table->getMetadata());
|
2018-03-05 02:05:26 +00:00
|
|
|
|
|
|
|
rowGroupId = -1;
|
2018-03-13 00:42:50 +00:00
|
|
|
rowGroupSize = 0;
|
|
|
|
rowGroupStartRowId = -1;
|
2018-03-05 02:05:26 +00:00
|
|
|
// TODO: handle the case where rowgroups have disjoint schemas?
|
|
|
|
// TODO: or at least, fail fast if detected
|
|
|
|
rowsLeftInRowGroup = 0;
|
|
|
|
|
|
|
|
numRows = reader->metadata()->num_rows();
|
|
|
|
numRowGroups = reader->metadata()->num_row_groups();
|
|
|
|
}
|
2018-03-10 15:59:53 +00:00
|
|
|
|
|
|
|
ParquetTable* ParquetCursor::getTable() { return table; }
|