[jOOQ/jOOQ#14398] Don't import class in generated code, update api.xml
This commit is contained in:
parent
aa0ea39a9a
commit
0134941e31
@ -63,7 +63,6 @@ import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
import org.jooq.conf.TransformUnneededArithmeticExpressions;
|
||||
import org.jooq.impl.Expression.Associativity;
|
||||
|
||||
|
||||
/**
|
||||
@ -119,7 +118,7 @@ implements
|
||||
this,
|
||||
q -> new Expression.Expr<>(q.arg1, Operators.OP_PLUS, q.arg2),
|
||||
c -> c.sql(' '),
|
||||
Associativity.BOTH
|
||||
Expression.Associativity.BOTH
|
||||
);
|
||||
ctx.sql(')');
|
||||
}
|
||||
|
||||
@ -52,7 +52,6 @@ import org.jooq.*;
|
||||
import org.jooq.Function1;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.conf.ParamType;
|
||||
import org.jooq.impl.Expression.Associativity;
|
||||
import org.jooq.tools.StringUtils;
|
||||
|
||||
import java.util.ArrayList;
|
||||
@ -124,7 +123,7 @@ implements
|
||||
this,
|
||||
q -> new Expression.Expr<>(q.arg1, Operator.AND.toKeyword(), q.arg2),
|
||||
Context::formatSeparator,
|
||||
Associativity.BOTH
|
||||
Expression.Associativity.BOTH
|
||||
);
|
||||
ctx.sqlIndentEnd(')');
|
||||
}
|
||||
|
||||
@ -52,7 +52,6 @@ import org.jooq.*;
|
||||
import org.jooq.Function1;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.conf.ParamType;
|
||||
import org.jooq.impl.Expression.Associativity;
|
||||
import org.jooq.tools.StringUtils;
|
||||
|
||||
import java.util.ArrayList;
|
||||
@ -173,7 +172,7 @@ implements
|
||||
this,
|
||||
q -> new Expression.Expr<>(q.arg1, Operators.OP_AMP, q.arg2),
|
||||
c -> c.sql(' '),
|
||||
Associativity.BOTH
|
||||
Expression.Associativity.BOTH
|
||||
);
|
||||
ctx.sql(')');
|
||||
break;
|
||||
|
||||
@ -52,7 +52,6 @@ import org.jooq.*;
|
||||
import org.jooq.Function1;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.conf.ParamType;
|
||||
import org.jooq.impl.Expression.Associativity;
|
||||
import org.jooq.tools.StringUtils;
|
||||
|
||||
import java.util.ArrayList;
|
||||
@ -182,7 +181,7 @@ implements
|
||||
this,
|
||||
q -> new Expression.Expr<>(q.arg1, Operators.OP_VERBAR, q.arg2),
|
||||
c -> c.sql(' '),
|
||||
Associativity.BOTH
|
||||
Expression.Associativity.BOTH
|
||||
);
|
||||
ctx.sql(')');
|
||||
break;
|
||||
|
||||
@ -52,7 +52,6 @@ import org.jooq.*;
|
||||
import org.jooq.Function1;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.conf.ParamType;
|
||||
import org.jooq.impl.Expression.Associativity;
|
||||
import org.jooq.tools.StringUtils;
|
||||
|
||||
import java.util.ArrayList;
|
||||
@ -192,7 +191,7 @@ implements
|
||||
this,
|
||||
q -> new Expression.Expr<>(q.arg1, op, q.arg2),
|
||||
c -> c.sql(' '),
|
||||
Associativity.BOTH
|
||||
Expression.Associativity.BOTH
|
||||
);
|
||||
ctx.sql(')');
|
||||
break;
|
||||
|
||||
@ -63,7 +63,6 @@ import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
import org.jooq.conf.TransformUnneededArithmeticExpressions;
|
||||
import org.jooq.impl.Expression.Associativity;
|
||||
|
||||
|
||||
/**
|
||||
@ -119,7 +118,7 @@ implements
|
||||
this,
|
||||
q -> new Expression.Expr<>(q.arg1, Operators.OP_SOL, q.arg2),
|
||||
c -> c.sql(' '),
|
||||
Associativity.LEFT
|
||||
Expression.Associativity.LEFT
|
||||
);
|
||||
ctx.sql(')');
|
||||
}
|
||||
|
||||
@ -63,7 +63,6 @@ import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
import org.jooq.conf.TransformUnneededArithmeticExpressions;
|
||||
import org.jooq.impl.Expression.Associativity;
|
||||
|
||||
|
||||
/**
|
||||
@ -119,7 +118,7 @@ implements
|
||||
this,
|
||||
q -> new Expression.Expr<>(q.arg1, Operators.OP_AST, q.arg2),
|
||||
c -> c.sql(' '),
|
||||
Associativity.BOTH
|
||||
Expression.Associativity.BOTH
|
||||
);
|
||||
ctx.sql(')');
|
||||
}
|
||||
|
||||
@ -52,7 +52,6 @@ import org.jooq.*;
|
||||
import org.jooq.Function1;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.conf.ParamType;
|
||||
import org.jooq.impl.Expression.Associativity;
|
||||
import org.jooq.tools.StringUtils;
|
||||
|
||||
import java.util.ArrayList;
|
||||
@ -124,7 +123,7 @@ implements
|
||||
this,
|
||||
q -> new Expression.Expr<>(q.arg1, Operator.OR.toKeyword(), q.arg2),
|
||||
Context::formatSeparator,
|
||||
Associativity.BOTH
|
||||
Expression.Associativity.BOTH
|
||||
);
|
||||
ctx.sqlIndentEnd(')');
|
||||
}
|
||||
|
||||
@ -63,7 +63,6 @@ import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
import org.jooq.conf.TransformUnneededArithmeticExpressions;
|
||||
import org.jooq.impl.Expression.Associativity;
|
||||
|
||||
|
||||
/**
|
||||
@ -119,7 +118,7 @@ implements
|
||||
this,
|
||||
q -> new Expression.Expr<>(q.arg1, Operators.OP_MINUS, q.arg2),
|
||||
c -> c.sql(' '),
|
||||
Associativity.LEFT
|
||||
Expression.Associativity.LEFT
|
||||
);
|
||||
ctx.sql(')');
|
||||
}
|
||||
|
||||
@ -52,7 +52,6 @@ import org.jooq.*;
|
||||
import org.jooq.Function1;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.conf.ParamType;
|
||||
import org.jooq.impl.Expression.Associativity;
|
||||
import org.jooq.tools.StringUtils;
|
||||
|
||||
import java.util.ArrayList;
|
||||
@ -121,7 +120,7 @@ implements
|
||||
this,
|
||||
q -> new Expression.Expr<>(q.arg1, Operator.XOR.toKeyword(), q.arg2),
|
||||
Context::formatSeparator,
|
||||
Associativity.BOTH
|
||||
Expression.Associativity.BOTH
|
||||
);
|
||||
ctx.sqlIndentEnd(')');
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user