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

vortex-data / vortex / 16935267080

13 Aug 2025 11:00AM UTC coverage: 24.312% (-63.3%) from 87.658%
16935267080

Pull #4226

github

web-flow
Merge 81b48c7fb into baa6ea202
Pull Request #4226: Support converting TimestampTZ to and from duckdb

0 of 2 new or added lines in 1 file covered. (0.0%)

20666 existing lines in 469 files now uncovered.

8726 of 35892 relevant lines covered (24.31%)

147.74 hits per line

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

0.0
/vortex-buffer/src/debug.rs
1
// SPDX-License-Identifier: Apache-2.0
2
// SPDX-FileCopyrightText: Copyright the Vortex contributors
3

4
use std::fmt::{Debug, Formatter};
5

6
/// A wrapper around a slice that truncates the debug output if it is too long.
7
pub(crate) struct TruncatedDebug<'a, T>(pub(crate) &'a [T]);
8

9
impl<T: Debug> Debug for TruncatedDebug<'_, T> {
UNCOV
10
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
×
11
        const TRUNC_SIZE: usize = 16;
UNCOV
12
        if self.0.len() <= TRUNC_SIZE {
×
UNCOV
13
            write!(f, "{:?}", self.0)
×
14
        } else {
15
            write!(f, "[")?;
×
16
            for elem in self.0.iter().take(TRUNC_SIZE) {
×
17
                write!(f, "{:?}, ", *elem)?;
×
18
            }
19
            write!(f, "...")?;
×
20
            write!(f, "]")
×
21
        }
UNCOV
22
    }
×
23
}
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