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

@@ -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;
}