summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * ci: stop testing both memory and filesystemGravatar Vincent Rischmann2021-08-185-39/+3
| | | | | | | | | | | | | | | | | | We don't do much when choosing in memory or not, sqlite does all the work of managing the data, so there's not much point for us testing both modes. This will also have the benefit of reducing the time needed to run the CI, especially for aarch64 which is super slow.
| * ci: enable macOSGravatar Vincent Rischmann2021-08-181-2/+2
| |
| * build: handle macos in the test targetsGravatar Vincent Rischmann2021-08-181-0/+8
|/
* Merge pull request #36 from nektro/masterGravatar Vincent Rischmann2021-08-124-13/+14
|\ | | | | Various fixes
| * update README with new init syntax as wellGravatar Meghan Denny2021-08-111-2/+1
| |
| * update tests for new use of `Db.init`Gravatar Meghan Denny2021-08-111-6/+2
| |
| * actions- add `fail-fast: false` to matrix stepsGravatar Meghan Denny2021-08-111-0/+2
| |
| * adding allocator to Db.QueryOptions was a mistakeGravatar Meghan Denny2021-08-111-1/+0
| |
| * git- ignore zig-cache and zig-outGravatar Meghan Denny2021-08-111-0/+1
| |
| * clarify bind marker len compile errorGravatar Meghan Denny2021-08-091-1/+4
| |
| * options asks for `allocator` field but its not thereGravatar Meghan Denny2021-08-091-0/+1
| |
| * iterator- pass along options objectGravatar Meghan Denny2021-08-091-1/+1
| |
| * make `init` return a Self instead of updating a pointerGravatar Meghan Denny2021-08-091-3/+3
| |
* | Merge pull request #37 from vrischmann/improve-docGravatar Vincent Rischmann2021-08-091-18/+52
|\ \ | |/ |/| Improve doc
| * move the documentation to Db.openBlob since that is the method user will callGravatar Vincent Rischmann2021-08-091-19/+26
| |
| * clarify Blob.openGravatar Vincent Rischmann2021-08-091-0/+1
| |
| * document the ZeroBlob typeGravatar Vincent Rischmann2021-08-091-0/+17
| |
| * clarify the OpenFlagsGravatar Vincent Rischmann2021-08-091-0/+5
| |
| * clarify Mode documentationGravatar Vincent Rischmann2021-08-091-0/+4
|/
* Merge pull request #33 from vrischmann/exec-with-diagsGravatar Vincent Rischmann2021-08-021-21/+47
|\ | | | | modify exec to take a QueryOptions
| * modify exec to take a QueryOptionsGravatar Vincent Rischmann2021-08-021-21/+47
|/ | | | Fixes #35
* Merge branch 'improve-readme'Gravatar Vincent Rischmann2021-07-181-1/+23
|\
| * document that fixed-sized arrays are supportedGravatar Vincent Rischmann2021-07-181-1/+23
|/
* Merge branch 'add-gitattributes'Gravatar Vincent Rischmann2021-07-182-6/+3
|\
| * Revert "ci: use vrischmann/checkout@disable-autocrlf"Gravatar Vincent Rischmann2021-07-181-6/+2
| | | | | | | | This reverts commit 31caa367f3ea19a3a0a7d8c0a710089b14416d94.
| * gitattributes: normalize line endingsGravatar Vincent Rischmann2021-07-181-0/+1
|/
* Merge branch 'fix-windows'Gravatar Vincent Rischmann2021-07-121-2/+6
|\
| * ci: use vrischmann/checkout@disable-autocrlfGravatar Vincent Rischmann2021-07-121-2/+6
|/
* Merge branch 'fix-latest-zig'Gravatar Vincent Rischmann2021-06-272-17/+11
|\
| * fix 'unused variable' errorsGravatar Vincent Rischmann2021-06-251-6/+1
| |
| * query: fix new compilation errorsGravatar Vincent Rischmann2021-06-251-9/+3
| |
| * fix 'redundant comptile' errorGravatar Vincent Rischmann2021-06-251-2/+2
| |
| * fix 'unused function parameter' errorGravatar Vincent Rischmann2021-06-251-0/+5
|/
* Merge pull request #34 from Miaourt/masterGravatar Vincent Rischmann2021-06-142-92/+185
|\ | | | | Update SQLite to 3.35.5
| * Update SQLite to 3.35.5Gravatar Miaourt2021-06-132-92/+185
|/
* ci: cleanupGravatar Vincent Rischmann2021-06-094-8/+0
|
* Merge branch 'ci-qemu'Gravatar Vincent Rischmann2021-06-082-0/+22
|\
| * ci: run the tests with qemu tooGravatar Vincent Rischmann2021-06-072-0/+22
|/
* Merge branch 'more-windows-ci'Gravatar Vincent Rischmann2021-06-061-0/+8
|\
| * ci: build windows with i386 tooGravatar Vincent Rischmann2021-06-061-0/+8
|/
* Merge branch 'ci-windows'Gravatar Vincent Rischmann2021-06-061-2/+2
|\
| * ci: add steps for WindowsGravatar Vincent Rischmann2021-06-061-2/+2
|/
* ci: run the actions every dayGravatar Vincent Rischmann2021-05-301-0/+2
|
* Merge pull request #31 from vrischmann/change-branch-quotaGravatar Vincent Rischmann2021-05-301-5/+10
|\ | | | | set the eval branch quota in the return type block
| * set the eval branch quota in the return type blockGravatar Vincent Rischmann2021-05-301-5/+10
|/ | | | | | | | | | `prepare` and `prepareWithDiags` parse the query at comptime in the return type definition. This exceeds the branch quota since https://github.com/ziglang/zig/commit/b11ac9c5bfb4048eb4aa561f8b3b058a76787f7e. Use a block and `@setEvalBranchQuota` to work around this. Fixes #30.
* Merge branch 'fix-latest-zig'Gravatar Vincent Rischmann2021-05-282-5/+3
|\
| * all: update for latest zigGravatar Vincent Rischmann2021-05-192-5/+3
|/
* Merge branch 'fix-tests'Gravatar Vincent Rischmann2021-05-122-81/+81
|\
| * all: fix tests for latest zigGravatar Vincent Rischmann2021-05-092-81/+81
|/
* attempt to make the threading mode error clearerGravatar Vincent Rischmann2021-05-031-1/+1
|