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

Remove date-string->literal

parent a2d8a130
No related branches found
No related tags found
No related merge requests found
......@@ -242,9 +242,6 @@
:quarter-of-year (hx/quarter expr)
:year (hx/year expr)))
(defn- date-string->literal [^String date-string]
(hx/->timestamp (hx/literal (u/format-date "yyyy-MM-dd 00:00" (u/->Date date-string)))))
(defn- unix-timestamp->timestamp [expr seconds-or-milliseconds]
(case seconds-or-milliseconds
:seconds (hsql/call :sec_to_timestamp expr)
......@@ -396,7 +393,6 @@
:connection-details->spec (constantly nil) ; since we don't use JDBC
:current-datetime-fn (constantly :%current_timestamp)
:date (u/drop-first-arg date)
:date-string->literal (u/drop-first-arg date-string->literal)
:field->alias (u/drop-first-arg field->alias)
:field->identifier (u/drop-first-arg field->identifier)
:prepare-value (u/drop-first-arg prepare-value)
......
......@@ -59,11 +59,6 @@
(date [this, ^Keyword unit, field-or-value]
"Return a HoneySQL form for truncating a date or timestamp field or value to a given resolution, or extracting a date component.")
(date-string->literal [this, ^String date-string]
"*OPTIONAL*. Return an appropriate HoneySQL form to represent a DATE-STRING literal.
The default implementation is just `hx/literal`; in other words, it just single-quotes DATE-STRING. Some drivers like BigQuery or Oracle need to do something more advanced.
(This is used for the implementation of SQL parameters).")
(excluded-schemas ^java.util.Set [this]
"*OPTIONAL*. Set of string names of schemas to skip syncing tables from.")
......@@ -425,7 +420,6 @@
:apply-page (resolve 'metabase.driver.generic-sql.query-processor/apply-page)
:column->special-type (constantly nil)
:current-datetime-fn (constantly :%now)
:date-string->literal (u/drop-first-arg hx/literal)
:excluded-schemas (constantly nil)
:field->identifier (u/drop-first-arg (comp (partial apply hsql/qualify) field/qualified-name-components))
:field->alias (u/drop-first-arg name)
......
......@@ -86,11 +86,6 @@
3)
:year (hsql/call :extract :year v)))
(defn- date-string->literal [^String date-string]
(hsql/call :to_timestamp
(hx/literal (u/format-date "yyyy-MM-dd" (u/->Date date-string)))
(hx/literal "YYYY-MM-DD")))
(def ^:private ^:const now (hsql/raw "SYSDATE"))
(def ^:private ^:const date-1970-01-01 (hsql/call :to_timestamp (hx/literal :1970-01-01) (hx/literal :YYYY-MM-DD)))
......@@ -223,7 +218,6 @@
:connection-details->spec (u/drop-first-arg connection-details->spec)
:current-datetime-fn (constantly now)
:date (u/drop-first-arg date)
:date-string->literal (u/drop-first-arg date-string->literal)
:excluded-schemas (fn [& _]
(set/union
#{"ANONYMOUS"
......
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