Example #1
0
 /** Copies a list of nodes. */
 public static SqlNodeList copy(SqlValidatorScope scope, SqlNodeList list) {
   return (SqlNodeList) list.accept(new DeepCopier(scope));
 }