美文网首页
Apache Calcite OperandTypeChecke

Apache Calcite OperandTypeChecke

作者: nobigogle | 来源:发表于2022-04-11 21:25 被阅读0次

    作用

    Used to validate operand types,例如Add、Multiply等

    特殊规则

    COMPARABLE_UNORDERED_COMPARABLE_UNORDERED

    This is for argument types that can be compared (i.e. you can say whether x = y) but unordered (you can't say whether x > y or x < y).

    COMPARABLE_ORDERED_COMPARABLE_ORDERED

    This is for argument types that can be compared (i.e. you can say whether x = y) and can be ordered (i.e. you can say whether x > y or x < y).

    相关文章

      网友评论

          本文标题:Apache Calcite OperandTypeChecke

          本文链接:https://www.haomeiwen.com/subject/ngmmrrtx.html