summaryrefslogtreecommitdiff
path: root/sqlite.zig
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2020-11-26 00:47:13 +0100
committerGravatar Vincent Rischmann2020-11-26 00:47:13 +0100
commit10f47a4279910708193bdea3164274abb33e9b75 (patch)
tree2ff5a3cb934b2eb6e4558a053e6e617388b1f3ef /sqlite.zig
parentis_signed was replaced with .signedness (diff)
downloadzig-sqlite-10f47a4279910708193bdea3164274abb33e9b75.tar.gz
zig-sqlite-10f47a4279910708193bdea3164274abb33e9b75.tar.xz
zig-sqlite-10f47a4279910708193bdea3164274abb33e9b75.zip
return the slice from toOwnedSlice
Diffstat (limited to '')
-rw-r--r--sqlite.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite.zig b/sqlite.zig
index 487e013..1145a9e 100644
--- a/sqlite.zig
+++ b/sqlite.zig
@@ -599,7 +599,7 @@ pub fn Statement(comptime opts: StatementOptions, comptime query: ParsedQuery) t
599 try rows.append(row); 599 try rows.append(row);
600 } 600 }
601 601
602 return rows.span(); 602 return rows.toOwnedSlice();
603 } 603 }
604 }; 604 };
605} 605}