Ejemplo n.º 1
0
 @Override
 public void visit(WithItem withItem) throws Exception {
   // TODO: Redo this later. What's withItem list.
   // Add with name here.
   if (withItem.getName() != null) {
     this.withTableNameList.add(withItem.getName());
   }
   withItem.getSelectBody().accept(this);
   if (withItem.getWithItemList() != null) {
     for (SelectItem selectItem : withItem.getWithItemList()) {
       selectItem.accept(this);
     }
   }
 }