feat(lsm): probably working trie insert

This commit is contained in:
Jef Roosens 2023-10-14 14:53:42 +02:00
parent ef8129b8eb
commit 682f422e3c
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
2 changed files with 17 additions and 10 deletions

View file

@ -13,7 +13,7 @@ void test_fuzzy() {
for (int len = 1; len < 25; len += 5) {
for (int count = 10; count <= 500; count += 10) {
for (int i = 0; i < 1; i++) {
for (int i = 0; i < 10; i++) {
counter++;
config.seed = rand();
@ -30,6 +30,6 @@ void test_fuzzy() {
}
TEST_LIST = {
/* { "trie fuzzy", test_fuzzy }, */
{ "trie fuzzy", test_fuzzy },
{ NULL, NULL}
};