From 87d051fb564fb5367e7c765cbd4802ee7c63de63 Mon Sep 17 00:00:00 2001 From: Maxim Penzin Date: Fri, 8 May 2020 12:27:15 +0800 Subject: [PATCH] link to jdbc docs --- doc/tips-and-tricks.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/tips-and-tricks.md b/doc/tips-and-tricks.md index 2555931..5b223e0 100644 --- a/doc/tips-and-tricks.md +++ b/doc/tips-and-tricks.md @@ -150,6 +150,9 @@ create table example( ;; => #:example{:tags ["tag1" "tag2"]} ``` +Note: PostgreSQL JDBC driver supports only 7 primitive array types, but not such as UUID[] - +[PostgreSQLâ„¢ Extensions to the JDBC API](https://jdbc.postgresql.org/documentation/head/arrays.html). + ### Working with Date and Time By default, PostgreSQL's JDBC driver does not always perform conversions from `java.util.Date` to a SQL data type.