UNION_ALL function

Express UNION_ALL(
  1. Express left,
  2. Express right
)

Implementation

Express UNION_ALL(Express left, Express right) {
  Express e = Express("");
  e << left << "UNION ALL" << right;
  return e;
}