radixdb-core 1.1.0

Canonical value, identity, and shared contracts for RadixDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Neutral execution parameter containers.

use smallvec::SmallVec;

use crate::Value;

/// Positional SQL parameters shared by API adapters and the executor.
///
/// The inline capacity is part of the existing allocation contract: ordinary
/// queries with at most eight parameters do not require a heap allocation.
pub type ParamVec = SmallVec<[Value; 8]>;