summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sqlite.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/sqlite.zig b/sqlite.zig
index 346b172..e8b3980 100644
--- a/sqlite.zig
+++ b/sqlite.zig
@@ -492,6 +492,7 @@ pub const Db = struct {
492pub const QueryOptions = struct { 492pub const QueryOptions = struct {
493 /// if provided, diags will be populated in case of failures. 493 /// if provided, diags will be populated in case of failures.
494 diags: ?*Diagnostics = null, 494 diags: ?*Diagnostics = null,
495 allocator: *std.mem.Allocator = undefined,
495}; 496};
496 497
497/// Iterator allows iterating over a result set. 498/// Iterator allows iterating over a result set.