diff options
author | Keith Bostic <keith@wiredtiger.com> | 2015-09-24 16:55:48 -0400 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2015-09-24 16:55:48 -0400 |
commit | 35a4ba4bd783ccdfc9b0e1bed3d9f3417327e0ac (patch) | |
tree | 7d2681c126dc328ee12000f88b22556917f7835d /src/schema/schema_worker.c | |
parent | 9aaff8097a7e5f362bcb830fe4c1069ba2cce9ee (diff) | |
download | mongo-35a4ba4bd783ccdfc9b0e1bed3d9f3417327e0ac.tar.gz |
Boolean conversion pass over schema.
Diffstat (limited to 'src/schema/schema_worker.c')
-rw-r--r-- | src/schema/schema_worker.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/schema/schema_worker.c b/src/schema/schema_worker.c index 5a10a78263a..55516c52e90 100644 --- a/src/schema/schema_worker.c +++ b/src/schema/schema_worker.c @@ -71,12 +71,12 @@ __wt_schema_worker(WT_SESSION_IMPL *session, } } else if (WT_PREFIX_MATCH(uri, "colgroup:")) { WT_ERR(__wt_schema_get_colgroup( - session, uri, 0, NULL, &colgroup)); + session, uri, false, NULL, &colgroup)); WT_ERR(__wt_schema_worker(session, colgroup->source, file_func, name_func, cfg, open_flags)); } else if (WT_PREFIX_SKIP(tablename, "index:")) { idx = NULL; - WT_ERR(__wt_schema_get_index(session, uri, 0, NULL, &idx)); + WT_ERR(__wt_schema_get_index(session, uri, false, NULL, &idx)); WT_ERR(__wt_schema_worker(session, idx->source, file_func, name_func, cfg, open_flags)); } else if (WT_PREFIX_MATCH(uri, "lsm:")) { @@ -89,7 +89,7 @@ __wt_schema_worker(WT_SESSION_IMPL *session, uri, file_func, name_func, cfg, open_flags)); } else if (WT_PREFIX_SKIP(tablename, "table:")) { WT_ERR(__wt_schema_get_table(session, - tablename, strlen(tablename), 0, &table)); + tablename, strlen(tablename), false, &table)); WT_ASSERT(session, session->dhandle == NULL); /* |