Skip to main content

radixdb_core/
params.rs

1//! Neutral execution parameter containers.
2
3use smallvec::SmallVec;
4
5use crate::Value;
6
7/// Positional SQL parameters shared by API adapters and the executor.
8///
9/// The inline capacity is part of the existing allocation contract: ordinary
10/// queries with at most eight parameters do not require a heap allocation.
11pub type ParamVec = SmallVec<[Value; 8]>;