[jOOQ/jOOQ#12425] Move EXECUTE to API generator

This commit is contained in:
Lukas Eder 2021-09-21 10:22:20 +02:00
parent 6250ad5e55
commit 2ca80b02a6
3 changed files with 88 additions and 41 deletions

View File

@ -12848,46 +12848,6 @@ public class DSL {
@ -20093,6 +20053,52 @@ public class DSL {

View File

@ -158,7 +158,7 @@ extends
* @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)

View File

@ -77,6 +77,47 @@ package org.jooq.impl;