summaryrefslogtreecommitdiff
path: root/examples/c/ex_all.c
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@mongodb.com>2016-02-18 14:00:00 +1100
committerMichael Cahill <michael.cahill@mongodb.com>2016-02-18 14:00:00 +1100
commit5cdd3e320cb19cd54111c2572a3d6e33d3009ad4 (patch)
treeaa11f6aa045af0ab4b06b1e4ac59782806a969e3 /examples/c/ex_all.c
parent5e3a56f0abb433a23e0b8cb8f9a0c86c2d6ad80f (diff)
parent563b7823f74dcd219740945aa7067de0927ee9df (diff)
downloadmongodb-3.2.4.tar.gz
Merge branch 'mongodb-3.2.3' into mongodb-3.2mongodb-3.2.4
Diffstat (limited to 'examples/c/ex_all.c')
-rw-r--r--examples/c/ex_all.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/examples/c/ex_all.c b/examples/c/ex_all.c
index f7ee857a7c7..418c99ad6a3 100644
--- a/examples/c/ex_all.c
+++ b/examples/c/ex_all.c
@@ -591,13 +591,6 @@ session_ops(WT_SESSION *session)
* the code snippets, use #ifdef's to avoid running it.
*/
#ifdef MIGHT_NOT_RUN
- /*! [Create a bzip2 compressed table] */
- ret = session->create(session,
- "table:mytable",
- "block_compressor=bzip2,key_format=S,value_format=S");
- /*! [Create a bzip2 compressed table] */
- ret = session->drop(session, "table:mytable", NULL);
-
/*! [Create a lz4 compressed table] */
ret = session->create(session,
"table:mytable",
@@ -1084,14 +1077,6 @@ main(void)
* be installed, causing the open to fail. The documentation requires
* the code snippets, use #ifdef's to avoid running it.
*/
- /*! [Configure bzip2 extension] */
- ret = wiredtiger_open(home, NULL,
- "create,"
- "extensions=[/usr/local/lib/libwiredtiger_bzip2.so]", &conn);
- /*! [Configure bzip2 extension] */
- if (ret == 0)
- (void)conn->close(conn, NULL);
-
/*! [Configure lz4 extension] */
ret = wiredtiger_open(home, NULL,
"create,"