1
0
mirror of https://github.com/cldellow/sqlite-parquet-vtable.git synced 2025-07-02 16:53:29 +00:00
sqlite-parquet-vtable/parquet/parquet_filter.cc
Colin Dellow 830053c1fc Scaffolding for in-extension filtering
Supports IS NULL and IS NOT NULL checks
2018-03-11 13:58:10 -04:00

48 lines
811 B
C++

#include "parquet_filter.h"
Constraint::Constraint(
int column,
ConstraintOperator op,
ValueType type,
bool boolValue,
uintptr_t intValue,
double doubleValue,
std::vector<unsigned char> blobValue
) {
this->column = column;
this->op = op;
this->type = type;
this->boolValue = boolValue;
this->intValue = intValue;
this->doubleValue = doubleValue;
this->blobValue = blobValue;
}
int Constraint::getColumn() {
return column;
}
ConstraintOperator Constraint::getOperator() {
return op;
}
ValueType Constraint::getType() {
return type;
}
bool Constraint::getBool() {
return boolValue;
}
uintptr_t Constraint::getInt() {
return intValue;
}
double Constraint::getDouble() {
return doubleValue;
}
std::vector<unsigned char> Constraint::getBytes() {
return blobValue;
}