[#4304] CUBRID supports EXCEPT ALL and INTERSECT ALL
This commit is contained in:
parent
8d9b034fd5
commit
a2fdbe0714
@ -90,7 +90,7 @@ public interface Select<R extends Record> extends ResultQuery<R>, TableLike<R>,
|
||||
/**
|
||||
* Apply the <code>EXCEPT ALL</code> set operation.
|
||||
*/
|
||||
@Support({ POSTGRES })
|
||||
@Support({ CUBRID, POSTGRES })
|
||||
Select<R> exceptAll(Select<? extends R> select);
|
||||
|
||||
/**
|
||||
@ -102,7 +102,7 @@ public interface Select<R extends Record> extends ResultQuery<R>, TableLike<R>,
|
||||
/**
|
||||
* Apply the <code>INTERSECT ALL</code> set operation.
|
||||
*/
|
||||
@Support({ POSTGRES })
|
||||
@Support({ CUBRID, POSTGRES })
|
||||
Select<R> intersectAll(Select<? extends R> select);
|
||||
|
||||
/**
|
||||
|
||||
@ -125,7 +125,7 @@ public interface SelectUnionStep<R extends Record> extends SelectFinalStep<R> {
|
||||
* Apply the <code>EXCEPT ALL</code> set operation.
|
||||
*/
|
||||
@Override
|
||||
@Support({ POSTGRES })
|
||||
@Support({ CUBRID, POSTGRES })
|
||||
SelectOrderByStep<R> exceptAll(Select<? extends R> select);
|
||||
|
||||
/**
|
||||
@ -139,6 +139,6 @@ public interface SelectUnionStep<R extends Record> extends SelectFinalStep<R> {
|
||||
* Apply the <code>INTERSECT ALL</code> set operation.
|
||||
*/
|
||||
@Override
|
||||
@Support({ POSTGRES })
|
||||
@Support({ CUBRID, POSTGRES })
|
||||
SelectOrderByStep<R> intersectAll(Select<? extends R> select);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user