summaryrefslogtreecommitdiff
path: root/src/schema/schema_stat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/schema/schema_stat.c')
-rw-r--r--src/schema/schema_stat.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/schema/schema_stat.c b/src/schema/schema_stat.c
index dea797f823d..df8e23eb604 100644
--- a/src/schema/schema_stat.c
+++ b/src/schema/schema_stat.c
@@ -20,7 +20,7 @@ __wt_curstat_colgroup_init(WT_SESSION_IMPL *session,
WT_DECL_ITEM(buf);
WT_DECL_RET;
- WT_RET(__wt_schema_get_colgroup(session, uri, 0, NULL, &colgroup));
+ WT_RET(__wt_schema_get_colgroup(session, uri, false, NULL, &colgroup));
WT_RET(__wt_scr_alloc(session, 0, &buf));
WT_ERR(__wt_buf_fmt(session, buf, "statistics:%s", colgroup->source));
@@ -42,7 +42,7 @@ __wt_curstat_index_init(WT_SESSION_IMPL *session,
WT_DECL_RET;
WT_INDEX *idx;
- WT_RET(__wt_schema_get_index(session, uri, 0, NULL, &idx));
+ WT_RET(__wt_schema_get_index(session, uri, false, NULL, &idx));
WT_RET(__wt_scr_alloc(session, 0, &buf));
WT_ERR(__wt_buf_fmt(session, buf, "statistics:%s", idx->source));
@@ -69,7 +69,8 @@ __wt_curstat_table_init(WT_SESSION_IMPL *session,
const char *name;
name = uri + strlen("table:");
- WT_RET(__wt_schema_get_table(session, name, strlen(name), 0, &table));
+ WT_RET(__wt_schema_get_table(
+ session, name, strlen(name), false, &table));
WT_ERR(__wt_scr_alloc(session, 0, &buf));