| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | Update SQLite to 3.35.5 | 2021-06-13 | 2 | -92/+185 | ||
| |/ | ||||||
| * | ci: cleanup | 2021-06-09 | 4 | -8/+0 | ||
| | | ||||||
| * | Merge branch 'ci-qemu' | 2021-06-08 | 2 | -0/+22 | ||
| |\ | ||||||
| | * | ci: run the tests with qemu too | 2021-06-07 | 2 | -0/+22 | ||
| |/ | ||||||
| * | Merge branch 'more-windows-ci' | 2021-06-06 | 1 | -0/+8 | ||
| |\ | ||||||
| | * | ci: build windows with i386 too | 2021-06-06 | 1 | -0/+8 | ||
| |/ | ||||||
| * | Merge branch 'ci-windows' | 2021-06-06 | 1 | -2/+2 | ||
| |\ | ||||||
| | * | ci: add steps for Windows | 2021-06-06 | 1 | -2/+2 | ||
| |/ | ||||||
| * | ci: run the actions every day | 2021-05-30 | 1 | -0/+2 | ||
| | | ||||||
| * | Merge pull request #31 from vrischmann/change-branch-quota | 2021-05-30 | 1 | -5/+10 | ||
| |\ | | | | | set the eval branch quota in the return type block | |||||
| | * | set the eval branch quota in the return type block | 2021-05-30 | 1 | -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' | 2021-05-28 | 2 | -5/+3 | ||
| |\ | ||||||
| | * | all: update for latest zig | 2021-05-19 | 2 | -5/+3 | ||
| |/ | ||||||
| * | Merge branch 'fix-tests' | 2021-05-12 | 2 | -81/+81 | ||
| |\ | ||||||
| | * | all: fix tests for latest zig | 2021-05-09 | 2 | -81/+81 | ||
| |/ | ||||||
| * | attempt to make the threading mode error clearer | 2021-05-03 | 1 | -1/+1 | ||
| | | ||||||
| * | workaround compiler bug | 2021-04-27 | 1 | -3/+9 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | This workaround allows one to write this: const Foobar = struct { foo: usize, bar: []const u8, }; const row = try stmt.one(Foobar); Where the first field in the struct (here `foo`) is either an integer type, a float type or a boolean. Moving the first field of this type to second position resolves the bug. This is because readInt, readFloat and readBool have an empty error set and cause this bug to trigger. Removing the error altogether also triggers the bug so we define an explicit error set. If we actually want to return an error from these functions we'll simply remove the workaround. See https://github.com/ziglang/zig/issues/5149 | |||||
| * | fix error name | 2021-04-23 | 1 | -1/+1 | ||
| | | ||||||
| * | Merge pull request #28 from daurnimator/array-exact-size | 2021-04-22 | 1 | -11/+12 | ||
| |\ | | | | | Allow reading into static size arrays as long as size matches | |||||
| | * | Allow reading into static size arrays as long as size matches | 2021-04-23 | 1 | -11/+12 | ||
| |/ | ||||||
| * | Merge pull request #26 from daurnimator/return-error | 2021-04-22 | 1 | -87/+87 | ||
| |\ | | | | | error: return error directly so that line in stacktrace is relevant | |||||
| | * | error: return error directly so that line in stacktrace is relevant | 2021-04-23 | 1 | -87/+87 | ||
| |/ | ||||||
| * | ignore zig.mod for linguist, we're not writing AMPL here | 2021-04-20 | 1 | -0/+1 | ||
| | | ||||||
| * | Merge pull request #25 from akvadrako/patch-1 | 2021-04-20 | 1 | -2/+2 | ||
| |\ | | | | | Fix some typos in README | |||||
| | * | Fix some typos in README | 2021-04-20 | 1 | -2/+2 | ||
| |/ | ||||||
| * | improve logs in Statement.deinit and Statement.reset | 2021-04-17 | 1 | -3/+6 | ||
| | | ||||||
| * | fix DetailedError and Diagnostics formatting | 2021-04-17 | 1 | -4/+8 | ||
| | | ||||||
| * | make use_bundled work for all targets | 2021-04-17 | 1 | -4/+5 | ||
| | | | | | | We might want to force the use of the bundled source code even when testing all targets. | |||||
| * | Merge pull request #24 from vrischmann/pragma-arg-string | 2021-04-17 | 1 | -18/+15 | ||
| |\ | | | | | replace the pragma argument with a nullable string | |||||
| | * | replace the pragma argument with a nullable string | 2021-04-17 | 1 | -18/+15 | ||
| |/ | ||||||
| * | fix documentation | 2021-04-17 | 1 | -1/+1 | ||
| | | ||||||
| * | Merge branch 'readme-improvements' | 2021-04-12 | 1 | -3/+28 | ||
| |\ | ||||||
| | * | document how to use zigmod | 2021-04-12 | 1 | -3/+28 | ||
| |/ | ||||||
| * | Merge branch 'zigmod' | 2021-04-12 | 1 | -0/+9 | ||
| |\ | ||||||
| | * | add zigmod support | 2021-04-12 | 1 | -0/+9 | ||
| |/ | ||||||
| * | build: cleanup test target for windows | 2021-04-03 | 1 | -10/+0 | ||
| | | ||||||
| * | Merge pull request #23 from vrischmann/cross-compile-tests | 2021-03-23 | 5 | -54/+150 | ||
| |\ | | | | | Rework test runner script | |||||
| | * | ci: remove extraneous jobs | 2021-03-23 | 4 | -26/+0 | ||
| | | | ||||||
| | * | build: run the tests on all targets we support for a given host OS | 2021-03-22 | 1 | -28/+150 | ||
| |/ | | | | | | | For a given host OS (Linux or Windows), define all the test targets directly in the build script. Additionally, support using QEMU to run the non-native tests. | |||||
| * | Merge pull request #22 from data-man/sqlite_fresh | 2021-03-19 | 2 | -30/+51 | ||
| |\ | | | | | Update SQLite to 3.35.2 | |||||
| | * | Update SQLite to 3.35.2 | 2021-03-19 | 2 | -30/+51 | ||
| |/ | ||||||
| * | ci: enable the bundled test | 2021-03-13 | 1 | -5/+3 | ||
| | | ||||||
| * | tools: copy the c directory before since it basically never changes | 2021-03-13 | 2 | -2/+2 | ||
| | | ||||||
| * | Merge branch 'github-ci-bundled' | 2021-03-13 | 1 | -5/+25 | ||
| |\ | ||||||
| | * | ci: use two different jobs for in-memory/filesystem tests | 2021-03-13 | 1 | -5/+21 | ||
| | | | ||||||
| | * | ci: also trigger the github workflow if C files are modified | 2021-03-13 | 1 | -0/+4 | ||
| |/ | ||||||
| * | build: fix building _without_ the bundled source code | 2021-03-13 | 1 | -6/+11 | ||
| | | ||||||
| * | Merge branch 'build-glibc' | 2021-03-13 | 2 | -1/+35 | ||
| |\ | ||||||
| | * | readme: add a note about minimum glibc version | 2021-03-13 | 1 | -0/+14 | ||
| | | | ||||||
| | * | build: fix building with glibc | 2021-03-13 | 1 | -1/+21 | ||
| |/ | | | | | sqlite3 requires at least glibc 2.28 from my testing; prevent building the tests using anything below that. | |||||