flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
30
VISUALIZACION/node_modules/mongodb/lib/operations/search_indexes/update.js
generated
vendored
Executable file
30
VISUALIZACION/node_modules/mongodb/lib/operations/search_indexes/update.js
generated
vendored
Executable file
|
|
@ -0,0 +1,30 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.UpdateSearchIndexOperation = void 0;
|
||||
const operation_1 = require("../operation");
|
||||
/** @internal */
|
||||
class UpdateSearchIndexOperation extends operation_1.AbstractCallbackOperation {
|
||||
constructor(collection, name, definition) {
|
||||
super();
|
||||
this.collection = collection;
|
||||
this.name = name;
|
||||
this.definition = definition;
|
||||
}
|
||||
executeCallback(server, session, callback) {
|
||||
const namespace = this.collection.fullNamespace;
|
||||
const command = {
|
||||
updateSearchIndex: namespace.collection,
|
||||
name: this.name,
|
||||
definition: this.definition
|
||||
};
|
||||
server.command(namespace, command, { session }, err => {
|
||||
if (err) {
|
||||
callback(err);
|
||||
return;
|
||||
}
|
||||
callback();
|
||||
});
|
||||
}
|
||||
}
|
||||
exports.UpdateSearchIndexOperation = UpdateSearchIndexOperation;
|
||||
//# sourceMappingURL=update.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue