Skip to main content

EquiDepthHistogram

Struct EquiDepthHistogram 

Source
pub struct EquiDepthHistogram { /* private fields */ }
Expand description

An equi-depth histogram for selectivity estimation.

Equi-depth histograms partition data into buckets where each bucket contains approximately the same number of rows. This provides more accurate selectivity estimates than assuming uniform distribution, especially for skewed data.

§Example

use grafeo_engine::query::optimizer::cardinality::EquiDepthHistogram;

// Build a histogram from sorted values
let values = vec![1.0, 2.0, 3.0, 4.0, 5.0, 10.0, 20.0, 30.0, 40.0, 50.0];
let histogram = EquiDepthHistogram::build(&values, 4);

// Estimate selectivity for age > 25
let selectivity = histogram.range_selectivity(Some(25.0), None);

Implementations§

Source§

impl EquiDepthHistogram

Source

pub fn new(buckets: Vec<HistogramBucket>) -> Self

Creates a new histogram from pre-built buckets.

Source

pub fn build(values: &[f64], num_buckets: usize) -> Self

Builds an equi-depth histogram from a sorted slice of values.

§Arguments
  • values - A sorted slice of numeric values
  • num_buckets - The desired number of buckets
§Returns

An equi-depth histogram with approximately equal row counts per bucket.

Source

pub fn num_buckets(&self) -> usize

Returns the number of buckets in this histogram.

Source

pub fn total_rows(&self) -> u64

Returns the total number of rows represented.

Source

pub fn buckets(&self) -> &[HistogramBucket]

Returns the histogram buckets.

Source

pub fn range_selectivity(&self, lower: Option<f64>, upper: Option<f64>) -> f64

Estimates selectivity for a range predicate.

§Arguments
  • lower - Lower bound (None for unbounded)
  • upper - Upper bound (None for unbounded)
§Returns

Estimated fraction of rows matching the range (0.0 to 1.0).

Source

pub fn equality_selectivity(&self, value: f64) -> f64

Estimates selectivity for an equality predicate.

Uses the distinct count within matching buckets for better accuracy.

Source

pub fn min_value(&self) -> Option<f64>

Gets the minimum value in the histogram.

Source

pub fn max_value(&self) -> Option<f64>

Gets the maximum value in the histogram.

Trait Implementations§

Source§

impl Clone for EquiDepthHistogram

Source§

fn clone(&self) -> EquiDepthHistogram

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for EquiDepthHistogram

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more