Skip to content
Snippets Groups Projects
Commit 6fe04c35 authored by Cam Saül's avatar Cam Saül
Browse files

Merge pull request #386 from metabase/qp_dont_fail_on_partial_sync

Handle cases where sync didn't complete
parents 57df569a 936a2da6
No related branches found
No related tags found
No related merge requests found
......@@ -203,8 +203,16 @@
(into {}))]
(->> column-names
(map (fn [column-name]
(or (columns column-name) ; try to get matching column from the map we build earlier
(get-special-column-info query column-name))))))) ; if it's not there then it's a special column like `count`
(try
(or (columns column-name) ; try to get matching column from the map we build earlier
(get-special-column-info query column-name)) ; if it's not there then it's a special column like `count`
(catch Throwable _ ; If for some reason column info lookup failed just return empty info map
{:name column-name ; TODO - should we log this ? It shouldn't be happening ideally
:id nil
:table_id nil
:description nil
:base_type :UnknownField
:special_type nil})))))))
(defn get-special-column-info
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment