Exemplo n.º 1
0
void PrinterVisitor::visitOrderBySpec( PlanIterator const &i ) {
  if (!hasToVisit(&i))
    return;

  thePrinter.startBeginVisit( "OrderBySpec", ++theId );
  thePrinter.endBeginVisit( theId );
  i.accept( *this );
  thePrinter.startEndVisit();
  thePrinter.endEndVisit();
}
Exemplo n.º 2
0
void PrinterVisitor::visitUDFunctionBody( PlanIterator const &i ) {
  if (!hasToVisit(&i))
    return;

  thePrinter.startBeginVisit( "UDFunctionBody", ++theId );
  thePrinter.endBeginVisit( theId );
  i.accept( *this );
  thePrinter.startEndVisit();
  thePrinter.endEndVisit();
}
Exemplo n.º 3
0
void PrinterVisitor::visitFlworWhereClause( PlanIterator const &i ) {
  if (!hasToVisit(&i))
    return;

  thePrinter.startBeginVisit( "WhereClause", ++theId );
  thePrinter.endBeginVisit( theId );
  i.accept( *this );
  thePrinter.startEndVisit();
  thePrinter.endEndVisit();
}
Exemplo n.º 4
0
void PrinterVisitor::beginVisitOrderBySpec( PlanIterator const &i ) {
  thePrinter.startBeginVisit( "OrderBySpec", ++theId );
  thePrinter.endBeginVisit( theId );
  i.accept( *this );
}
Exemplo n.º 5
0
void PrinterVisitor::beginVisitFlworWhereClause( PlanIterator const &i ) {
  thePrinter.startBeginVisit( "WhereClause", ++theId );
  thePrinter.endBeginVisit( theId );
  i.accept( *this );
}