Skip to documentation
SLOP

tiny.sql.RelationDiffChange

Reference tiny.sql RelationDiffChange

Defined in diff.

API (4)

Fields and members

Public fields and members.

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

Source

Source: lib/sql/src/diff.zig:21

zig
pub const Change = struct {    kind: ChangeKind,    rowid: i64,    from: ?[]u8 = null,    to: ?[]u8 = null,    fn deinit(self: *Change, allocator: Allocator) void {        if (self.from) |bytes| allocator.free(bytes);        if (self.to) |bytes| allocator.free(bytes);        self.* = undefined;    }};

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

zig
pub const RelationDiffChange = diff.Change;

Audit

Definitions1
Public names2
Members4
Version26.7.0
Revisiondaab053ee433