Skip to documentation
SLOP

tiny.sql.RelationValue

Reference tiny.sql RelationValue

Defined in version.

API (4)

Actions

Public operations.

Fields and members

Public fields and members.

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

Source

Source: lib/sql/src/version.zig:162

zig
pub const RelationValue = struct {    root: RelationRoot,    rows: []RelationRow,    pub fn deinit(self: *RelationValue, allocator: Allocator) void {        self.root.deinit();        freeRelationRows(allocator, self.rows);        self.* = undefined;    }    pub fn clone(self: *const RelationValue, allocator: Allocator) Allocator.Error!RelationValue {        var root = try self.root.clone(allocator);        errdefer root.deinit();        const rows = try cloneRelationRows(allocator, self.rows);        return .{            .root = root,            .rows = rows,        };    }};

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

zig
pub const RelationValue = version.RelationValue;
Called byCallsNo direct callersRelationRootcloneversioncloneRelationRowsRelationValueclone
Static calls · unresolved targets: 0 · external targets: 1.
Called byCallsmergemergeDatabaseRelationRootdeinitversionfreeRelationRowsRelationValuedeinit
Static calls · unresolved targets: 0 · external targets: 0.

Audit

Definitions3
Public names6
Members2
Version26.7.0
Revisiondaab053ee433