summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/btree/bt_upgrade.c
blob: 6b403595eccc94b319a6403b129a74e3299667de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*-
 * Copyright (c) 2014-2015 MongoDB, Inc.
 * Copyright (c) 2008-2014 WiredTiger, Inc.
 *	All rights reserved.
 *
 * See the file LICENSE for redistribution information.
 */

#include "wt_internal.h"

/*
 * __wt_upgrade --
 *	Upgrade a file.
 */
int
__wt_upgrade(WT_SESSION_IMPL *session, const char *cfg[])
{
	WT_UNUSED(cfg);

	/* There's nothing to upgrade, yet. */
	WT_RET(__wt_progress(session, NULL, 1));
	return (0);
}