Skip to documentation
SLOP

tiny.sql.RowValueCapacity

Reference tiny.sql RowValueCapacity

Defined in table.

API (3)

Actions

Public operations.

Fields and members

Public fields and members.

No direct callersNo direct callstableValueCapacity
Static calls · unresolved targets: unknown · external targets: unknown.

Source

Source: lib/sql/src/table.zig:29

zig
pub const ValueCapacity = struct {    max_value_bytes: usize,    storage_bytes: usize,    pub fn derive(limits: ValueLimits) ValueCapacity {        return .{            .max_value_bytes = limits.max_value_bytes,            .storage_bytes = limits.max_value_bytes,        };    }};

Source: lib/sql/src/root.zig:227

zig
pub const RowValueCapacity = table.ValueCapacity;
Called byCallsNo direct callsRowValueStorageinittest sourcelib.sql.src.tabletest: table value capacity matches th...RowValueCapacityderive
Static calls · unresolved targets: 0 · external targets: 0.

Audit

Definitions2
Public names4
Members2
Version26.7.0
Revisiondaab053ee433