mirror of
https://github.com/asg017/sqlite-vec.git
synced 2026-04-25 00:36:56 +02:00
error handling on vec0 INSERT operations, introduce evidence-of
This commit is contained in:
parent
f9e1bf2f34
commit
4196f16b27
3 changed files with 605 additions and 115 deletions
10
Makefile
10
Makefile
|
|
@ -164,17 +164,21 @@ lint:
|
|||
progress:
|
||||
deno run --allow-read=sqlite-vec.c scripts/progress.ts
|
||||
|
||||
|
||||
evidence-of:
|
||||
@echo "EVIDENCE-OF: V$(shell printf "%05d" $$((RANDOM % 100000)))_$(shell printf "%05d" $$((RANDOM % 100000)))"
|
||||
|
||||
test:
|
||||
sqlite3 :memory: '.read test.sql'
|
||||
|
||||
.PHONY: version loadable static test clean gh-release
|
||||
.PHONY: version loadable static test clean gh-release evidence-of
|
||||
|
||||
publish-release:
|
||||
./scripts/publish-release.sh
|
||||
|
||||
|
||||
# -k test_vec0_update
|
||||
test-loadable: loadable
|
||||
$(PYTHON) -m pytest -vv -s tests/test-loadable.py
|
||||
$(PYTHON) -m pytest -vv -s -x tests/test-loadable.py
|
||||
|
||||
test-loadable-snapshot-update: loadable
|
||||
$(PYTHON) -m pytest -vv tests/test-loadable.py --snapshot-update
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue