diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2015-06-20 00:22:50 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2015-06-20 10:56:02 -0400 |
commit | 9c2ed42daa8fbbef4a919c21ec564e2db55e8d60 (patch) | |
tree | 3814f79c10d7b490948d8cb7b112ac1dd41ceff1 /src/mongo/db/index_names.h | |
parent | 01965cf52bce6976637ecb8f4a622aeb05ab256a (diff) | |
download | mongo-9c2ed42daa8fbbef4a919c21ec564e2db55e8d60.tar.gz |
SERVER-18579: Clang-Format - reformat code, no comment reflow
Diffstat (limited to 'src/mongo/db/index_names.h')
-rw-r--r-- | src/mongo/db/index_names.h | 100 |
1 files changed, 50 insertions, 50 deletions
diff --git a/src/mongo/db/index_names.h b/src/mongo/db/index_names.h index 817fce2dcf6..037029c661d 100644 --- a/src/mongo/db/index_names.h +++ b/src/mongo/db/index_names.h @@ -32,63 +32,63 @@ namespace mongo { - class BSONObj; +class BSONObj; + +/** + * We need to know what 'type' an index is in order to plan correctly. We can't entirely rely + * on the key pattern to tell us what kind of index we have. + * + * An example of the Bad Thing That We Must Avoid: + * 1. Create a 2dsphere index in 2.4, insert some docs. + * 2. Downgrade to 2.2. Insert some more docs into the collection w/the 2dsphere + * index. 2.2 treats the index as a normal btree index and creates keys accordingly. + * 3. Using the 2dsphere index in 2.4 gives wrong results or assert-fails or crashes as + * the data isn't what we expect. + */ +enum IndexType { + INDEX_BTREE, + INDEX_2D, + INDEX_HAYSTACK, + INDEX_2DSPHERE, + INDEX_TEXT, + INDEX_HASHED, +}; + +/** + * We use the std::string representation of index names all over the place, so we declare them all + * once here. + */ +class IndexNames { +public: + static const std::string GEO_2D; + static const std::string GEO_HAYSTACK; + static const std::string GEO_2DSPHERE; + static const std::string TEXT; + static const std::string HASHED; + static const std::string BTREE; /** - * We need to know what 'type' an index is in order to plan correctly. We can't entirely rely - * on the key pattern to tell us what kind of index we have. - * - * An example of the Bad Thing That We Must Avoid: - * 1. Create a 2dsphere index in 2.4, insert some docs. - * 2. Downgrade to 2.2. Insert some more docs into the collection w/the 2dsphere - * index. 2.2 treats the index as a normal btree index and creates keys accordingly. - * 3. Using the 2dsphere index in 2.4 gives wrong results or assert-fails or crashes as - * the data isn't what we expect. + * True if is a regular (non-plugin) index or uses a plugin that existed before 2.4. + * These plugins are grandfathered in and allowed to exist in DBs where + * DataFileVersion::is24IndexClean() returns false. */ - enum IndexType { - INDEX_BTREE, - INDEX_2D, - INDEX_HAYSTACK, - INDEX_2DSPHERE, - INDEX_TEXT, - INDEX_HASHED, - }; + static bool existedBefore24(const std::string& name); /** - * We use the std::string representation of index names all over the place, so we declare them all - * once here. + * Return the first std::string value in the provided object. For an index key pattern, + * a field with a non-string value indicates a "special" (not straight Btree) index. */ - class IndexNames { - public: - static const std::string GEO_2D; - static const std::string GEO_HAYSTACK; - static const std::string GEO_2DSPHERE; - static const std::string TEXT; - static const std::string HASHED; - static const std::string BTREE; - - /** - * True if is a regular (non-plugin) index or uses a plugin that existed before 2.4. - * These plugins are grandfathered in and allowed to exist in DBs where - * DataFileVersion::is24IndexClean() returns false. - */ - static bool existedBefore24(const std::string& name); + static std::string findPluginName(const BSONObj& keyPattern); - /** - * Return the first std::string value in the provided object. For an index key pattern, - * a field with a non-string value indicates a "special" (not straight Btree) index. - */ - static std::string findPluginName(const BSONObj& keyPattern); - - /** - * Is the provided access method name one we recognize? - */ - static bool isKnownName(const std::string& name); + /** + * Is the provided access method name one we recognize? + */ + static bool isKnownName(const std::string& name); - /** - * Convert an index name to an IndexType. - */ - static IndexType nameToType(const std::string& accessMethod); - }; + /** + * Convert an index name to an IndexType. + */ + static IndexType nameToType(const std::string& accessMethod); +}; } // namespace mongo |