Skip to content

Commit

Permalink
[jOOQ#12425] Move EXECUTE to API generator
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaseder committed Sep 21, 2021
1 parent 6250ad5 commit 2ca80b0
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 41 deletions.
86 changes: 46 additions & 40 deletions jOOQ/src/main/java/org/jooq/impl/DSL.java
Original file line number Diff line number Diff line change
Expand Up @@ -12848,46 +12848,6 @@ public static Block begin(Collection<? extends Statement> statements) {














































Expand Down Expand Up @@ -20093,6 +20053,52 @@ public static AggregateFunction<BigDecimal> varSamp(Field<? extends Number> fiel




















































Expand Down
2 changes: 1 addition & 1 deletion jOOQ/src/main/java/org/jooq/impl/Eq.java
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ else if (condition instanceof Le)
* @deprecated - [#12425] After the QOM refactoring, this should be improved
*/
@Deprecated
static final Comparator comparator(Condition condition) {
static final org.jooq.Comparator comparator(Condition condition) {
if (condition instanceof Eq)
return org.jooq.Comparator.EQUALS;
else if (condition instanceof Ne)
Expand Down
41 changes: 41 additions & 0 deletions jOOQ/src/main/java/org/jooq/impl/Execute.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,47 @@















































Expand Down

0 comments on commit 2ca80b0

Please sign in to comment.