From 98df4ec42fb256b5701d20cab4c43e19247b977c Mon Sep 17 00:00:00 2001 From: Knut Wannheden Date: Wed, 30 Oct 2019 06:49:42 +0100 Subject: [PATCH] [jOOQ/jOOQ#9461] Add @PlainSQL annotation to DSLContext#batch() methods --- jOOQ/src/main/java/org/jooq/DSLContext.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jOOQ/src/main/java/org/jooq/DSLContext.java b/jOOQ/src/main/java/org/jooq/DSLContext.java index 13f4c74050..9d5e0f9f26 100644 --- a/jOOQ/src/main/java/org/jooq/DSLContext.java +++ b/jOOQ/src/main/java/org/jooq/DSLContext.java @@ -8017,6 +8017,7 @@ public interface DSLContext extends Scope , AutoCloseable { * @see java.sql.Statement#executeBatch() */ @Support + @PlainSQL Batch batch(String... queries); /** @@ -8084,6 +8085,7 @@ public interface DSLContext extends Scope , AutoCloseable { * @see java.sql.Statement#executeBatch() */ @Support + @PlainSQL BatchBindStep batch(String sql); /** @@ -8115,6 +8117,7 @@ public interface DSLContext extends Scope , AutoCloseable { * @see java.sql.Statement#executeBatch() */ @Support + @PlainSQL Batch batch(String sql, Object[]... bindings); /**