mdbx-test: fix minor typos.

Change-Id: I4889a0e698bdfdda7eed257a5cd29e8b8089d102
This commit is contained in:
Leonid Yuriev 2018-08-12 21:15:23 +03:00
parent 26c4b673c4
commit c43b7d1aba
3 changed files with 2 additions and 4 deletions

View File

@ -7754,7 +7754,7 @@ int mdbx_cursor_put(MDBX_cursor *mc, MDBX_val *key, MDBX_val *data,
offset *= 4; /* space for 4 more */ offset *= 4; /* space for 4 more */
break; break;
} }
/* FALLTHRU: Big enough MDBX_DUPFIXaED sub-page */ /* FALLTHRU: Big enough MDBX_DUPFIXED sub-page */
__fallthrough; __fallthrough;
case MDBX_CURRENT | MDBX_NODUPDATA: case MDBX_CURRENT | MDBX_NODUPDATA:
case MDBX_CURRENT: case MDBX_CURRENT:

View File

@ -156,8 +156,6 @@ bool testcase_hill::run() {
a_serial); a_serial);
generate_pair(a_serial, a_key, a_data_0, 0); generate_pair(a_serial, a_key, a_data_0, 0);
generate_pair(a_serial, a_key, a_data_1, age_shift); generate_pair(a_serial, a_key, a_data_1, age_shift);
if (a_serial == 808)
log_trace("!!!");
int rc = mdbx_replace(txn_guard.get(), dbi, &a_key->value, &a_data_1->value, int rc = mdbx_replace(txn_guard.get(), dbi, &a_key->value, &a_data_1->value,
&a_data_0->value, update_flags); &a_data_0->value, update_flags);
if (unlikely(rc != MDBX_SUCCESS)) if (unlikely(rc != MDBX_SUCCESS))

View File

@ -93,7 +93,7 @@ bool hex2data(const char *hex_begin, const char *hex_end, void *ptr,
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
/* TODO: replace my 'libmera' fomr t1ha. */ /* TODO: replace my 'libmera' from t1ha. */
uint64_t entropy_ticks(void) { uint64_t entropy_ticks(void) {
#if defined(EMSCRIPTEN) #if defined(EMSCRIPTEN)
return (uint64_t)emscripten_get_now(); return (uint64_t)emscripten_get_now();