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:
@@ -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();
|
||||
};
|
||||
|
Reference in New Issue
Block a user