sashidhar opened a new issue #8180: Druid SQL FLOOR time function should support all the time units it shows in error messages URL: https://github.com/apache/incubator-druid/issues/8180 ### Affected Version Druid version 0.15.0 (and probably all other previous versions) ### Description Run the below query `SELECT FLOOR(CURRENT_TIMESTAMP TO XYZ) from wikipedia limit 1;` It returns the following error message: `Unknown exception / Encountered "TO XYZ" at line 1, column 47. Was expecting one of: ")" ... "NOT" ... "IN" ... "<" ... "<=" ... ">" ... ">=" ... "=" ... "<>" ... "!=" ... "BETWEEN" ... "LIKE" ... "SIMILAR" ... "+" ... "-" ... "*" ... "/" ... "%" ... "||" ... "AND" ... "OR" ... "IS" ... "MEMBER" ... "SUBMULTISET" ... "CONTAINS" ... "OVERLAPS" ... "EQUALS" ... "PRECEDES" ... "SUCCEEDS" ... "IMMEDIATELY" ... "MULTISET" ... "[" ... "(" ... "TO" "MICROSECOND" ... "TO" "MILLISECOND" ... "TO" "SECOND" ... "TO" "MINUTE" ... "TO" "HOUR" ... "TO" "DAY" ... "TO" "DOW" ... "TO" "DOY" ... "TO" "ISODOW" ... "TO" "ISOYEAR" ... "TO" "WEEK" ... "TO" "MONTH" ... "TO" "QUARTER" ... "TO" "YEAR" ... "TO" "EPOCH" ... "TO" "DECADE" ... "TO" "CENTURY" ... "TO" "MILLENNIUM" ... / org.apache.calcite.sql.parser.SqlParseException` FLOOR function doesn't support these time units mentioned in the above error message - MICROSECOND, MILLISECOND, DOW, DOY, ISODOW, ISOYEAR, EPOCH, DECADE, CENTURY and MILLENNIUM For example, `SELECT FLOOR(CURRENT_TIMESTAMP TO MICROSECOND) from wikipedia limit 1;` returns Unknown exception / Cannot build plan for query: SELECT * FROM (SELECT FLOOR(CURRENT_TIMESTAMP TO MICROSECOND) from wikipedia limit 1) LIMIT 5000 / org.apache.druid.java.util.common.ISE `SELECT FLOOR(CURRENT_TIMESTAMP TO ISOYEAR) from wikipedia limit 1;` returns `Unknown exception / ISOYEAR / org.apache.calcite.sql.parser.SqlParseException` Found this while playing around with FLOOR function on the lines of #7935.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
