pub struct BlockInfo {
pub is_overflows: u8,
pub bucket_num: i32,
}Expand description
Block metadata used by ClickHouse for distributed query processing.
Fields§
§is_overflows: u8Whether this block is an overflow block (1 = yes, 0 = no).
bucket_num: i32Bucket number for distributed GROUP BY (-1 if not applicable).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BlockInfo
impl RefUnwindSafe for BlockInfo
impl Send for BlockInfo
impl Sync for BlockInfo
impl Unpin for BlockInfo
impl UnwindSafe for BlockInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more