Hey everyone :wave: When querying Pinot through Pr...
# general
l
Hey everyone 👋 When querying Pinot through Presto, is there any way to call the Pinot UDF functions? For example, I would like to use the LASTWITHTIME function, but I am not sure how to do this through Presto.
Copy code
SELECT dimension FROM table WHERE some_id = 'identifier' GROUP BY LASTWITHTIME(dimension, timestamp, 'String')
j
@User ^^
x
the UDFs are not automatically pushed down. You need to implement it in the presto connector
l
Thank you I’ll have a look 👍