We are using OAS Analytics Server with Databricks Warehouse. I've created a physical server of type "Apache Spark SQL" (which is the closest Technology available) that connects via ODBC (Simba Spark Driver) - this basically works.
However, I noticed that some of the built-in date/time functions generate incorrect SQL syntax. Eg: WEEK_OF_YEAR (used as a formula in a report)
The effective query that's sent to the datasource is like
cast(date_format(T237283.open_date,'w') as int) as c7
it should be
weekofyear(T237283.open_date) as c7_test
(never mind the cast)
Is there any chance to change the SQL translation from date_format(…) to weekofyear ?
OAS 6.4, Linux RedHat