@@ -445,11 +445,7 @@ impl QueryHandle<'_> {
445
445
query : & RangeQuery ,
446
446
view_contents : & [ ColumnDescriptor ] ,
447
447
) -> ( Option < usize > , Vec < Vec < ( AtomicU64 , Chunk ) > > ) {
448
- let mut view_pov_chunks_idx = self
449
- . query
450
- . filtered_point_of_view
451
- . as_ref ( )
452
- . map ( |_| usize:: MAX ) ;
448
+ let mut view_pov_chunks_idx = self . query . filtered_is_not_null . as_ref ( ) . map ( |_| usize:: MAX ) ;
453
449
454
450
let view_chunks = view_contents
455
451
. iter ( )
@@ -462,7 +458,7 @@ impl QueryHandle<'_> {
462
458
. fetch_chunks ( query, & column. entity_path , [ column. component_name ] )
463
459
. unwrap_or_default ( ) ;
464
460
465
- if let Some ( pov) = self . query . filtered_point_of_view . as_ref ( ) {
461
+ if let Some ( pov) = self . query . filtered_is_not_null . as_ref ( ) {
466
462
if pov. entity_path == column. entity_path
467
463
&& column. component_name . matches ( & pov. component_name )
468
464
{
@@ -1196,7 +1192,7 @@ mod tests {
1196
1192
// * [x] filtered_index_values
1197
1193
// * [x] view_contents
1198
1194
// * [x] selection
1199
- // * [x] filtered_point_of_view
1195
+ // * [x] filtered_is_not_null
1200
1196
// * [x] sparse_fill_strategy
1201
1197
// * [x] using_index_values
1202
1198
//
@@ -1551,7 +1547,7 @@ mod tests {
1551
1547
}
1552
1548
1553
1549
#[ test]
1554
- fn filtered_point_of_view ( ) -> anyhow:: Result < ( ) > {
1550
+ fn filtered_is_not_null ( ) -> anyhow:: Result < ( ) > {
1555
1551
re_log:: setup_logging ( ) ;
1556
1552
1557
1553
let store = create_nasty_store ( ) ?;
@@ -1569,7 +1565,7 @@ mod tests {
1569
1565
{
1570
1566
let query = QueryExpression {
1571
1567
filtered_index,
1572
- filtered_point_of_view : Some ( ComponentColumnSelector {
1568
+ filtered_is_not_null : Some ( ComponentColumnSelector {
1573
1569
entity_path : "no/such/entity" . into ( ) ,
1574
1570
component_name : MyPoint :: name ( ) . to_string ( ) ,
1575
1571
} ) ,
@@ -1598,7 +1594,7 @@ mod tests {
1598
1594
{
1599
1595
let query = QueryExpression {
1600
1596
filtered_index,
1601
- filtered_point_of_view : Some ( ComponentColumnSelector {
1597
+ filtered_is_not_null : Some ( ComponentColumnSelector {
1602
1598
entity_path : entity_path. clone ( ) ,
1603
1599
component_name : "AComponentColumnThatDoesntExist" . into ( ) ,
1604
1600
} ) ,
@@ -1627,7 +1623,7 @@ mod tests {
1627
1623
{
1628
1624
let query = QueryExpression {
1629
1625
filtered_index,
1630
- filtered_point_of_view : Some ( ComponentColumnSelector {
1626
+ filtered_is_not_null : Some ( ComponentColumnSelector {
1631
1627
entity_path : entity_path. clone ( ) ,
1632
1628
component_name : MyPoint :: name ( ) . to_string ( ) ,
1633
1629
} ) ,
@@ -1666,7 +1662,7 @@ mod tests {
1666
1662
{
1667
1663
let query = QueryExpression {
1668
1664
filtered_index,
1669
- filtered_point_of_view : Some ( ComponentColumnSelector {
1665
+ filtered_is_not_null : Some ( ComponentColumnSelector {
1670
1666
entity_path : entity_path. clone ( ) ,
1671
1667
component_name : MyColor :: name ( ) . to_string ( ) ,
1672
1668
} ) ,
@@ -2180,7 +2176,7 @@ mod tests {
2180
2176
{
2181
2177
let query = QueryExpression {
2182
2178
filtered_index,
2183
- filtered_point_of_view : Some ( ComponentColumnSelector {
2179
+ filtered_is_not_null : Some ( ComponentColumnSelector {
2184
2180
entity_path : entity_path. clone ( ) ,
2185
2181
component_name : MyPoint :: name ( ) . to_string ( ) ,
2186
2182
} ) ,
0 commit comments