Hi Team, We are adding a TIMETAMP col in our sche...
# general
m
Hi Team, We are adding a TIMETAMP col in our schema and our use case is to populate it with the current timestamp value when the record is getting ingested to Pinot. How can we set this inside Pinot? Something like CURRENT_TIMESTAMP() what we have in other Dbs like postgres?
x
You can make it a derived column and set it using function
now()
m
Thanks @User for the suggestion and pointing out the reference for the same