1
0
mirror of https://github.com/cldellow/sqlite-parquet-vtable.git synced 2025-09-16 22:49:59 +00:00

Add rowgroup filtering for rowid

This commit is contained in:
Colin Dellow
2018-03-12 20:42:50 -04:00
parent 1f938a005d
commit acc15256ec
9 changed files with 61 additions and 15 deletions

View File

@@ -36,7 +36,7 @@ class Constraint {
ValueType type;
bool boolValue;
uintptr_t intValue;
int64_t intValue;
double doubleValue;
// Doubles as string value
std::vector<unsigned char> blobValue;
@@ -48,7 +48,7 @@ public:
ConstraintOperator op,
ValueType type,
bool boolValue,
uintptr_t intValue,
int64_t intValue,
double doubleValue,
std::vector<unsigned char> blobValue
);
@@ -57,7 +57,7 @@ public:
ConstraintOperator getOperator();
ValueType getType();
bool getBool();
uintptr_t getInt();
int64_t getInt();
double getDouble();
std::vector<unsigned char> getBytes();
};