Skip to content

Commit ea6e26d

Browse files
authored
Fixed NPE in case of empty dbname (#141)
* Fixed NPE in case of empty dbname * Update README * Add default db name to post-filtered-active-tables * Update Metabase repo ref in GHA
1 parent 7a0a026 commit ea6e26d

File tree

9 files changed

+46
-27
lines changed

9 files changed

+46
-27
lines changed

.github/deps.edn

+7-3
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@
439439
metabase.api.native-query-snippet-test/create-snippet-api-test
440440
metabase.api.native-query-snippet-test/update-snippet-api-test
441441
metabase.api.native-query-snippet-test/read-snippet-api-test
442-
metabase.api.notify-test/unauthenticated-test
442+
metabase.api.notify-test/authentication-test
443443
metabase.api.notify-test/not-found-test
444444
metabase.api.notify-test/post-db-id-test
445445
metabase.api.permissions-test/groups-list-limit-test
@@ -821,7 +821,9 @@
821821
metabase.dashboard-subscription-test/mrkdwn-length-limit-test
822822
metabase.dashboard-subscription-test/use-default-values-test
823823
metabase.dashboard-subscription-test/dashboard-filter-test
824+
metabase.db.connection-pool-setup-test/DbActivityTracker-test
824825
metabase.db.connection-pool-setup-test/connection-pool-spec-test
826+
metabase.db.connection-pool-setup-test/recent-activity-test
825827
metabase.db.data-migrations-test/fix-click-through-test
826828
metabase.db.data-migrations-test/migrate-click-through-test
827829
metabase.db.data-migrations-test/migrate-remove-admin-from-group-mapping-if-needed-test
@@ -1582,6 +1584,7 @@
15821584
metabase.pulse.render.color-test/convert-keywords-test
15831585
metabase.pulse.render.common-test/number-formatting-test
15841586
metabase.pulse.render.datetime-test/format-temporal-string-pair-test
1587+
metabase.pulse.render.datetime-test/format-temporal-str-column-viz-settings-test
15851588
metabase.pulse.render.datetime-test/format-temporal-str-test
15861589
metabase.pulse.render.js-engine-test/make-context-test
15871590
metabase.pulse.render.js-svg-test/progress-test
@@ -1713,6 +1716,7 @@
17131716
metabase.query-processor.middleware.annotate-test/col-info-combine-parent-field-names-test
17141717
metabase.query-processor.middleware.annotate-test/mbql-cols-nested-queries-test
17151718
metabase.query-processor.middleware.annotate-test/col-info-field-literals-test
1719+
metabase.query-processor.middleware.annotate-test/preserve-original-join-alias-test
17161720
metabase.query-processor.middleware.auto-bucket-datetimes-test/auto-bucket-in-compound-filter-clause-test
17171721
metabase.query-processor.middleware.auto-bucket-datetimes-test/auto-bucket-by-semantic-type-test
17181722
metabase.query-processor.middleware.auto-bucket-datetimes-test/auto-bucket-unix-timestamp-fields-test
@@ -2079,15 +2083,15 @@
20792083
metabase.query-processor-test.count-where-test/metric-test
20802084
metabase.query-processor-test.count-where-test/breakout-test
20812085
metabase.query-processor-test.date-bucketing-test/week-of-year-and-week-count-should-be-consistent-test
2082-
;metabase.query-processor-test.date-bucketing-test/group-by-default-test
2086+
;;metabase.query-processor-test.date-bucketing-test/group-by-default-test
20832087
metabase.query-processor-test.date-bucketing-test/legacy-default-datetime-bucketing-test
20842088
metabase.query-processor-test.date-bucketing-test/june-31st-test
20852089
metabase.query-processor-test.date-bucketing-test/sanity-check-test
20862090
metabase.query-processor-test.date-bucketing-test/compile-time-interval-test
20872091
metabase.query-processor-test.date-bucketing-test/filter-by-current-quarter-test
20882092
metabase.query-processor-test.date-bucketing-test/default-bucketing-test
20892093
metabase.query-processor-test.date-bucketing-test/group-by-day-of-month-test
2090-
;metabase.query-processor-test.date-bucketing-test/group-by-day-test
2094+
;;metabase.query-processor-test.date-bucketing-test/group-by-day-test
20912095
metabase.query-processor-test.date-bucketing-test/group-by-month-test
20922096
metabase.query-processor-test.date-bucketing-test/group-by-quarter-test
20932097
metabase.query-processor-test.date-bucketing-test/group-by-week-test

.github/workflows/check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v2
1818
with:
1919
repository: metabase/metabase
20-
ref: v0.45.1
20+
ref: v0.45.2
2121

2222
- name: Checkout Driver Repo
2323
uses: actions/checkout@v2

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 1.0.3
2+
3+
### Bug fixes
4+
5+
* Fixed NPE that could be thrown by the driver in case of empty database name input.
6+
17
# 1.0.2
28

39
### Bug fixes

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Metabase Release | Driver Version
6666
0.41.3.1 | 0.8.1
6767
0.42.x | 0.8.1
6868
0.44.x | 0.9.1
69-
0.45.1 | 1.0.2
69+
0.45.x | 1.0.3
7070

7171
## Creating a Metabase Docker image with ClickHouse driver
7272

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ services:
3232
hostname: server.clickhouseconnect.test
3333

3434
metabase:
35-
image: metabase/metabase:v0.45.1
35+
image: metabase/metabase:v0.45.2
3636
container_name: metabase-with-clickhouse-driver
3737
ports:
3838
- '3000:3000'

resources/metabase-plugin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
info:
22
name: Metabase ClickHouse Driver
3-
version: 1.0.2
3+
version: 1.0.3
44
description: Allows Metabase to connect to ClickHouse databases.
55
contact-info:
66
name: ClickHouse

src/metabase/driver/clickhouse.clj

+22-18
Original file line numberDiff line numberDiff line change
@@ -72,24 +72,28 @@
7272
(def ^:private excluded-schemas #{"system" "information_schema" "INFORMATION_SCHEMA"})
7373
(defmethod sql-jdbc.sync/excluded-schemas :clickhouse [_] excluded-schemas)
7474

75+
(def ^:private default-connection-details
76+
{:user "default", :password "", :dbname "default", :host "localhost", :port "8123"})
77+
7578
(defmethod sql-jdbc.conn/connection-details->spec :clickhouse
76-
[_
77-
{:keys [user password dbname host port ssl use-no-proxy]
78-
:or
79-
{user "default" password "" dbname "default" host "localhost" port "8123"}
80-
:as details}]
81-
(->
82-
{:classname "com.clickhouse.jdbc.ClickHouseDriver"
83-
:subprotocol "clickhouse"
84-
:subname (str "//" host ":" port "/" dbname)
85-
:password password
86-
:user user
87-
:ssl (boolean ssl)
88-
:use_no_proxy (boolean use-no-proxy)
89-
:use_server_time_zone_for_dates true
90-
;; temporary hardcode until we get product_name setting with JDBC driver v0.4.0
91-
:client_name "metabase/1.0.2 clickhouse-jdbc/0.3.2-patch-11"}
92-
(sql-jdbc.common/handle-additional-options details :separator-style :url)))
79+
[_ details]
80+
;; ensure defaults merge on top of nils
81+
(let [details (reduce-kv (fn [m k v] (assoc m k (or v (k default-connection-details))))
82+
default-connection-details
83+
details)
84+
{:keys [user password dbname host port ssl use-no-proxy]} details]
85+
(->
86+
{:classname "com.clickhouse.jdbc.ClickHouseDriver"
87+
:subprotocol "clickhouse"
88+
:subname (str "//" host ":" port "/" dbname)
89+
:password password
90+
:user user
91+
:ssl (boolean ssl)
92+
:use_no_proxy (boolean use-no-proxy)
93+
:use_server_time_zone_for_dates true
94+
;; temporary hardcode until we get product_name setting with JDBC driver v0.4.0
95+
:client_name "metabase/1.0.3 clickhouse-jdbc/0.3.2-patch-11"}
96+
(sql-jdbc.common/handle-additional-options details :separator-style :url))))
9397

9498
(defn- to-relative-day-num
9599
[expr]
@@ -486,7 +490,7 @@
486490

487491
(defn- post-filtered-active-tables
488492
[^DatabaseMetaData metadata db-name-or-nil]
489-
(let [db-name-snake-case (ddl.i/format-name :clickhouse db-name-or-nil)
493+
(let [db-name-snake-case (ddl.i/format-name :clickhouse (or db-name-or-nil "default"))
490494
tables (get-tables metadata db-name-snake-case)]
491495
(set
492496
(for [table (filter is-not-excluded-schema tables)]

test/metabase/driver/clickhouse_test.clj

+6-1
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,12 @@
460460
:dbname "foo"
461461
:use-no-proxy true
462462
:additional-options "sessionTimeout=42"
463-
:ssl true})))))
463+
:ssl true}))))
464+
(testing "nil dbname handling"
465+
(is (= default-connection-params
466+
(sql-jdbc.conn/connection-details->spec
467+
:clickhouse
468+
{:dbname nil})))))
464469

465470
(deftest clickhouse-boolean-result-metadata
466471
(mt/test-driver

test/metabase/test/data/clickhouse.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
(sql-jdbc.tx/add-test-extensions! :clickhouse)
1515

16-
(def product-name "metabase/1.0.2 clickhouse-jdbc/0.3.2-patch-11")
16+
(def product-name "metabase/1.0.3 clickhouse-jdbc/0.3.2-patch-11")
1717
(def default-connection-params {:classname "com.clickhouse.jdbc.ClickHouseDriver"
1818
:subprotocol "clickhouse"
1919
:subname "//localhost:8123/default"

0 commit comments

Comments
 (0)