diff --git a/project.clj b/project.clj index 144a2be..2d8e139 100644 --- a/project.clj +++ b/project.clj @@ -4,7 +4,7 @@ :license {:name "BSD (2-Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.9.0-alpha14" :scope "provided"] - [org.jooq/jooq "3.8.6"]] + [org.jooq/jooq "3.9.0"]] :javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"] :profiles {:dev {:global-vars {*warn-on-reflection* false} diff --git a/test/suricatta/core_test.clj b/test/suricatta/core_test.clj index 7d63109..bca9ead 100644 --- a/test/suricatta/core_test.clj +++ b/test/suricatta/core_test.clj @@ -86,9 +86,9 @@ (let [sql "select x, x+1 as i, 'a,b' as k from generate_series(1, 1) as x" result (sc/fetch *ctx* sql {:format :json})] (is (= (str "{\"fields\":[" - "{\"table\":\"\",\"name\":\"x\",\"type\":\"INT4\"}," - "{\"table\":\"\",\"name\":\"i\",\"type\":\"INT4\"}," - "{\"table\":\"\",\"name\":\"k\",\"type\":\"OTHER\"}]," + "{\"name\":\"x\",\"type\":\"INT4\"}," + "{\"name\":\"i\",\"type\":\"INT4\"}," + "{\"name\":\"k\",\"type\":\"OTHER\"}]," "\"records\":[[1,2,\"a,b\"]]}") result)))) )