sphinxql
Version:
SphinxQL query builder for Node.JS. Supports Sphinx search(2.x and 3.x) and Manticore search
18 lines • 718 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var BaseStatement_1 = require("./BaseStatement");
var FlushRTIndexStatement = (function (_super) {
tslib_1.__extends(FlushRTIndexStatement, _super);
function FlushRTIndexStatement(connection, index) {
var _this = _super.call(this, connection) || this;
_this.index = index;
return _this;
}
FlushRTIndexStatement.prototype.generate = function () {
return "FLUSH RTINDEX " + this.index;
};
return FlushRTIndexStatement;
}(BaseStatement_1.default));
exports.default = FlushRTIndexStatement;
//# sourceMappingURL=FlushRTIndexStatement.js.map