Exemplo n.º 1
0
 /**
  * @deprecated
  * @see #copySubquery
  */
 @Deprecated
 public FromSubquery getSubquery(Visitor binder) throws StandardException {
   subquery = (FromSubquery) subquery.accept(binder);
   return copySubquery(subquery.getParserContext());
 }
Exemplo n.º 2
0
 /** Get the result columns for this view. */
 public ResultColumnList getResultColumns() {
   ResultColumnList rcl = subquery.getResultColumns();
   if (rcl == null) rcl = subquery.getSubquery().getResultColumns();
   return rcl;
 }