From 13a8aa11b2dfa90c839c78817a42349ced765376 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sat, 23 Apr 2022 14:11:19 -0700 Subject: [PATCH] skip the example that throws --- doc/special-syntax.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/special-syntax.md b/doc/special-syntax.md index 8eb1630..3e14241 100644 --- a/doc/special-syntax.md +++ b/doc/special-syntax.md @@ -21,7 +21,8 @@ of that sequence (as SQL parameters): > Note: you cannot provide a named parameter as the argument for `:array` because the generated SQL depends on the number of elements in the sequence, so the following throws an exception: -``` clj + +```clojure (sql/format {:select [[[:array :?tags] :arr]]} {:params {:tags [1 2 3]}}) ```