tiny.sql.RelationDiffChange
Defined in diff.
API (4)
Fields and members
Public fields and members.
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
| Definitions | 1 |
|---|---|
| Public names | 2 |
| Members | 4 |
| Version | 26.7.0 |
| Revision | daab053ee433 |