Expand description
Commonly used imports: the session and frame types plus the DataFusion expression builders the verbs take.
Re-exports§
pub use crate::OxideFrame;pub use crate::OxideSessionExt;
Structs§
- Oxide
Session - An OxideLake session.
- Session
Options - Knobs a session is built with.
Enums§
- Backend
Kind - The execution backends OxideLake knows about.
- Distance
Metric - Distance metric for the vector kernel.
- Engine
Error - Errors produced by OxideLake library crates.
- Expr
- Represents logical expressions such as
A + 1, orCAST(c1 AS int). - Session
Mode - Where a session executes.
Functions§
- avg
- Returns the avg of a group of values.
- col
- Create a column expression based on a qualified or unqualified column name. Will normalize unquoted identifiers according to SQL rules (identifiers will become lowercase).
- count
- Count the number of non-null values in the column
- lit
- Create a literal expression
- max
- Returns the maximum of a group of values.
- min
- Returns the minimum of a group of values.
- sum
- Returns the sum of a group of values.