Skip to content
Snippets Groups Projects
Commit 8a08b3af authored by Callum Herries's avatar Callum Herries
Browse files

Add presto implementation

parent 2879253a
No related branches found
No related tags found
No related merge requests found
......@@ -162,6 +162,10 @@
(hh/where [:> :__rownum__ offset])
(hh/limit items))))))
(defmethod sql.qp/->honeysql [:presto-common :now]
[_driver _clause]
(hsql/call :date_trunc (hx/literal :second) (hsql/call :now)))
(defmethod sql.qp/date [:presto-common :default] [_ _ expr] expr)
(defmethod sql.qp/date [:presto-common :minute] [_ _ expr] (hsql/call :date_trunc (hx/literal :minute) expr))
(defmethod sql.qp/date [:presto-common :minute-of-hour] [_ _ expr] (hsql/call :minute expr))
......
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