plywood
Version:
A query planner and executor
44 lines (43 loc) • 2.14 kB
JavaScript
import { __extends } from "tslib";
import { Set } from '../datatypes';
import { Range } from '../datatypes/range';
import { ChainableUnaryExpression, Expression, r, } from './baseExpression';
import { LiteralExpression } from './literalExpression';
var GreaterThanExpression = (function (_super) {
__extends(GreaterThanExpression, _super);
function GreaterThanExpression(parameters) {
var _this = _super.call(this, parameters, dummyObject) || this;
_this._ensureOp('greaterThan');
_this._checkOperandTypes('NUMBER', 'TIME', 'STRING');
_this._checkExpressionTypes('NUMBER', 'TIME', 'STRING');
_this._bumpOperandExpressionToTime();
_this._checkOperandExpressionTypesAlign();
_this.type = 'BOOLEAN';
return _this;
}
GreaterThanExpression.fromJS = function (parameters) {
return new GreaterThanExpression(ChainableUnaryExpression.jsToValue(parameters));
};
GreaterThanExpression.prototype._calcChainableUnaryHelper = function (operandValue, expressionValue) {
if (operandValue === null || expressionValue === null)
return null;
return Set.crossBinaryBoolean(operandValue, expressionValue, function (a, b) { return a > b; });
};
GreaterThanExpression.prototype._getSQLChainableUnaryHelper = function (dialect, operandSQL, expressionSQL) {
return "(".concat(operandSQL, ">").concat(expressionSQL, ")");
};
GreaterThanExpression.prototype.specialSimplify = function () {
var _a = this, operand = _a.operand, expression = _a.expression;
if (expression instanceof LiteralExpression) {
return operand.overlap(r(Range.fromJS({ start: expression.value, end: null, bounds: '()' })));
}
if (operand instanceof LiteralExpression) {
return expression.overlap(r(Range.fromJS({ start: null, end: operand.value, bounds: '()' })));
}
return this;
};
GreaterThanExpression.op = 'GreaterThan';
return GreaterThanExpression;
}(ChainableUnaryExpression));
export { GreaterThanExpression };
Expression.register(GreaterThanExpression);