summaryrefslogtreecommitdiff
path: root/vtab.zig
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2022-12-01 22:55:48 +0100
committerGravatar Vincent Rischmann2022-12-01 22:55:48 +0100
commitb98ebdf4a9f038ca6322e6091e45c4998efad946 (patch)
tree90dcac16fd9e1bca8691d4db80068b5def73ecf9 /vtab.zig
parentbuild: fix for latest zig (diff)
downloadzig-sqlite-b98ebdf4a9f038ca6322e6091e45c4998efad946.tar.gz
zig-sqlite-b98ebdf4a9f038ca6322e6091e45c4998efad946.tar.xz
zig-sqlite-b98ebdf4a9f038ca6322e6091e45c4998efad946.zip
fix for latest zig
Diffstat (limited to '')
-rw-r--r--vtab.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/vtab.zig b/vtab.zig
index 75a58c2..2c3e329 100644
--- a/vtab.zig
+++ b/vtab.zig
@@ -1064,7 +1064,7 @@ const TestVirtualTable = struct {
1064 1064
1065 // 1065 //
1066 1066
1067 builder.id.str = builder.id_str_buffer.toOwnedSlice(); 1067 builder.id.str = try builder.id_str_buffer.toOwnedSlice();
1068 builder.estimated_cost = 200; 1068 builder.estimated_cost = 200;
1069 builder.estimated_rows = 200; 1069 builder.estimated_rows = 200;
1070 1070