diff options
author | Martin Ashby <martin@ashbysoft.com> | 2023-09-28 20:46:10 +0100 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2023-09-28 20:46:10 +0100 |
commit | c00a7cd57be154b5a770a397319c8c8ad35c98b6 (patch) | |
tree | 89ef0f7bef322574883260c8952e0f3f71fa40ff /src/proto/data_row.zig | |
parent | d1435847fa68a548f8a2b8c61857691c6f5ac924 (diff) | |
download | pgz-c00a7cd57be154b5a770a397319c8c8ad35c98b6.tar.gz pgz-c00a7cd57be154b5a770a397319c8c8ad35c98b6.tar.bz2 pgz-c00a7cd57be154b5a770a397319c8c8ad35c98b6.tar.xz pgz-c00a7cd57be154b5a770a397319c8c8ad35c98b6.zip |
WIP
Diffstat (limited to 'src/proto/data_row.zig')
-rw-r--r-- | src/proto/data_row.zig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/proto/data_row.zig b/src/proto/data_row.zig index 43c4526..6bfcc1d 100644 --- a/src/proto/data_row.zig +++ b/src/proto/data_row.zig @@ -54,6 +54,14 @@ pub fn deinit(self: *DataRow, a: std.mem.Allocator) void { a.free(self.columns); } +// Caller owns the new DataRow. +pub fn clone(self: DataRow, a: std.mem.Allocator) !DataRow { + var ba = ByteArrayList.init(a); + errdefer ba.deinit(); + try self.write(a, ba.writer()); + return try DataRow.read(a, ba.items); +} + test "round trip" { const allocator = std.testing.allocator; const columns = try allocator.alloc([]const u8, 3); |