unionAll<G extends Fields> method

Query<R, UnionFields<F>> unionAll<G extends Fields>(
  1. Query<R, G> other
)

Keeps duplicate SQL rows. Row order requires an explicit final orderBy.

The same column, codec, nullability, and context requirements as union apply; this describes one SQL set operation, not two Dart list reads.

Implementation

Query<R, UnionFields<F>> unionAll<G extends Fields>(Query<R, G> other) =>
    _union(other, all: true);