From 813dbbce5894231193a3006c5d72e8a58e0863f9 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 14 Sep 2021 15:05:45 +0200 Subject: [PATCH] Polish contribution See gh-27388 --- src/docs/asciidoc/data-access.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/data-access.adoc b/src/docs/asciidoc/data-access.adoc index 388e4bbf5c..fa0ccbe73f 100644 --- a/src/docs/asciidoc/data-access.adoc +++ b/src/docs/asciidoc/data-access.adoc @@ -6027,7 +6027,7 @@ limit is 1000. In addition to the primitive values in the value list, you can create a `java.util.List` of object arrays. This list can support multiple expressions being defined for the `in` -clause, such as `select * from T_ACTOR where (id, last_name) in \((1, 'Johnson'), (2, +clause, such as `select * from T_ACTOR where (id, last_name) in ((1, 'Johnson'), (2, 'Harrop'))`. This, of course, requires that your database supports this syntax.