• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

vortex-data / vortex / 16281724155

15 Jul 2025 01:24AM UTC coverage: 81.159% (-0.4%) from 81.533%
16281724155

Pull #3810

github

web-flow
Merge 262b846d5 into b0be264bf
Pull Request #3810: WIP feat: add ViewLayout for variable length views

148 of 464 new or added lines in 12 files covered. (31.9%)

9 existing lines in 4 files now uncovered.

46427 of 57205 relevant lines covered (81.16%)

145711.47 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/vortex-layout/src/layouts/view/reader/array.rs
1
//  SPDX-License-Identifier: Apache-2.0
2
//  SPDX-FileCopyrightText: Copyright the Vortex contributors
3

4
use std::ops::Range;
5

6
use async_trait::async_trait;
7
use vortex_array::ArrayRef;
8
use vortex_error::VortexResult;
9
use vortex_expr::ExprRef;
10
use vortex_mask::Mask;
11

12
use crate::ArrayEvaluation;
13

14
/// A projection evaluator over a View layout.
15
#[allow(unused)]
16
pub(crate) struct ViewProjection {
17
    pub(crate) row_range: Range<u64>,
18
    pub(crate) expr: ExprRef,
19
}
20

21
#[async_trait]
22
impl ArrayEvaluation for ViewProjection {
NEW
23
    async fn invoke(&self, _mask: Mask) -> VortexResult<ArrayRef> {
×
NEW
24
        todo!()
×
NEW
25
    }
×
26
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc