We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d0c41d commit b250c97Copy full SHA for b250c97
src/templates/playgroundCreateIndexTemplate.ts
@@ -20,10 +20,6 @@ db.getCollection('CURRENT_COLLECTION')
20
* '$**': 1, // wildcard index on all fields and subfields in a document
21
* 'path.to.field.$**': 1 // wildcard index on a specific field and its subpaths
22
*
23
- * Columnstore index
24
- * '$**': 'columnstore', // columnstore index on multiple specific field
25
- * 'path.to.field.$**': 'columnstore', // columnstore index on one field and all the subfields
26
- *
27
* Text index
28
* fieldA: 'text',
29
* fieldB: 'text'
@@ -46,7 +42,6 @@ db.getCollection('CURRENT_COLLECTION')
46
42
* expireAfterSeconds: TTL,
47
43
* collation: {},
48
44
* wildcardProjection: {},
49
- * columnstoreProjection: {} // added in MongoDB 6.3
50
45
*/
51
}
52
);
0 commit comments