This content has been marked as final.
Show 2 replies
-
1. Re: Impala translator - Won't push down from_unixtime(timestamp, string)
shawkins Sep 20, 2016 8:50 AM (in response to don.krapohl)from_unixtime is also a Teiid system function, but is mapped to timestampadd early in planning. This leads to the exception you are seeing.
The workaround is to reference the impala function specifically:
impala.from_unixtime(unix_timestamp(match_date))
We should be handling this better - by moving the mapping to timestamp add to later in planning so that sources can declare from_unixtime support. Do you want an issue for that?
-
2. Re: Impala translator - Won't push down from_unixtime(timestamp, string)
don.krapohl Sep 20, 2016 10:43 AM (in response to shawkins)Feature request filed: [TEIID-4455] Impala Translator - Change planning step for from_unixtime() pushdown - JBoss Issue Tracker
Thanks!