Skip to documentation
SLOP

tiny.sql.RelationMergeConflict

Reference tiny.sql RelationMergeConflict

Defined in merge.

API (6)

Fields and members

Public fields and members.

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

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

Definitions1
Public names2
Members6
Version26.7.0
Revisiondaab053ee433