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
103462: cloud: prevent ResumingReader from opening if pos equals size r=dt a=rhu713
Currently, ResumingReader has an issue if the final Read call of its Reader is at the end of the file and returns some other retriable error instead of the expected io.EOF. In this case, on retry, ResumableReader will attempt to open the file at a position equal to the size of the file, which will always result in an invalid range error, causing the read to always fail after exhausting retries. This patch addresses the issue by preventing ResumingReader from calling open on a position equal to the total size of the file.
Fixes#97791
Epic: none
Release note: None
106966: geoindex: skip certain tests for ARM64 r=sumeerbhola a=otan
These tests fail on the ARM64 build as they produce a slightly different result. As such, skip them for now (we have evidence of GEOS doing this for other things like VoronoiPolygons).
Refs: #106954Resolves#106964
Release note: None
Co-authored-by: Rui Hu <[email protected]>
Co-authored-by: Oliver Tan <[email protected]>
When running
geoindex
tests on the M1, you get a different result on GEOS 3.11:Visualisations
From here
Expected
Actual
Jira issue: CRDB-29775
The text was updated successfully, but these errors were encountered: