You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
0 commit comments