This commit is contained in:
Hongze Cheng 2022-03-16 08:08:55 +00:00
parent fc63623ba3
commit 66213fe83f
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ TEST(tdb_test, simple_test) {
char key[64];
char val[64];
for (int i = 1; i <= 92; i++) {
for (int i = 1; i <= 64; i++) {
sprintf(key, "key%d", i);
sprintf(val, "value%d", i);
ret = tdbDbInsert(pDb, key, strlen(key), val, strlen(val));