7669900126
- Introduced OrderedHash because db commands require that the command key be first. - Fixed BSON (de)serialization of object ids. - Simplified @coll.drop_indexes. - Renamed some method parameters to make their type more clear (for example, "collection" became "collection_name"). - Got the index_information test working.
21 lines
418 B
Ruby
21 lines
418 B
Ruby
require 'mongo/message/message'
|
|
require 'mongo/message/opcodes'
|
|
|
|
module XGen
|
|
module Mongo
|
|
module Driver
|
|
|
|
class RemoveMessage < Message
|
|
|
|
def initialize(db_name, collection_name, sel)
|
|
super(OP_DELETE)
|
|
write_int(0)
|
|
write_string("#{db_name}.#{collection_name}")
|
|
write_int(0) # flags?
|
|
write_doc(sel)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|