SELECT min(date_0), max(date_0), (min(date_0)+(300000000000)), (min(date_0)+(3000*100000000)) , (max(date_0) - min(date_0))/3000
the 3000 * 100000000 's result is ERROR
SELECT min(date_0), max(date_0), (min(date_0)+(300000000000)), (min(date_0)+(3000*100000000)) , (max(date_0) - min(date_0))/3000
the 3000 * 100000000 's result is ERROR
Thank you for pointing this out. Nothing to do with ES BTW.
Could you try following?:
Change to:
3000*CAST(100000000 AS BIGINT)
I mean, dremio can automatically convert types?
Hi @JoyJava
When you say convert data types, yes just to reformat results on the UI and yes we can save a converted result set as a virtual data set.
Kindly let us know if any additional questions,
Thanks,
@balaji.ramaswamy