diff options
Diffstat (limited to 'sqlite.zig')
| -rw-r--r-- | sqlite.zig | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1506,7 +1506,7 @@ pub fn Iterator(comptime Type: type) type { | |||
| 1506 | /// | 1506 | /// |
| 1507 | pub fn StatementType(comptime opts: StatementOptions, comptime query: []const u8) type { | 1507 | pub fn StatementType(comptime opts: StatementOptions, comptime query: []const u8) type { |
| 1508 | @setEvalBranchQuota(100000); | 1508 | @setEvalBranchQuota(100000); |
| 1509 | return Statement(opts, ParsedQuery.from(query)); | 1509 | return Statement(opts, ParsedQuery(query)); |
| 1510 | } | 1510 | } |
| 1511 | 1511 | ||
| 1512 | pub const StatementOptions = struct {}; | 1512 | pub const StatementOptions = struct {}; |
| @@ -2002,7 +2002,7 @@ pub const DynamicStatement = struct { | |||
| 2002 | /// | 2002 | /// |
| 2003 | /// Look at each function for more complete documentation. | 2003 | /// Look at each function for more complete documentation. |
| 2004 | /// | 2004 | /// |
| 2005 | pub fn Statement(comptime opts: StatementOptions, comptime query: ParsedQuery) type { | 2005 | pub fn Statement(comptime opts: StatementOptions, comptime query: anytype) type { |
| 2006 | _ = opts; | 2006 | _ = opts; |
| 2007 | 2007 | ||
| 2008 | return struct { | 2008 | return struct { |