Hello all,
in the event-collection I create a new table, wherein I join two tables based on the following rule:
JOIN
WHERE "Alarm"."Starttime" > "Transport"."Starttime" AND "Alarm"."Starttime" < "Transport"."Endtime"
This works. Now I would like to extend this timeframe by 5 Minutes. And neither the function:
add_minutes("Transport"."Endtime", 5) is supported nor the function REMAP_TIMESTAMPS("Alarm"."Starttime") < (REMAP_TIMESTAMPS("Transport"."Endtime") + 5)
How can I change/remap a timestamp in the event collection?