sphinxql
Version:
SphinxQL query builder for Node.JS. Supports Sphinx search(2.x and 3.x) and Manticore search
13 lines • 461 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var GroupByExprStatement = (function () {
function GroupByExprStatement(columnExprs) {
this.columnExprs = columnExprs;
}
GroupByExprStatement.prototype.build = function () {
return this.columnExprs.join(', ');
};
return GroupByExprStatement;
}());
exports.default = GroupByExprStatement;
//# sourceMappingURL=GroupByExprStatement.js.map