[#4304] CUBRID supports EXCEPT ALL and INTERSECT ALL

This commit is contained in:
lukaseder 2015-07-31 18:15:39 +02:00
parent 8d9b034fd5
commit a2fdbe0714
2 changed files with 4 additions and 4 deletions

View File

@ -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);
/**

View File

@ -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);
}