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
Fixescockroachdb#108087.
This fix avoids a data race in the test. The race was harmless, but
could cause the test to fail when run with the race detector.
Release note: None
// the ReplicaInfo twice for the same range. This allows us to verify that
856
858
// the cached - in the spanResolverIterator - information is correctly
857
859
// preserved.
858
-
historicalQuery=`SELECT * FROM [SELECT * FROM test WHERE k=2 UNION ALL SELECT * FROM test WHERE k=3] AS OF SYSTEM TIME follower_read_timestamp()`
859
-
n4.Exec(t, historicalQuery)
860
+
historicalQuery.Store(`SELECT * FROM [SELECT * FROM test WHERE k=2 UNION ALL SELECT * FROM test WHERE k=3] AS OF SYSTEM TIME follower_read_timestamp()`)
0 commit comments