summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/index_bounds.h
diff options
context:
space:
mode:
authorDavid Storch <david.storch@10gen.com>2014-10-27 12:37:50 -0400
committerDavid Storch <david.storch@10gen.com>2014-10-27 15:14:27 -0400
commitf786bf15bd9dc5100c53c7f8a5b2080a3a8cf476 (patch)
treed1795a930dd170d0bee9eda1da74d8a01c37b30a /src/mongo/db/query/index_bounds.h
parent9c1573b696246268f7b24b62391164451233283d (diff)
downloadmongo-f786bf15bd9dc5100c53c7f8a5b2080a3a8cf476.tar.gz
SERVER-15527 change explain index bounds format from verbose string format to BSON format
Diffstat (limited to 'src/mongo/db/query/index_bounds.h')
-rw-r--r--src/mongo/db/query/index_bounds.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mongo/db/query/index_bounds.h b/src/mongo/db/query/index_bounds.h
index 514070b9db4..e99754680b9 100644
--- a/src/mongo/db/query/index_bounds.h
+++ b/src/mongo/db/query/index_bounds.h
@@ -95,16 +95,6 @@ namespace mongo {
std::string toString() const;
/**
- * Legacy BSON format for explain. The format is an array of arrays for each field.
- *
- * TODO remove this function once the new explain format is on by default.
- *
- * Ex.
- * {a: [ [1, 1], [3, 10] ], b: [ [Infinity, 10] ] }
- */
- BSONObj toLegacyBSON() const;
-
- /**
* BSON format for explain. The format is an array of strings for each field.
* Each string represents an interval. The strings use "[" and "]" if the interval
* bounds are inclusive, and "(" / ")" if exclusive.