From d7b68f8b914c0c0ad698a6c0f66785e192df628c Mon Sep 17 00:00:00 2001 From: Eric Jain Date: Wed, 26 Oct 2016 18:35:49 -0700 Subject: [PATCH] Escape (( and )) to prevent asciidoc processing See http://asciidoctor.org/docs/user-manual/#user-index Closes gh-1225 --- src/asciidoc/data-access.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/asciidoc/data-access.adoc b/src/asciidoc/data-access.adoc index 3cf1485bf4f..45e9bd0f00b 100644 --- a/src/asciidoc/data-access.adoc +++ b/src/asciidoc/data-access.adoc @@ -4499,8 +4499,8 @@ 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 would support multiple expressions defined for the `in` -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. +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.