Apparently, PostgreSQL doesn\'t have DATEADD, because you can just use the + or - operators.
DATEADD
+
-
I need to add a number of hours t
The one worked for me is
SELECT date_field + interval '1' HOUR * start_time
start_time can be any numerical value.