From ec97d0affbb85c6f8031ff2996dc8d9e5141a5bb Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Fri, 8 May 2020 10:34:44 -0700 Subject: [PATCH] Add array handling tip to changelog --- CHANGELOG.md | 1 + test/next/jdbc/sql/builder_test.clj | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2aa2dc9..55e75e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ The following changes have been made on **master** since the 1.0.424 release: * Support for Stuart Sierra's Component library, via `next.jdbc.connection/component`. See updated **Getting Started** guide for usage. * Add MySQL-specific result set streaming tip. +* Add array handling example to PostgreSQL **Tips & Tricks**. PR #108 from @maxp. * Investigate possible solutions for #106 (mutable transaction thread safety) -- experimental `locking` on `Connection` object. ## Stable Builds diff --git a/test/next/jdbc/sql/builder_test.clj b/test/next/jdbc/sql/builder_test.clj index bd92c5c..81dc4bf 100644 --- a/test/next/jdbc/sql/builder_test.clj +++ b/test/next/jdbc/sql/builder_test.clj @@ -2,7 +2,7 @@ (ns next.jdbc.sql.builder-test "Tests for the SQL string building functions in next.jdbc.sql.builder." - (:require [clojure.test :refer [deftest is testing use-fixtures]] + (:require [clojure.test :refer [deftest is testing]] [next.jdbc.quoted :refer [mysql sql-server]] [next.jdbc.sql.builder :as builder]))