本文整理了Java中org.apache.calcite.util.Util.minus()
方法的一些代码示例,展示了Util.minus()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.minus()
方法的具体详情如下:
包路径:org.apache.calcite.util.Util
类名称:Util
方法名:minus
[英]Returns a set of the elements which are in set1
but not in set2
, without modifying either.
[中]返回一组元素,这些元素在set1
中,但不在set2
中,且不进行任何修改。
代码示例来源:origin: Qihoo360/Quicksql
set = new RelSet(
nextSetId++,
Util.minus(
RelOptUtil.getVariablesSet(rel),
rel.getVariablesSet()),
代码示例来源:origin: org.apache.calcite/calcite-core
set = new RelSet(
nextSetId++,
Util.minus(
RelOptUtil.getVariablesSet(rel),
rel.getVariablesSet()),
内容来源于网络,如有侵权,请联系作者删除!