unionAll method
UNION ALL - combines results from two queries (keeps duplicates)
Implementation
@override
QueryBuilderInterface<T> unionAll(QueryBuilderInterface<T> query) {
_unions.add({
'query': query,
'all': true,
});
return this;
}
UNION ALL - combines results from two queries (keeps duplicates)
@override
QueryBuilderInterface<T> unionAll(QueryBuilderInterface<T> query) {
_unions.add({
'query': query,
'all': true,
});
return this;
}