Work on prepared statements.
(Still not working 100%, but getting close.) Additionally, start on the README, fix some type member visibility, add some additional tests, tag some FIXMEs for where type conversions will take place, and add `#rewind` for the query iterator. FossilOrigin-Name: 490f27a4792d5243d82d90dcb12be1074c945c74d7fa63dd5baaf942ac42d7c9
This commit is contained in:
parent
7850a79372
commit
6d34b081bb
10 changed files with 344 additions and 14 deletions
10
kuzu.nimble
10
kuzu.nimble
|
|
@ -16,9 +16,13 @@ task makewrapper, "Generate the C wrapper using Futhark":
|
|||
exec "nim c -d:futharkWrap --outdir=. src/kuzu.nim"
|
||||
|
||||
task test, "Run the test suite.":
|
||||
exec "testament all"
|
||||
exec "testament --megatest:off all"
|
||||
exec "testament html"
|
||||
|
||||
task clean, "Remove all non-critical artifacts.":
|
||||
exec "fossil clean --disable-undo --dotfiles --emptydirs -f -v"
|
||||
task clean, "Remove all non-repository artifacts.":
|
||||
exec "fossil clean -x"
|
||||
|
||||
task docs, "Generate automated documentation.":
|
||||
exec "nim doc --project --outdir:docs src/kuzu.nim"
|
||||
exec "nim md2html --project --outdir:docs README.md"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue