pinot icon indicating copy to clipboard operation
pinot copied to clipboard

Add support for INTERVAL / TIMESPAN datatype in Pinot

Open vvivekiyer opened this issue 2 years ago • 0 comments

The INTERVAL datatype will allow users to manipulate a period of time in years, months, days, hours, minutes, seconds, etc

Example of use:

SELECT
	now(),
	now() - INTERVAL '1 year 3 hours 20 minutes' 

Postgres reference - https://www.postgresql.org/docs/current/datatype-datetime.html

vvivekiyer avatar Oct 12 '22 18:10 vvivekiyer