From 7f6c5f8cb50cca3e1e718625d00c06d047ace1bc Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Tue, 25 Mar 2014 17:09:05 +0100 Subject: [PATCH] Regenerated Row[N] artefacts --- .../xtend/org/jooq/xtend/Conversions.xtend | 1907 +++++++++++++++++ .../org/jooq/impl/RowBetweenCondition.java | 48 +- .../main/java/org/jooq/impl/UpdateImpl.java | 1 + 3 files changed, 1932 insertions(+), 24 deletions(-) create mode 100644 jOOQ-xtend/src/main/xtend/org/jooq/xtend/Conversions.xtend diff --git a/jOOQ-xtend/src/main/xtend/org/jooq/xtend/Conversions.xtend b/jOOQ-xtend/src/main/xtend/org/jooq/xtend/Conversions.xtend new file mode 100644 index 0000000000..3d31899048 --- /dev/null +++ b/jOOQ-xtend/src/main/xtend/org/jooq/xtend/Conversions.xtend @@ -0,0 +1,1907 @@ +/** + * Copyright (c) 2009-2014, Data Geekery GmbH (http://www.datageekery.com) + * All rights reserved. + * + * This work is dual-licensed + * - under the Apache Software License 2.0 (the "ASL") + * - under the jOOQ License and Maintenance Agreement (the "jOOQ License") + * ============================================================================= + * You may choose which license applies to you: + * + * - If you're using this work with Open Source databases, you may choose + * either ASL or jOOQ License. + * - If you're using this work with at least one commercial database, you must + * choose jOOQ License + * + * For more information, please visit http://www.jooq.org/licenses + * + * Apache Software License 2.0: + * ----------------------------------------------------------------------------- + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * jOOQ License and Maintenance Agreement: + * ----------------------------------------------------------------------------- + * Data Geekery grants the Customer the non-exclusive, timely limited and + * non-transferable license to install and use the Software under the terms of + * the jOOQ License and Maintenance Agreement. + * + * This library is distributed with a LIMITED WARRANTY. See the jOOQ License + * and Maintenance Agreement for more details: http://www.jooq.org/licensing + */ +package org.jooq.xtend + +import javax.annotation.Generated + +import org.jooq.Condition +import org.jooq.Field +import org.jooq.QuantifiedSelect +import org.jooq.Record +import org.jooq.Record1 +import org.jooq.Record2 +import org.jooq.Record3 +import org.jooq.Record4 +import org.jooq.Record5 +import org.jooq.Record6 +import org.jooq.Record7 +import org.jooq.Record8 +import org.jooq.Record9 +import org.jooq.Record10 +import org.jooq.Record11 +import org.jooq.Record12 +import org.jooq.Record13 +import org.jooq.Record14 +import org.jooq.Record15 +import org.jooq.Record16 +import org.jooq.Record17 +import org.jooq.Record18 +import org.jooq.Record19 +import org.jooq.Record20 +import org.jooq.Record21 +import org.jooq.Record22 +import org.jooq.Row +import org.jooq.RowN +import org.jooq.Row1 +import org.jooq.Row2 +import org.jooq.Row3 +import org.jooq.Row4 +import org.jooq.Row5 +import org.jooq.Row6 +import org.jooq.Row7 +import org.jooq.Row8 +import org.jooq.Row9 +import org.jooq.Row10 +import org.jooq.Row11 +import org.jooq.Row12 +import org.jooq.Row13 +import org.jooq.Row14 +import org.jooq.Row15 +import org.jooq.Row16 +import org.jooq.Row17 +import org.jooq.Row18 +import org.jooq.Row19 +import org.jooq.Row20 +import org.jooq.Row21 +import org.jooq.Row22 +import org.jooq.Select + +import org.jooq.impl.DSL + +/** + * jOOQ type conversions used to enhance the jOOQ Java API with Xtend operators. + * + * @author Lukas Eder + * @see http://www.eclipse.org/xtend/documentation.html#operators + */ +@Generated("This class was generated using jOOQ-tools") +class Conversions { + + def static operator_or(Condition c1, Condition c2) { + c1.or(c2); + } + + def static operator_and(Condition c1, Condition c2) { + c1.and(c2); + } + + def static operator_tripleEquals(Field f1, T f2) { + f1.eq(f2) + } + + def static operator_tripleEquals(Field f1, Field f2) { + f1.eq(f2) + } + + def static operator_tripleEquals(Field f1, Select> f2) { + f1.eq(f2) + } + + def static operator_tripleEquals(Field f1, QuantifiedSelect> f2) { + f1.eq(f2) + } + + def static operator_tripleEquals(RowN r1, RowN r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(RowN r1, Record r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(RowN r1, Select r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row1 r1, Row1 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row1 r1, Record1 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row1 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row2 r1, Row2 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row2 r1, Record2 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row2 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row3 r1, Row3 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row3 r1, Record3 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row3 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row4 r1, Row4 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row4 r1, Record4 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row4 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row5 r1, Row5 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row5 r1, Record5 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row5 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row6 r1, Row6 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row6 r1, Record6 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row6 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row7 r1, Row7 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row7 r1, Record7 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row7 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row8 r1, Row8 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row8 r1, Record8 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row8 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row9 r1, Row9 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row9 r1, Record9 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row9 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row10 r1, Row10 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row10 r1, Record10 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row10 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row11 r1, Row11 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row11 r1, Record11 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row11 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row12 r1, Row12 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row12 r1, Record12 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row12 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row13 r1, Row13 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row13 r1, Record13 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row13 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row14 r1, Row14 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row14 r1, Record14 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row14 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row15 r1, Row15 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row15 r1, Record15 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row15 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row16 r1, Row16 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row16 r1, Record16 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row16 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row17 r1, Row17 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row17 r1, Record17 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row17 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row18 r1, Row18 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row18 r1, Record18 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row18 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row19 r1, Row19 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row19 r1, Record19 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row19 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row20 r1, Row20 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row20 r1, Record20 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row20 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row21 r1, Row21 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row21 r1, Record21 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row21 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row22 r1, Row22 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row22 r1, Record22 r2) { + r1.eq(r2) + } + + def static operator_tripleEquals(Row22 r1, Select> r2) { + r1.eq(r2) + } + + def static operator_tripleNotEquals(Field f1, T f2) { + f1.ne(f2) + } + + def static operator_tripleNotEquals(Field f1, Field f2) { + f1.ne(f2) + } + + def static operator_tripleNotEquals(Field f1, Select> f2) { + f1.ne(f2) + } + + def static operator_tripleNotEquals(Field f1, QuantifiedSelect> f2) { + f1.ne(f2) + } + + def static operator_tripleNotEquals(Row1 r1, Row1 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row1 r1, Record1 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row1 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row2 r1, Row2 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row2 r1, Record2 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row2 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row3 r1, Row3 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row3 r1, Record3 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row3 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row4 r1, Row4 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row4 r1, Record4 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row4 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row5 r1, Row5 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row5 r1, Record5 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row5 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row6 r1, Row6 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row6 r1, Record6 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row6 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row7 r1, Row7 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row7 r1, Record7 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row7 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row8 r1, Row8 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row8 r1, Record8 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row8 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row9 r1, Row9 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row9 r1, Record9 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row9 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row10 r1, Row10 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row10 r1, Record10 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row10 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row11 r1, Row11 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row11 r1, Record11 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row11 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row12 r1, Row12 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row12 r1, Record12 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row12 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row13 r1, Row13 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row13 r1, Record13 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row13 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row14 r1, Row14 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row14 r1, Record14 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row14 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row15 r1, Row15 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row15 r1, Record15 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row15 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row16 r1, Row16 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row16 r1, Record16 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row16 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row17 r1, Row17 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row17 r1, Record17 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row17 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row18 r1, Row18 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row18 r1, Record18 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row18 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row19 r1, Row19 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row19 r1, Record19 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row19 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row20 r1, Row20 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row20 r1, Record20 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row20 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row21 r1, Row21 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row21 r1, Record21 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row21 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row22 r1, Row22 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row22 r1, Record22 r2) { + r1.ne(r2) + } + + def static operator_tripleNotEquals(Row22 r1, Select> r2) { + r1.ne(r2) + } + + def static operator_lessThan(Field f1, T f2) { + f1.lt(f2) + } + + def static operator_lessThan(Field f1, Field f2) { + f1.lt(f2) + } + + def static operator_lessThan(Field f1, Select> f2) { + f1.lt(f2) + } + + def static operator_lessThan(Field f1, QuantifiedSelect> f2) { + f1.lt(f2) + } + + def static operator_lessThan(Row1 r1, Row1 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row1 r1, Record1 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row1 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row2 r1, Row2 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row2 r1, Record2 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row2 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row3 r1, Row3 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row3 r1, Record3 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row3 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row4 r1, Row4 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row4 r1, Record4 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row4 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row5 r1, Row5 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row5 r1, Record5 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row5 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row6 r1, Row6 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row6 r1, Record6 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row6 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row7 r1, Row7 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row7 r1, Record7 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row7 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row8 r1, Row8 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row8 r1, Record8 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row8 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row9 r1, Row9 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row9 r1, Record9 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row9 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row10 r1, Row10 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row10 r1, Record10 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row10 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row11 r1, Row11 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row11 r1, Record11 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row11 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row12 r1, Row12 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row12 r1, Record12 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row12 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row13 r1, Row13 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row13 r1, Record13 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row13 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row14 r1, Row14 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row14 r1, Record14 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row14 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row15 r1, Row15 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row15 r1, Record15 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row15 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row16 r1, Row16 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row16 r1, Record16 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row16 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row17 r1, Row17 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row17 r1, Record17 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row17 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row18 r1, Row18 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row18 r1, Record18 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row18 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row19 r1, Row19 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row19 r1, Record19 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row19 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row20 r1, Row20 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row20 r1, Record20 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row20 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row21 r1, Row21 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row21 r1, Record21 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row21 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row22 r1, Row22 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row22 r1, Record22 r2) { + r1.lt(r2) + } + + def static operator_lessThan(Row22 r1, Select> r2) { + r1.lt(r2) + } + + def static operator_greaterThan(Field f1, T f2) { + f1.gt(f2) + } + + def static operator_greaterThan(Field f1, Field f2) { + f1.gt(f2) + } + + def static operator_greaterThan(Field f1, Select> f2) { + f1.gt(f2) + } + + def static operator_greaterThan(Field f1, QuantifiedSelect> f2) { + f1.gt(f2) + } + + def static operator_greaterThan(Row1 r1, Row1 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row1 r1, Record1 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row1 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row2 r1, Row2 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row2 r1, Record2 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row2 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row3 r1, Row3 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row3 r1, Record3 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row3 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row4 r1, Row4 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row4 r1, Record4 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row4 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row5 r1, Row5 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row5 r1, Record5 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row5 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row6 r1, Row6 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row6 r1, Record6 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row6 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row7 r1, Row7 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row7 r1, Record7 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row7 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row8 r1, Row8 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row8 r1, Record8 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row8 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row9 r1, Row9 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row9 r1, Record9 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row9 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row10 r1, Row10 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row10 r1, Record10 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row10 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row11 r1, Row11 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row11 r1, Record11 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row11 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row12 r1, Row12 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row12 r1, Record12 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row12 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row13 r1, Row13 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row13 r1, Record13 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row13 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row14 r1, Row14 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row14 r1, Record14 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row14 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row15 r1, Row15 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row15 r1, Record15 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row15 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row16 r1, Row16 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row16 r1, Record16 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row16 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row17 r1, Row17 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row17 r1, Record17 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row17 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row18 r1, Row18 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row18 r1, Record18 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row18 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row19 r1, Row19 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row19 r1, Record19 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row19 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row20 r1, Row20 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row20 r1, Record20 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row20 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row21 r1, Row21 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row21 r1, Record21 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row21 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row22 r1, Row22 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row22 r1, Record22 r2) { + r1.gt(r2) + } + + def static operator_greaterThan(Row22 r1, Select> r2) { + r1.gt(r2) + } + + def static operator_lessEqualsThan(Field f1, T f2) { + f1.le(f2) + } + + def static operator_lessEqualsThan(Field f1, Field f2) { + f1.le(f2) + } + + def static operator_lessEqualsThan(Field f1, Select> f2) { + f1.le(f2) + } + + def static operator_lessEqualsThan(Field f1, QuantifiedSelect> f2) { + f1.le(f2) + } + + def static operator_lessEqualsThan(Row1 r1, Row1 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row1 r1, Record1 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row1 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row2 r1, Row2 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row2 r1, Record2 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row2 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row3 r1, Row3 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row3 r1, Record3 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row3 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row4 r1, Row4 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row4 r1, Record4 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row4 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row5 r1, Row5 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row5 r1, Record5 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row5 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row6 r1, Row6 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row6 r1, Record6 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row6 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row7 r1, Row7 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row7 r1, Record7 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row7 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row8 r1, Row8 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row8 r1, Record8 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row8 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row9 r1, Row9 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row9 r1, Record9 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row9 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row10 r1, Row10 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row10 r1, Record10 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row10 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row11 r1, Row11 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row11 r1, Record11 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row11 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row12 r1, Row12 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row12 r1, Record12 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row12 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row13 r1, Row13 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row13 r1, Record13 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row13 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row14 r1, Row14 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row14 r1, Record14 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row14 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row15 r1, Row15 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row15 r1, Record15 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row15 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row16 r1, Row16 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row16 r1, Record16 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row16 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row17 r1, Row17 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row17 r1, Record17 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row17 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row18 r1, Row18 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row18 r1, Record18 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row18 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row19 r1, Row19 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row19 r1, Record19 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row19 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row20 r1, Row20 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row20 r1, Record20 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row20 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row21 r1, Row21 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row21 r1, Record21 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row21 r1, Select> r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row22 r1, Row22 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row22 r1, Record22 r2) { + r1.le(r2) + } + + def static operator_lessEqualsThan(Row22 r1, Select> r2) { + r1.le(r2) + } + + def static operator_greaterEqualsThan(Field f1, T f2) { + f1.ge(f2) + } + + def static operator_greaterEqualsThan(Field f1, Field f2) { + f1.ge(f2) + } + + def static operator_greaterEqualsThan(Field f1, Select> f2) { + f1.ge(f2) + } + + def static operator_greaterEqualsThan(Field f1, QuantifiedSelect> f2) { + f1.ge(f2) + } + + def static operator_greaterEqualsThan(Row1 r1, Row1 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row1 r1, Record1 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row1 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row2 r1, Row2 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row2 r1, Record2 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row2 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row3 r1, Row3 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row3 r1, Record3 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row3 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row4 r1, Row4 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row4 r1, Record4 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row4 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row5 r1, Row5 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row5 r1, Record5 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row5 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row6 r1, Row6 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row6 r1, Record6 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row6 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row7 r1, Row7 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row7 r1, Record7 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row7 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row8 r1, Row8 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row8 r1, Record8 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row8 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row9 r1, Row9 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row9 r1, Record9 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row9 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row10 r1, Row10 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row10 r1, Record10 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row10 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row11 r1, Row11 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row11 r1, Record11 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row11 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row12 r1, Row12 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row12 r1, Record12 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row12 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row13 r1, Row13 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row13 r1, Record13 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row13 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row14 r1, Row14 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row14 r1, Record14 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row14 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row15 r1, Row15 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row15 r1, Record15 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row15 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row16 r1, Row16 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row16 r1, Record16 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row16 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row17 r1, Row17 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row17 r1, Record17 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row17 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row18 r1, Row18 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row18 r1, Record18 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row18 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row19 r1, Row19 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row19 r1, Record19 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row19 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row20 r1, Row20 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row20 r1, Record20 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row20 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row21 r1, Row21 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row21 r1, Record21 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row21 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row22 r1, Row22 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row22 r1, Record22 r2) { + r1.ge(r2) + } + + def static operator_greaterEqualsThan(Row22 r1, Select> r2) { + r1.ge(r2) + } + + def static operator_upTo(Field f1, Integer f2) { + DSL::generateSeries(f1, DSL::value(f2)) + } + + def static operator_upTo(Field f1, Field f2) { + DSL::generateSeries(f1, f2) + } + + def static operator_doubleLessThan(Field f1, T f2) { + DSL::shl(f1, f2) + } + + def static operator_doubleLessThan(Field f1, Field f2) { + DSL::shl(f1, f2) + } + + def static operator_doubleGreaterThan(Field f1, T f2) { + DSL::shr(f1, f2) + } + + def static operator_doubleGreaterThan(Field f1, Field f2) { + DSL::shr(f1, f2) + } + + def static operator_diamond(Field f1, T f2) { + f1.ne(f2) + } + + def static operator_elvis(Field f1, T f2) { + DSL::nvl(f1, f2) + } + + def static operator_elvis(Field f1, Field f2) { + DSL::nvl(f1, f2) + } + + def static operator_spaceship(Field f1, T f2) { + f1.isNotDistinctFrom(f2) + } + + def static operator_spaceship(Field f1, Field f2) { + f1.isNotDistinctFrom(f2) + } + + def static operator_plus(Field f1, T f2) { + f1.add(f2) + } + + def static operator_plus(Field f1, Field f2) { + f1.add(f2) + } + + def static operator_minus(Field f1, T f2) { + f1.sub(f2) + } + + def static operator_minus(Field f1, Field f2) { + f1.sub(f2) + } + + def static operator_multiply(Field f1, T f2) { + f1.mul(f2) + } + + def static operator_multiply(Field f1, Field f2) { + f1.mul(f2) + } + + def static operator_divide(Field f1, T f2) { + f1.div(f2) + } + + def static operator_divide(Field f1, Field f2) { + f1.div(f2) + } + + def static operator_modulo(Field f1, T f2) { + f1.mod(f2) + } + + def static operator_modulo(Field f1, Field f2) { + f1.mod(f2) + } + + def static operator_power(Field f1, T f2) { + DSL::power(f1, f2) + } + + def static operator_power(Field f1, Field f2) { + DSL::power(f1, f2) + } + + def static operator_not(Condition c) { + c.not() + } + + def static operator_minus(Field f) { + f.neg(); + } +} diff --git a/jOOQ/src/main/java/org/jooq/impl/RowBetweenCondition.java b/jOOQ/src/main/java/org/jooq/impl/RowBetweenCondition.java index b23a9785d0..688ac59143 100644 --- a/jOOQ/src/main/java/org/jooq/impl/RowBetweenCondition.java +++ b/jOOQ/src/main/java/org/jooq/impl/RowBetweenCondition.java @@ -65,6 +65,14 @@ import static org.jooq.impl.DSL.row; import javax.annotation.Generated; import org.jooq.BetweenAndStep1; +import org.jooq.BetweenAndStep2; +import org.jooq.BetweenAndStep3; +import org.jooq.BetweenAndStep4; +import org.jooq.BetweenAndStep5; +import org.jooq.BetweenAndStep6; +import org.jooq.BetweenAndStep7; +import org.jooq.BetweenAndStep8; +import org.jooq.BetweenAndStep9; import org.jooq.BetweenAndStep10; import org.jooq.BetweenAndStep11; import org.jooq.BetweenAndStep12; @@ -75,17 +83,9 @@ import org.jooq.BetweenAndStep16; import org.jooq.BetweenAndStep17; import org.jooq.BetweenAndStep18; import org.jooq.BetweenAndStep19; -import org.jooq.BetweenAndStep2; import org.jooq.BetweenAndStep20; import org.jooq.BetweenAndStep21; import org.jooq.BetweenAndStep22; -import org.jooq.BetweenAndStep3; -import org.jooq.BetweenAndStep4; -import org.jooq.BetweenAndStep5; -import org.jooq.BetweenAndStep6; -import org.jooq.BetweenAndStep7; -import org.jooq.BetweenAndStep8; -import org.jooq.BetweenAndStep9; import org.jooq.BetweenAndStepN; import org.jooq.BindContext; import org.jooq.Clause; @@ -96,6 +96,14 @@ import org.jooq.Field; import org.jooq.QueryPartInternal; import org.jooq.Record; import org.jooq.Record1; +import org.jooq.Record2; +import org.jooq.Record3; +import org.jooq.Record4; +import org.jooq.Record5; +import org.jooq.Record6; +import org.jooq.Record7; +import org.jooq.Record8; +import org.jooq.Record9; import org.jooq.Record10; import org.jooq.Record11; import org.jooq.Record12; @@ -106,20 +114,20 @@ import org.jooq.Record16; import org.jooq.Record17; import org.jooq.Record18; import org.jooq.Record19; -import org.jooq.Record2; import org.jooq.Record20; import org.jooq.Record21; import org.jooq.Record22; -import org.jooq.Record3; -import org.jooq.Record4; -import org.jooq.Record5; -import org.jooq.Record6; -import org.jooq.Record7; -import org.jooq.Record8; -import org.jooq.Record9; import org.jooq.RenderContext; import org.jooq.Row; import org.jooq.Row1; +import org.jooq.Row2; +import org.jooq.Row3; +import org.jooq.Row4; +import org.jooq.Row5; +import org.jooq.Row6; +import org.jooq.Row7; +import org.jooq.Row8; +import org.jooq.Row9; import org.jooq.Row10; import org.jooq.Row11; import org.jooq.Row12; @@ -130,17 +138,9 @@ import org.jooq.Row16; import org.jooq.Row17; import org.jooq.Row18; import org.jooq.Row19; -import org.jooq.Row2; import org.jooq.Row20; import org.jooq.Row21; import org.jooq.Row22; -import org.jooq.Row3; -import org.jooq.Row4; -import org.jooq.Row5; -import org.jooq.Row6; -import org.jooq.Row7; -import org.jooq.Row8; -import org.jooq.Row9; import org.jooq.RowN; /** diff --git a/jOOQ/src/main/java/org/jooq/impl/UpdateImpl.java b/jOOQ/src/main/java/org/jooq/impl/UpdateImpl.java index ea8795393a..7921d3bf47 100644 --- a/jOOQ/src/main/java/org/jooq/impl/UpdateImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/UpdateImpl.java @@ -165,6 +165,7 @@ final class UpdateImpl } // [jooq-tools] START [set] + @Generated("This method was generated using jOOQ-tools") @Override public final UpdateFromStep set(Row1 row, Row1 value) {