Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This operator can be used to attach a subplan to another operator with a specific id. Typically, this can be used to attach a new query to an existing query.

Parameter

  • appendTo: The id of the operator to append to.

Example

Code Block
#QUERY
out = UNION({id="MainMerge"},..)

#QUERY
tmp = APPENDTO({appendTo="MainMerge"}, planToAppend)