We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 659e53a commit 776f9e5Copy full SHA for 776f9e5
1 file changed
src/metabase/driver/athena.clj
@@ -245,6 +245,7 @@
245
246
;; Required because we're calling our own custom private get-tables method to support Athena
247
(defn- fast-active-tables [driver, ^DatabaseMetaData metadata, & [db-name-or-nil]]
248
+ ;; TODO: Catch errors here so a single exception doesn't fail the entire schema
249
(with-open [rs (.getSchemas metadata)]
250
(let [all-schemas (set (map :table_schem (jdbc/metadata-result rs)))
251
schemas (set/difference all-schemas (sql-jdbc.sync/excluded-schemas driver))]
0 commit comments