processSqlQuery method

void processSqlQuery(
  1. SqlQuery node
)

Implementation

void processSqlQuery(SqlQuery node) {
  get<SqlQuery>()?.call(node);
  if (node.with_ != null) processWith(node.with_!);
  processSetExpr(node.body);
  processListOrderByExpr(node.orderBy);
  if (node.limit != null) processExpr(node.limit!);
  if (node.offset != null) processOffset(node.offset!);
  if (node.fetch != null) processFetch(node.fetch!);
  processListLockClause(node.locks);
}