mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-04-03 09:39:47 +00:00
Bail on rowId constraint when non-int
This commit is contained in:
parent
078754467e
commit
7b302a0eb2
@ -7,6 +7,9 @@ ParquetCursor::ParquetCursor(ParquetTable* table) {
|
||||
}
|
||||
|
||||
bool ParquetCursor::currentRowGroupSatisfiesRowIdFilter(Constraint& constraint) {
|
||||
if(constraint.type != Integer)
|
||||
return true;
|
||||
|
||||
int64_t target = constraint.intValue;
|
||||
switch(constraint.op) {
|
||||
case IsNull:
|
||||
|
Loading…
x
Reference in New Issue
Block a user