コード例 #1
0
ファイル: OLAPFilterRel.java プロジェクト: Tiroshan/Kylin
 @Override
 public boolean hasSubQuery() {
   OLAPRel olapChild = (OLAPRel) getChild();
   return olapChild.hasSubQuery();
 }
コード例 #2
0
ファイル: OLAPFilterRel.java プロジェクト: Tiroshan/Kylin
 private ColumnRowType buildColumnRowType() {
   OLAPRel olapChild = (OLAPRel) getChild();
   ColumnRowType inputColumnRowType = olapChild.getColumnRowType();
   return inputColumnRowType;
 }