In case you have your own slow SQL query, you can optimize it automatically here.
For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:
CREATE INDEX my_table_idx_my_timestamp ON "my_table" ("my_timestamp");
SELECT
my_table.my_row_id,
my_table.my_item_id
FROM
my_table
WHERE
my_table.my_timestamp > TIMESTAMP '2018-09-13 00:00:00'
ORDER BY
my_table.my_timestamp DESC