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:
@@ -5,7 +5,7 @@ Constraint::Constraint(
|
||||
ConstraintOperator op,
|
||||
ValueType type,
|
||||
bool boolValue,
|
||||
uintptr_t intValue,
|
||||
int64_t intValue,
|
||||
double doubleValue,
|
||||
std::vector<unsigned char> blobValue
|
||||
) {
|
||||
@@ -34,7 +34,7 @@ bool Constraint::getBool() {
|
||||
return boolValue;
|
||||
}
|
||||
|
||||
uintptr_t Constraint::getInt() {
|
||||
int64_t Constraint::getInt() {
|
||||
return intValue;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user