From babc7908a7c8d0a5244cd504946a1d3ba9cdfc12 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Thu, 11 Feb 2021 16:27:14 +0100 Subject: [PATCH] [jOOQ/jOOQ#8166] OSS edition fix --- .../java/org/jooq/impl/RowAssignment.java | 131 ++++++++++++++++++ .../java/org/jooq/impl/SelectQueryImpl.java | 12 +- 2 files changed, 139 insertions(+), 4 deletions(-) create mode 100644 jOOQ/src/main/java/org/jooq/impl/RowAssignment.java diff --git a/jOOQ/src/main/java/org/jooq/impl/RowAssignment.java b/jOOQ/src/main/java/org/jooq/impl/RowAssignment.java new file mode 100644 index 0000000000..b012b5fa2d --- /dev/null +++ b/jOOQ/src/main/java/org/jooq/impl/RowAssignment.java @@ -0,0 +1,131 @@ +/* + * 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. + * + * Other licenses: + * ----------------------------------------------------------------------------- + * Commercial licenses for this work are available. These replace the above + * ASL 2.0 and offer limited warranties, support, maintenance, and commercial + * database integrations. + * + * For more information, please visit: http://www.jooq.org/licenses + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + */ +package org.jooq.impl; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jOOQ/src/main/java/org/jooq/impl/SelectQueryImpl.java b/jOOQ/src/main/java/org/jooq/impl/SelectQueryImpl.java index 1cb5224b72..a7392ce4e7 100644 --- a/jOOQ/src/main/java/org/jooq/impl/SelectQueryImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/SelectQueryImpl.java @@ -2984,10 +2984,14 @@ final class SelectQueryImpl extends AbstractResultQuery imp this.intoTable = table; } - @Override - public final void setInto(Collection> variables) { - this.intoVariables = variables; - } + + + + + + + + @Override public final void addOffset(int offset) {