summaryrefslogtreecommitdiff
path: root/db/rec.h
diff options
context:
space:
mode:
authorDwight <dmerriman@gmail.com>2009-03-17 17:02:21 -0400
committerDwight <dmerriman@gmail.com>2009-03-17 17:02:21 -0400
commit7165d7369e6b6e61f1c495ebcfdc5d92a5f2af13 (patch)
tree451aa73efd0ceef442ab73492216d1e49819e530 /db/rec.h
parent5cd0f0e376ad4645f0741427cf50306ae80374ff (diff)
downloadmongo-7165d7369e6b6e61f1c495ebcfdc5d92a5f2af13.tar.gz
implemented dropIndexes for alt rec store
Diffstat (limited to 'db/rec.h')
-rw-r--r--db/rec.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/db/rec.h b/db/rec.h
index 48c986a35cd..d43e6dbbfc4 100644
--- a/db/rec.h
+++ b/db/rec.h
@@ -30,6 +30,10 @@ public:
}
static void modified(DiskLoc d) { }
+
+ static void drop(const char *ns) {
+ dropNS(ns);
+ }
};
/* An in memory RecStoreInterface implementation ----------------------------
@@ -63,6 +67,10 @@ public:
}
static void modified(DiskLoc d) { }
+
+ static void drop(const char *ns) {
+ log() << "warning: drop() not yet implemented for InMem_RecStore" << endl;
+ }
};
/* Glue btree to RecStoreInterface: ---------------------------- */