diff options
| author | 2021-08-09 01:17:49 -0700 | |
|---|---|---|
| committer | 2021-08-09 01:17:49 -0700 | |
| commit | fc3d68e1764600cf508cc9ebc35b7b84140ef4ee (patch) | |
| tree | 300b42ea506565162a073bf2147a70d233b28220 /sqlite.zig | |
| parent | iterator- pass along options object (diff) | |
| download | zig-sqlite-fc3d68e1764600cf508cc9ebc35b7b84140ef4ee.tar.gz zig-sqlite-fc3d68e1764600cf508cc9ebc35b7b84140ef4ee.tar.xz zig-sqlite-fc3d68e1764600cf508cc9ebc35b7b84140ef4ee.zip | |
options asks for `allocator` field but its not there
Diffstat (limited to 'sqlite.zig')
| -rw-r--r-- | sqlite.zig | 1 |
1 files changed, 1 insertions, 0 deletions
| @@ -492,6 +492,7 @@ pub const Db = struct { | |||
| 492 | pub const QueryOptions = struct { | 492 | pub 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. |