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

Merge pull request #1582 from metabase/fix-generic-sql-driver-features-fn

Fix typo in Generic SQL features implementation :unamused:
parents af190d67 6cac7ea0
No related branches found
No related tags found
No related merge requests found
......@@ -70,6 +70,7 @@
:apply-page (resolve 'metabase.driver.generic-sql.query-processor/apply-page)
:current-datetime-fn (constantly (k/sqlfn* :NOW))
:excluded-schemas (constantly nil)
:set-timezone-sql (constantly nil)
:stddev-fn (constantly :STDDEV)})
......@@ -185,7 +186,7 @@
(defn features [driver]
(set (cond-> [:foreign-keys
:standard-deviation-aggregations]
(:set-timezone-sql driver) (conj :set-timezone))))
(set-timezone-sql driver) (conj :set-timezone))))
(defn IDriverSQLDefaultsMixin
"Default implementations of methods in `IDriver` for SQL drivers."
......
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