From 876a85fbc566d0062bd04c8ce55be30773387707 Mon Sep 17 00:00:00 2001 From: sueloverso Date: Thu, 15 Dec 2016 14:40:09 -0500 Subject: Fix data source examples to include alter. (#3200) --- ext/datasources/helium/helium.c | 1 + ext/test/kvs_bdb/kvs_bdb.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ext/datasources/helium/helium.c b/ext/datasources/helium/helium.c index dff86bd73ac..c584141b00d 100644 --- a/ext/datasources/helium/helium.c +++ b/ext/datasources/helium/helium.c @@ -3329,6 +3329,7 @@ wiredtiger_extension_init(WT_CONNECTION *connection, WT_CONFIG_ARG *config) * compile-time should the structure change underneath us. */ static const WT_DATA_SOURCE wtds = { + NULL, /* No session.alter */ helium_session_create, /* session.create */ NULL, /* No session.compaction */ helium_session_drop, /* session.drop */ diff --git a/ext/test/kvs_bdb/kvs_bdb.c b/ext/test/kvs_bdb/kvs_bdb.c index 866cd0663ce..0791b077750 100644 --- a/ext/test/kvs_bdb/kvs_bdb.c +++ b/ext/test/kvs_bdb/kvs_bdb.c @@ -1016,9 +1016,10 @@ wiredtiger_extension_init(WT_CONNECTION *connection, WT_CONFIG_ARG *config) { /* * List of the WT_DATA_SOURCE methods -- it's static so it breaks at - * compile-time should the structure changes underneath us. + * compile-time should the structure change underneath us. */ static WT_DATA_SOURCE wtds = { + NULL, /* No session.alter */ kvs_session_create, /* session.create */ NULL, /* No session.compaction */ kvs_session_drop, /* session.drop */ -- cgit v1.2.1