summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/support/stat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/support/stat.c')
-rw-r--r--src/third_party/wiredtiger/src/support/stat.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/third_party/wiredtiger/src/support/stat.c b/src/third_party/wiredtiger/src/support/stat.c
index 6b5e5fd9bff..5b5d6101238 100644
--- a/src/third_party/wiredtiger/src/support/stat.c
+++ b/src/third_party/wiredtiger/src/support/stat.c
@@ -194,8 +194,8 @@ static const char *const __stats_dsrc_desc[] = {
"cursor: cursor modify calls that return an error",
"cursor: cursor next calls that return an error",
"cursor: cursor next calls that skip due to a globally visible history store tombstone",
+ "cursor: cursor next calls that skip greater than 1 and fewer than 100 entries",
"cursor: cursor next calls that skip greater than or equal to 100 entries",
- "cursor: cursor next calls that skip less than 100 entries",
"cursor: cursor next random calls that return an error",
"cursor: cursor prev calls that return an error",
"cursor: cursor prev calls that skip due to a globally visible history store tombstone",
@@ -500,8 +500,8 @@ __wt_stat_dsrc_clear_single(WT_DSRC_STATS *stats)
stats->cursor_modify_error = 0;
stats->cursor_next_error = 0;
stats->cursor_next_hs_tombstone = 0;
- stats->cursor_next_skip_ge_100 = 0;
stats->cursor_next_skip_lt_100 = 0;
+ stats->cursor_next_skip_ge_100 = 0;
stats->cursor_next_random_error = 0;
stats->cursor_prev_error = 0;
stats->cursor_prev_hs_tombstone = 0;
@@ -796,8 +796,8 @@ __wt_stat_dsrc_aggregate_single(WT_DSRC_STATS *from, WT_DSRC_STATS *to)
to->cursor_modify_error += from->cursor_modify_error;
to->cursor_next_error += from->cursor_next_error;
to->cursor_next_hs_tombstone += from->cursor_next_hs_tombstone;
- to->cursor_next_skip_ge_100 += from->cursor_next_skip_ge_100;
to->cursor_next_skip_lt_100 += from->cursor_next_skip_lt_100;
+ to->cursor_next_skip_ge_100 += from->cursor_next_skip_ge_100;
to->cursor_next_random_error += from->cursor_next_random_error;
to->cursor_prev_error += from->cursor_prev_error;
to->cursor_prev_hs_tombstone += from->cursor_prev_hs_tombstone;
@@ -1096,8 +1096,8 @@ __wt_stat_dsrc_aggregate(WT_DSRC_STATS **from, WT_DSRC_STATS *to)
to->cursor_modify_error += WT_STAT_READ(from, cursor_modify_error);
to->cursor_next_error += WT_STAT_READ(from, cursor_next_error);
to->cursor_next_hs_tombstone += WT_STAT_READ(from, cursor_next_hs_tombstone);
- to->cursor_next_skip_ge_100 += WT_STAT_READ(from, cursor_next_skip_ge_100);
to->cursor_next_skip_lt_100 += WT_STAT_READ(from, cursor_next_skip_lt_100);
+ to->cursor_next_skip_ge_100 += WT_STAT_READ(from, cursor_next_skip_ge_100);
to->cursor_next_random_error += WT_STAT_READ(from, cursor_next_random_error);
to->cursor_prev_error += WT_STAT_READ(from, cursor_prev_error);
to->cursor_prev_hs_tombstone += WT_STAT_READ(from, cursor_prev_hs_tombstone);
@@ -1462,8 +1462,8 @@ static const char *const __stats_connection_desc[] = {
"cursor: cursor next calls",
"cursor: cursor next calls that return an error",
"cursor: cursor next calls that skip due to a globally visible history store tombstone",
+ "cursor: cursor next calls that skip greater than 1 and fewer than 100 entries",
"cursor: cursor next calls that skip greater than or equal to 100 entries",
- "cursor: cursor next calls that skip less than 100 entries",
"cursor: cursor next random calls that return an error",
"cursor: cursor operation restarted",
"cursor: cursor prev calls",
@@ -2062,8 +2062,8 @@ __wt_stat_connection_clear_single(WT_CONNECTION_STATS *stats)
stats->cursor_next = 0;
stats->cursor_next_error = 0;
stats->cursor_next_hs_tombstone = 0;
- stats->cursor_next_skip_ge_100 = 0;
stats->cursor_next_skip_lt_100 = 0;
+ stats->cursor_next_skip_ge_100 = 0;
stats->cursor_next_random_error = 0;
stats->cursor_restart = 0;
stats->cursor_prev = 0;
@@ -2667,8 +2667,8 @@ __wt_stat_connection_aggregate(WT_CONNECTION_STATS **from, WT_CONNECTION_STATS *
to->cursor_next += WT_STAT_READ(from, cursor_next);
to->cursor_next_error += WT_STAT_READ(from, cursor_next_error);
to->cursor_next_hs_tombstone += WT_STAT_READ(from, cursor_next_hs_tombstone);
- to->cursor_next_skip_ge_100 += WT_STAT_READ(from, cursor_next_skip_ge_100);
to->cursor_next_skip_lt_100 += WT_STAT_READ(from, cursor_next_skip_lt_100);
+ to->cursor_next_skip_ge_100 += WT_STAT_READ(from, cursor_next_skip_ge_100);
to->cursor_next_random_error += WT_STAT_READ(from, cursor_next_random_error);
to->cursor_restart += WT_STAT_READ(from, cursor_restart);
to->cursor_prev += WT_STAT_READ(from, cursor_prev);