Skip to documentation
SLOP

tiny.sql.RelationDiff

Reference tiny.sql RelationDiff

Defined in diff.

API (5)

Actions

Public operations.

Fields and members

Public fields and members.

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

Source

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

zig
pub const RelationDiff = struct {    allocator: Allocator,    schema_changed: bool,    skipped_ranges: usize = 0,    changes: []Change,    pub fn deinit(self: *RelationDiff) void {        for (self.changes) |*change| change.deinit(self.allocator);        if (self.changes.len != 0) self.allocator.free(self.changes);        self.* = undefined;    }};

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

zig
pub const RelationDiff = diff.RelationDiff;

Audit

Definitions2
Public names4
Members4
Version26.7.0
Revisiondaab053ee433