From 6da7e55bd01a49355c39b47f4fbbba5b95bbaf03 Mon Sep 17 00:00:00 2001 From: Rafi Shamim Date: Thu, 23 Mar 2023 18:05:02 +0000 Subject: [PATCH] sql/tests: give more memory to TestSchemaChangesInParallel The test has previously failed due to running out of memory. Since it's an expensive test, this is somewhat expected. Release note: None --- pkg/sql/tests/schema_changes_in_parallel_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/sql/tests/schema_changes_in_parallel_test.go b/pkg/sql/tests/schema_changes_in_parallel_test.go index 4b96f7e86556..9ef8a343af4d 100644 --- a/pkg/sql/tests/schema_changes_in_parallel_test.go +++ b/pkg/sql/tests/schema_changes_in_parallel_test.go @@ -39,6 +39,7 @@ func TestSchemaChangesInParallel(t *testing.T) { }, JobsTestingKnobs: jobs.NewTestingKnobsWithShortIntervals(), }, + SQLMemoryPoolSize: 1 << 30, /* 1GiB */ }) defer s.Stopper().Stop(ctx)