sqlite-parquet-vtable/parquet/parquet_filter.h

62 lines
1006 B
C
Raw Normal View History

#ifndef PARQUET_FILTER_H
#define PARQUET_FILTER_H
#include <vector>
#include <cstdint>
enum ConstraintOperator {
Equal,
GreaterThan,
LessThanOrEqual,
LessThan,
GreaterThanOrEqual,
Match,
Like,
Glob,
Regexp,
NotEqual,
IsNot,
IsNotNull,
IsNull,
Is
};
enum ValueType {
Null,
Integer,
Double,
Blob,
Text
};
class Constraint {
int column; // underlying column in the query
ConstraintOperator op;
ValueType type;
2018-03-13 00:42:50 +00:00
int64_t intValue;
double doubleValue;
// Doubles as string value
std::vector<unsigned char> blobValue;
public:
// Kind of a messy constructor function, but it's just for internal use, so whatever.
Constraint(
int column,
ConstraintOperator op,
ValueType type,
2018-03-13 00:42:50 +00:00
int64_t intValue,
double doubleValue,
std::vector<unsigned char> blobValue
);
int getColumn();
ConstraintOperator getOperator();
ValueType getType();
2018-03-13 00:42:50 +00:00
int64_t getInt();
double getDouble();
std::vector<unsigned char> getBytes();
};
#endif