How to Make Resampled Time Endings Instead of Startings in Continuous Queries of InfluxDB 1.8?

my continuous query is:

CREATE CONTINUOUS QUERY "resample_min" ON "trader" RESAMPLE EVERY 10s FOR 3m 
    BEGIN
        select FIRST(close::field) AS open, MAX(close::field) AS high, MIN(close::field) AS low, LAST(close::field) AS close, LAST(open_interest::field) AS open_interest 
        into "tb_min" from tb_tick group by time(1m),symbol, variety, exchange  
    END

How can I ensure that the timestamps of the data inserted into tb_min correspond to the end times of the resampling?

@kcrazy To my knowledge, this behavior can’t be changed unfortunately. There’s no option with continuous queries to change the resulting aggregate timestamp.