From f414f04033e411ba75e10b9d0ea13e4e5d92f4eb Mon Sep 17 00:00:00 2001 From: Rob Bygrave Date: Tue, 4 Jul 2023 12:05:10 +1200 Subject: [PATCH] Add note on lack of support for InTuples with SQLServer and DB2 --- ebean-api/src/main/java/io/ebean/InTuples.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ebean-api/src/main/java/io/ebean/InTuples.java b/ebean-api/src/main/java/io/ebean/InTuples.java index 174702956..ea1dd46b4 100644 --- a/ebean-api/src/main/java/io/ebean/InTuples.java +++ b/ebean-api/src/main/java/io/ebean/InTuples.java @@ -1,10 +1,10 @@ package io.ebean; -import java.util.List; - /** * IN expression using multiple columns. *

+ * Currently this is not supported with SQLServer or DB2. + *

* Produces SQL expression in the form of (A,B,C) IN ((a0,b0,c0), (a1,b1,c1), ... ) * where A,B,C are the properties in the tuples. */