tiny.sql.RelationValue
Defined in version.
API (4)
Actions
Public operations.
Fields and members
Public fields and members.
Source
Source: lib/sql/src/version.zig:162
zig
pub const RelationValue = struct { root: RelationRoot, rows: []RelationRow, pub fn deinit(self: *RelationValue, allocator: Allocator) void { self.root.deinit(); freeRelationRows(allocator, self.rows); self.* = undefined; } pub fn clone(self: *const RelationValue, allocator: Allocator) Allocator.Error!RelationValue { var root = try self.root.clone(allocator); errdefer root.deinit(); const rows = try cloneRelationRows(allocator, self.rows); return .{ .root = root, .rows = rows, }; }};Source: lib/sql/src/root.zig:277
zig
pub const RelationValue = version.RelationValue;Audit
| Definitions | 3 |
|---|---|
| Public names | 6 |
| Members | 2 |
| Version | 26.7.0 |
| Revision | daab053ee433 |