tiny.sql.RelationMergeConflict
Defined in merge.
API (6)
Fields and members
Public fields and members.
Source
Source: lib/sql/src/merge.zig:65
zig
pub const Conflict = struct { relation: []u8, rowid: i64, base: ?[]u8 = null, ours: ?[]u8 = null, theirs: ?[]u8 = null, artifact: version.ConflictArtifact, fn deinit(self: *Conflict, allocator: Allocator) void { allocator.free(self.relation); if (self.base) |bytes| allocator.free(bytes); if (self.ours) |bytes| allocator.free(bytes); if (self.theirs) |bytes| allocator.free(bytes); self.* = undefined; }};Source: lib/sql/src/root.zig:247
zig
pub const RelationMergeConflict = merge.Conflict;Audit
| Definitions | 1 |
|---|---|
| Public names | 2 |
| Members | 6 |
| Version | 26.7.0 |
| Revision | daab053ee433 |