summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* all: use our workaround function for SQLITE_TRANSIENTGravatar Vincent Rischmann2024-04-142-5/+5
|
* build: add the workaround C fileGravatar Vincent Rischmann2024-04-141-10/+16
|
* c: add a workaround for SQLITE_TRANSIENT being mistranslatedGravatar Vincent Rischmann2024-04-144-0/+10
| | | | | | | | | | | See https://github.com/ziglang/zig/issues/15893 zig's translate-c creates an invalid type for SQLITE_TRANSIENT on some architectures (aarch64, riscv64 and others). We can work around this by making a C function that returns -1 cast to the proper destructor type and use that from zig (thanks https://github.com/Cloudef for mentioning this in this comment: https://github.com/ziglang/zig/issues/15893#issuecomment-1925092582)
* ci: reenable windowsGravatar Vincent Rischmann2024-04-141-2/+1
|
* Merge pull request #157 from vrischmann/update-latest-zigGravatar Vincent Rischmann2024-04-145-190/+209
|\ | | | | fix for latest zig
| * build: use the already defined sqlite moduleGravatar Vincent Rischmann2024-04-141-12/+4
| |
| * build: disable PIEGravatar Vincent Rischmann2024-04-141-1/+0
| |
| * ci: use actions/cache v4Gravatar Vincent Rischmann2024-04-141-1/+1
| |
| * ci: use actions/checkout v4Gravatar Vincent Rischmann2024-04-141-1/+1
| |
| * fix for latest zigGravatar Vincent Rischmann2024-04-144-175/+203
|/ | | | Also some major refactoring around the query parsing state.
* Merge pull request #154 from JacobCrabill/dev/zig-0.12-modulesGravatar Vincent Rischmann2024-04-141-2/+8
|\ | | | | build.zig: Configure module to be used downstream
| * build.zig: Configure module to be used downstreamGravatar JacobCrabill2024-01-291-2/+8
| |
* | Merge pull request #155 from MFAshby/patch-2Gravatar Vincent Rischmann2024-02-071-1/+1
|\ \ | |/ |/| Update README.md
| * Update README.mdGravatar Martin Ashby2024-02-071-1/+1
|/ | | Update installation instructions for latest zig master
* Merge pull request #152 from jiacai2050/masterGravatar Vincent Rischmann2024-01-281-60/+61
|\ | | | | fix: keep up with zig master
| * pieGravatar jiacai20502024-01-281-1/+1
| |
| * refactor TestTargetGravatar jiacai20502024-01-281-35/+38
| |
| * fix: keep up with zig masterGravatar jiacai20502024-01-211-29/+27
|/
* update PR templateGravatar Vincent Rischmann2023-12-231-4/+0
|
* Merge pull request #150 from Cloudef/masterGravatar Vincent Rischmann2023-12-231-6/+6
|\ | | | | build.zig: fix invalid reference
| * build.zig: fix invalid referenceGravatar Jari Vetoniemi2023-12-231-6/+6
|/ | | | | computeTestTargets returns reference to a function local scope variable which goes out of scope once the function returns.
* Merge pull request #149 from Cloudef/masterGravatar Vincent Rischmann2023-12-192-6/+15
|\
| * Add distinct EmptyQuery errorGravatar Jari Vetoniemi2023-12-191-5/+14
| | | | | | | | | | The execMulti will otherwise fail if there's whitespace and comments. Which is common if for example using @embedFile("some-schema.sql");
| * query: fix zig fmt errorsGravatar Jari Vetoniemi2023-12-191-1/+1
| |
* | Merge pull request #148 from Cloudef/masterGravatar Vincent Rischmann2023-12-181-3/+21
|\| | | | | Improvements to ParsedQuery
| * query: parse names of bind parametersGravatar Jari Vetoniemi2023-12-181-1/+19
| | | | | | | | | | bind parameter amount should not increase if bind parameter with same name exists.
| * query: support [] and ` identifiersGravatar Jari Vetoniemi2023-12-181-2/+2
|/
* fix for latest zigGravatar Vincent Rischmann2023-12-062-3/+3
|
* Merge pull request #146 from Krvopije/masterGravatar Vincent Rischmann2023-12-022-2/+2
|\ | | | | Fix for deprecated std.mem.copy
| * Update sqlite.zigGravatar Krvopije2023-12-021-1/+1
| | | | | | std.mem.copy was deprecated
| * Update query.zigGravatar Krvopije2023-12-021-1/+1
|/ | | std.mem.copy was deprecated
* fix build on non x86_64 architecturesGravatar Vincent Rischmann2023-11-291-2/+12
| | | | Closes #145
* Merge pull request #144 from vrischmann/update-latest-zigGravatar Vincent Rischmann2023-11-265-196/+677
|\ | | | | Updates
| * ci: run tests with the -Dci flagGravatar Vincent Rischmann2023-11-261-1/+1
| |
| * ci: use checkout@v4Gravatar Vincent Rischmann2023-11-261-1/+1
| |
| * build: rework how we choose the test targetsGravatar Vincent Rischmann2023-11-261-10/+76
| |
| * c: create_filename now returns a `const char*`Gravatar Vincent Rischmann2023-11-261-1/+1
| |
| * run 'preprocess-files' to update the C headersGravatar Vincent Rischmann2023-11-262-183/+598
|/
* Merge branch 'fix-latest-zig'Gravatar Vincent Rischmann2023-11-234-35/+98
|\
| * use @hasFieldGravatar Vincent Rischmann2023-11-231-3/+3
| |
| * add the fasFn helperGravatar Vincent Rischmann2023-11-233-11/+27
| |
| * add the isZigString helperGravatar Vincent Rischmann2023-11-231-6/+38
| |
| * use our helper to check a typ has a specific declarationGravatar Vincent Rischmann2023-11-231-10/+19
| |
| * rewrite a helper to check if a type is a structGravatar Vincent Rischmann2023-11-231-5/+11
| | | | | | | | std.meta.trait doesn't exist anymore.
| * fix preprocess_filesGravatar Vincent Rischmann2023-11-231-2/+2
|/
* Merge pull request #143 from edyu/masterGravatar Vincent Rischmann2023-11-226-2378/+4324
|\ | | | | Update to sqlite 3.44.0
| * Merged from upstreamGravatar Ed Yu2023-11-211-2/+2
| |\ | |/ |/|
* | Update vtab.zigGravatar Krvopije2023-11-211-9/+9
| |
* | Update query.zigGravatar Krvopije2023-11-211-2/+2
| |
* | Update test.zigGravatar Krvopije2023-11-211-1/+1
| |