From c1a5f2720bad283f870df77b41430bd461bb9182 Mon Sep 17 00:00:00 2001 From: Patrick Date: Sat, 18 Oct 2025 12:07:46 -0400 Subject: update dynamic statement all to call arraylist.append correctly --- sqlite.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite.zig b/sqlite.zig index bfd6ee9..dcf05a1 100644 --- a/sqlite.zig +++ b/sqlite.zig @@ -1969,7 +1969,7 @@ pub const DynamicStatement = struct { var rows: std.ArrayList(Type) = .{}; while (try iter.nextAlloc(allocator, options)) |row| { - try rows.append(row); + try rows.append(allocator, row); } return rows.toOwnedSlice(allocator); -- cgit v1.2.3