summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2013-04-19 09:18:52 -0400
committerKeith Bostic <keith@wiredtiger.com>2013-04-19 09:18:52 -0400
commita63ef499b021d73619f7abde8149e96f8aa02ee7 (patch)
tree06e7d56f4825a633227983813550fa194a5b465c /test
parent2cd7fe619dff789eec2eca7a74d020327a378c66 (diff)
downloadmongo-a63ef499b021d73619f7abde8149e96f8aa02ee7.tar.gz
Berkeley DB KVS implementation can support fixed-sized column-store
(bitfields) now.
Diffstat (limited to 'test')
-rw-r--r--test/format/config.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/test/format/config.c b/test/format/config.c
index 6955251d537..012aa95b836 100644
--- a/test/format/config.c
+++ b/test/format/config.c
@@ -69,8 +69,7 @@ config_setup(void)
if (!config_find_is_perm("file_type", strlen("file_type")))
switch (MMRAND(0, 2)) {
case 0:
- if (!DATASOURCE("lsm") &&
- !DATASOURCE("kvsbdb") && !DATASOURCE("kvsstec")) {
+ if (!DATASOURCE("lsm")) {
config_single("file_type=fix", 0);
break;
}
@@ -91,12 +90,6 @@ config_setup(void)
* If data_source and file_type were both "permanent", we may still
* have a mismatch.
*/
- if (DATASOURCE("kvsbdb") && DATASOURCE("kvsstec") && g.type == FIX) {
- fprintf(stderr,
- "%s: kvs data_source not compatible with fix file_type\n",
- g.progname);
- exit(EXIT_FAILURE);
- }
if (DATASOURCE("lsm") && g.type != ROW) {
fprintf(stderr,
"%s: lsm data_source is only compatible with row file_type\n",