skip the example that throws

This commit is contained in:
Sean Corfield 2022-04-23 14:11:19 -07:00
parent 7f8b7a79b1
commit 13a8aa11b2

View file

@ -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: > 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 <!-- :test-doc-blocks/skip -->
```clojure
(sql/format {:select [[[:array :?tags] :arr]]} {:params {:tags [1 2 3]}}) (sql/format {:select [[[:array :?tags] :arr]]} {:params {:tags [1 2 3]}})
``` ```