summaryrefslogtreecommitdiff
path: root/src/utilities/util_truncate.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/utilities/util_truncate.c')
-rw-r--r--src/utilities/util_truncate.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/utilities/util_truncate.c b/src/utilities/util_truncate.c
new file mode 100644
index 00000000000..35de02345c8
--- /dev/null
+++ b/src/utilities/util_truncate.c
@@ -0,0 +1,52 @@
+/*-
+ * Copyright (c) 2014-2016 MongoDB, Inc.
+ * Copyright (c) 2008-2014 WiredTiger, Inc.
+ * All rights reserved.
+ *
+ * See the file LICENSE for redistribution information.
+ */
+
+#include "util.h"
+
+static int usage(void);
+
+int
+util_truncate(WT_SESSION *session, int argc, char *argv[])
+{
+ WT_DECL_RET;
+ int ch;
+ char *uri;
+
+ uri = NULL;
+ while ((ch = __wt_getopt(progname, argc, argv, "")) != EOF)
+ switch (ch) {
+ case '?':
+ default:
+ return (usage());
+ }
+
+ argc -= __wt_optind;
+ argv += __wt_optind;
+
+ /* The remaining argument is the uri. */
+ if (argc != 1)
+ return (usage());
+ if ((uri = util_uri(session, *argv, "table")) == NULL)
+ return (1);
+
+ if ((ret = session->truncate(session, uri, NULL, NULL, NULL)) != 0)
+ (void)util_err(session, ret, "session.truncate: %s", uri);
+
+ free(uri);
+ return (ret);
+}
+
+static int
+usage(void)
+{
+ (void)fprintf(stderr,
+ "usage: %s %s "
+ "truncate uri\n",
+ progname, usage_prefix);
+ return (1);
+}