Skip to content

Commit

Permalink
Add Boolean Support For Sparse Query Conditions (#3651)
Browse files Browse the repository at this point in the history
* This is supported in the dense case here:
  https://github.com/TileDB-Inc/TileDB/blob/dev/tiledb/sm/query/query_condition.cc#L1234-L1235
  But missing for the sparse case

(cherry picked from commit e219ee3)
  • Loading branch information
nguyenv authored and ihnorton committed Nov 10, 2022
1 parent 7f598be commit 390b6e2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tiledb/sm/query/query_condition.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1933,6 +1933,7 @@ void QueryCondition::apply_ast_node_sparse(
apply_ast_node_sparse<int8_t, BitmapType, CombinationOp>(
node, result_tile, var_size, nullable, combination_op, result_bitmap);
} break;
case Datatype::BOOL:
case Datatype::UINT8: {
apply_ast_node_sparse<uint8_t, BitmapType, CombinationOp>(
node, result_tile, var_size, nullable, combination_op, result_bitmap);
Expand Down

0 comments on commit 390b6e2

Please sign in to comment.