summaryrefslogtreecommitdiff
path: root/src/schema/schema_open.c
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@mongodb.com>2015-09-24 14:29:56 +1000
committerMichael Cahill <michael.cahill@mongodb.com>2015-09-29 14:05:30 +1000
commit6f6281c978507312def82af8fa6dd020b9fcb1a6 (patch)
tree6a37d903ea8dbb121bc04d28b2e69a6c02f5da17 /src/schema/schema_open.c
parentcd8ae463f0830e56ec66de73de78ca81041615b2 (diff)
downloadmongo-6f6281c978507312def82af8fa6dd020b9fcb1a6.tar.gz
Merge pull request #2209 from wiredtiger/more-bool-keith
WT-2122 more boolean conversion (cherry picked from commit 91deacba5a77db31216fccfb6bffdbe81375f0b4)
Diffstat (limited to 'src/schema/schema_open.c')
-rw-r--r--src/schema/schema_open.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/schema/schema_open.c b/src/schema/schema_open.c
index 414722652a0..2b645d5c666 100644
--- a/src/schema/schema_open.c
+++ b/src/schema/schema_open.c
@@ -44,7 +44,7 @@ __wt_schema_open_colgroups(WT_SESSION_IMPL *session, WT_TABLE *table)
char *cgconfig;
u_int i;
- WT_ASSERT(session, F_ISSET(session, WT_SESSION_TABLE_LOCKED));
+ WT_ASSERT(session, F_ISSET(session, WT_SESSION_LOCKED_TABLE));
if (table->cg_complete)
return (0);
@@ -407,7 +407,7 @@ __wt_schema_open_table(WT_SESSION_IMPL *session,
table = NULL;
tablename = NULL;
- WT_ASSERT(session, F_ISSET(session, WT_SESSION_TABLE_LOCKED));
+ WT_ASSERT(session, F_ISSET(session, WT_SESSION_LOCKED_TABLE));
WT_ERR(__wt_scr_alloc(session, 0, &buf));
WT_ERR(__wt_buf_fmt(session, buf, "table:%.*s", (int)namelen, name));