diff --git a/CHANGELOG.md b/CHANGELOG.md index c49754b..6d003a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ Only accretive/fixative changes will be made from now on. * 1.3.next in progress + * Address [#241](https://github.com/seancorfield/next-jdbc/issues/241) by correcting link to PostgreSQL docs. * Address [clj-kondo#1685](https://github.com/clj-kondo/clj-kondo/issues/1685) by using `.clj_kondo` extension for hook files. * Improve docs for SQLite users per [#239](https://github.com/seancorfield/next-jdbc/pull/239) -- [peristeri](https://github.com/peristeri). * Address [#236](https://github.com/seancorfield/next-jdbc/issues/236) by showing examples of `run!` over `plan`. diff --git a/doc/tips-and-tricks.md b/doc/tips-and-tricks.md index d4d1e53..68b8e64 100644 --- a/doc/tips-and-tricks.md +++ b/doc/tips-and-tricks.md @@ -279,7 +279,7 @@ create table example( ``` > Note: PostgreSQL JDBC driver supports only 7 primitive array types, but not array types like `UUID[]` - -[PostgreSQL™ Extensions to the JDBC API](https://jdbc.postgresql.org/documentation/head/arrays.html). +[PostgreSQL™ Extensions to the JDBC API](https://jdbc.postgresql.org/documentation/server-prepare/#arrays). ### Working with Date and Time