This commit is contained in:
Hongze Cheng 2022-03-16 08:00:30 +00:00
parent f3200438d2
commit 03ff33095d
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 <= 86; i++) {
for (int i = 1; i <= 92; i++) {
sprintf(key, "key%d", i);
sprintf(key, "value%d", i);
ret = tdbDbInsert(pDb, key, strlen(key), val, strlen(val));