File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -257,6 +257,7 @@ go_test(
257
257
"//pkg/sql/types" ,
258
258
"//pkg/testutils" ,
259
259
"//pkg/testutils/datapathutils" ,
260
+ "//pkg/testutils/skip" ,
260
261
"//pkg/testutils/sqlutils" ,
261
262
"//pkg/util/duration" ,
262
263
"//pkg/util/json" ,
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import (
22
22
"github.com/cockroachdb/cockroach/pkg/sql/sem/tree"
23
23
"github.com/cockroachdb/cockroach/pkg/sql/types"
24
24
"github.com/cockroachdb/cockroach/pkg/testutils/datapathutils"
25
+ "github.com/cockroachdb/cockroach/pkg/testutils/skip"
25
26
"github.com/cockroachdb/cockroach/pkg/testutils/sqlutils"
26
27
"github.com/cockroachdb/cockroach/pkg/util/leaktest"
27
28
"github.com/cockroachdb/cockroach/pkg/util/log"
@@ -192,6 +193,7 @@ func TestPrettyVerify(t *testing.T) {
192
193
func TestPrettyBigStatement (t * testing.T ) {
193
194
defer leaktest .AfterTest (t )()
194
195
defer log .Scope (t ).Close (t )
196
+ skip .UnderRace (t , "excessive memory usage" )
195
197
196
198
// Create a SELECT statement with a 1 million item IN expression. Without
197
199
// mitigation, this can cause stack overflows - see #91197.
You can’t perform that action at this time.
0 commit comments