diff --git a/deps.edn b/deps.edn index f76b83c..e33a909 100644 --- a/deps.edn +++ b/deps.edn @@ -21,7 +21,7 @@ :aliases {:dev {:extra-deps - { io.github.metabase/metabase { :git/tag "v0.49.25", :git/sha "59ee427" } } + { io.github.metabase/metabase { :git/tag "v0.50.31", :git/sha "f754eda" } } } } } diff --git a/resources/metabase-plugin.yaml b/resources/metabase-plugin.yaml index 89b4789..28fd531 100644 --- a/resources/metabase-plugin.yaml +++ b/resources/metabase-plugin.yaml @@ -1,7 +1,7 @@ info: name: Metabase Teradata Driver # also replace the version in deps.edn if you change the metabase version here - version: 1.1.9-metabase-v0.49.25-teradata-jdbc-20.00 + version: 1.1.10-metabase-v0.50.31-teradata-jdbc-20.00 description: Allows Metabase to connect to Teradata databases. Community Supported driver. dependencies: - class: com.teradata.jdbc.TeraDriver @@ -37,7 +37,7 @@ driver: - additional-options - placeholder: e.g. COPLAST=OFF # required in order that `Choose when syncs and scans happen` shows up in database options afterwards - # (during first time setup, you only see `Periodically refingerprint tables` in metabase v0.49.25 + # (during first time setup, you only see `Periodically refingerprint tables` in metabase v0.50.31 # the option `Choose when syncs and scans happen` only shows up later in admin -> Database -> advanced options) - default-advanced-options connection-properties-include-tunnel-config: false diff --git a/src/metabase/driver/teradata.clj b/src/metabase/driver/teradata.clj index 7589abb..d0b7e97 100644 --- a/src/metabase/driver/teradata.clj +++ b/src/metabase/driver/teradata.clj @@ -384,9 +384,6 @@ (defmethod sql.qp/current-datetime-honeysql-form :teradata [_] now) -; TODO check if overriding apply-top-level-clause could make nested queries work -(defmethod driver/supports? [:teradata :nested-queries] [_ _] false) - ;; Overridden to customise the C3P0 properties which can be used to avoid the high number of logins against Teradata ;; In case of such problem increase the value of acquireRetryDelay ;; https://github.com/metabase/metabase/blob/master/src/metabase/driver/sql_jdbc/connection.clj#L42