summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/btree/bt_upgrade.c
blob: de9a6bf75743d097c9775f774a2763de1445f9ff (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-present 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);
}