nostrdb

an unfairly fast embedded nostr database backed by lmdb
git clone git://jb55.com/nostrdb
Log | Files | Refs | Submodules | README | LICENSE

commit d07ad1c1fafc795842b47e32a15f793a39a9deee
parent f023a210c8a45707a34834e0021dea1808c6b645
Author: William Casarin <jb55@jb55.com>
Date:   Sat, 23 Dec 2023 13:19:12 -0800

test: disable migrate for now

Diffstat:
MMakefile | 6+++---
Mtest.c | 2+-
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile @@ -32,10 +32,10 @@ ndb: ndb.c $(DEPS) bindings: bindings-swift bindings-rust bindings-c -check: test $(CHECKDATA) +check: test + rm -rf testdata/db/*.mdb + ./test rm -rf testdata/db/*.mdb - ./test || rm -rf testdata/db/v0 - rm -rf testdata/db/v0 clean: rm -rf test bench bench-ingest bench-ingest-many diff --git a/test.c b/test.c @@ -968,7 +968,7 @@ static void test_fulltext() int main(int argc, const char *argv[]) { test_filters(); - test_migrate(); + //test_migrate(); test_fetched_at(); test_profile_updates(); test_reaction_counter();