summaryrefslogtreecommitdiff
path: root/src/schema/schema_plan.c
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@wiredtiger.com>2012-01-23 22:32:42 +1100
committerMichael Cahill <michael.cahill@wiredtiger.com>2012-01-23 22:32:42 +1100
commit8011d5f451da4587929bb16710e815d2c81311b0 (patch)
tree35a8c9d80f9d6b372e7f3d8204c6c83bd322f0c3 /src/schema/schema_plan.c
parent1b06bf34bbeb8a5f27e6b320c0929a7f33dc4b36 (diff)
downloadmongo-8011d5f451da4587929bb16710e815d2c81311b0.tar.gz
Merge WT_BUF into WT_ITEM.
Diffstat (limited to 'src/schema/schema_plan.c')
-rw-r--r--src/schema/schema_plan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/schema/schema_plan.c b/src/schema/schema_plan.c
index da8ac98ba38..802ec4b275d 100644
--- a/src/schema/schema_plan.c
+++ b/src/schema/schema_plan.c
@@ -125,7 +125,7 @@ __wt_table_check(WT_SESSION_IMPL *session, WT_TABLE *table)
*/
int
__wt_struct_plan(WT_SESSION_IMPL *session, WT_TABLE *table,
- const char *columns, size_t len, int value_only, WT_BUF *plan)
+ const char *columns, size_t len, int value_only, WT_ITEM *plan)
{
WT_CONFIG conf;
WT_CONFIG_ITEM k, v;
@@ -245,7 +245,7 @@ __find_column_format(WT_SESSION_IMPL *session,
int
__wt_struct_reformat(WT_SESSION_IMPL *session, WT_TABLE *table,
const char *columns, size_t len, const char *extra_cols, int value_only,
- WT_BUF *format)
+ WT_ITEM *format)
{
WT_CONFIG config;
WT_CONFIG_ITEM k, next_k, next_v;
@@ -305,7 +305,7 @@ __wt_struct_reformat(WT_SESSION_IMPL *session, WT_TABLE *table,
*/
int
__wt_struct_truncate(WT_SESSION_IMPL *session,
- const char *input_fmt, u_int ncols, WT_BUF *format)
+ const char *input_fmt, u_int ncols, WT_ITEM *format)
{
WT_PACK pack;
WT_PACK_VALUE pv;