Description
// assuming a collection 'foo' exists
|
db.runCommand({touch: 'foo', data: true})
|
returns
{ "data" : { "numRanges" : 1, "millis" : 0 }, "ok" : 1 }
|
but should return
{
|
"ok" : 0,
|
"errmsg" : "this storage engine does not support touch",
|
"code" : 115
|
}
|
Attachments
Issue Links
- is documented by
-
DOCS-4676 Document that WT doesn't support touch
-
- Closed
-
- is related to
-
SERVER-16114 The touch command does not work with WiredTiger storage engine
-
- Closed
-
-
SERVER-16850 Remove support for touch command for RocksDB
-
- Closed
-
- links to