mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
renameCollection command
This commit is contained in:
parent
a39590a895
commit
f222e44e1a
19
jstests/rename2.js
Normal file
19
jstests/rename2.js
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
|
||||||
|
|
||||||
|
a = db.rename2a;
|
||||||
|
b = db.rename2b;
|
||||||
|
|
||||||
|
a.drop();
|
||||||
|
b.drop();
|
||||||
|
|
||||||
|
a.save( { x : 1 } )
|
||||||
|
a.save( { x : 2 } )
|
||||||
|
a.save( { x : 3 } )
|
||||||
|
|
||||||
|
assert.eq( 3 , a.count() , "A" )
|
||||||
|
assert.eq( 0 , b.count() , "B" )
|
||||||
|
|
||||||
|
assert( a.renameCollection( "rename2b" ) , "the command" );
|
||||||
|
|
||||||
|
assert.eq( 0 , a.count() , "C" )
|
||||||
|
assert.eq( 3 , b.count() , "D" )
|
@ -294,6 +294,10 @@ DBCollection.prototype.drop = function(){
|
|||||||
return this._db.runCommand( { drop: this.getName() } );
|
return this._db.runCommand( { drop: this.getName() } );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DBCollection.prototype.renameCollection = function( newName ){
|
||||||
|
return this._db._adminCommand( { renameCollection : this._fullName , to : this._db._name + "." + newName } ).ok;
|
||||||
|
}
|
||||||
|
|
||||||
DBCollection.prototype.validate = function() {
|
DBCollection.prototype.validate = function() {
|
||||||
var res = this._db.runCommand( { validate: this.getName() } );
|
var res = this._db.runCommand( { validate: this.getName() } );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user