Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: a test is failing on master due to current-time dependencies (#6706
) This test does something like this: ``` CREATE TABLE temp AS eap_spans_2_local; INSERT INTO temp (some data) -- irrelevant SELECT * FROM temp ``` The problem is that eap_spans_2_local has a TTL of 90 days, so between steps 2 and 3, the data is deleted (the hardcoded timestamp is now more than 90 days old!) This updates the timestamp used by the test to be recent, so that the data isn't TTL-d out before the test can use it.
- Loading branch information