Skip to content

Commit

Permalink
changefeedccl: enable vmodule for TestAlterChangefeedSwitchFamily
Browse files Browse the repository at this point in the history
This patch enables verbose logging (vmodule `helpers_test=1`) for
`TestAlterChangefeedSwitchFamily` so that we can get more information
about what, if any, messages that the changefeed sees before the test
times out.

Release note: None
  • Loading branch information
andyyang890 committed Oct 3, 2024
1 parent eb1cdf8 commit 85a116f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/ccl/changefeedccl/alter_changefeed_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,8 @@ func TestAlterChangefeedSwitchFamily(t *testing.T) {
defer leaktest.AfterTest(t)()
defer log.Scope(t).Close(t)

require.NoError(t, log.SetVModule("helpers_test=1"))

testFn := func(t *testing.T, s TestServer, f cdctest.TestFeedFactory) {
sqlDB := sqlutils.MakeSQLRunner(s.DB)
sqlDB.Exec(t, `CREATE TABLE foo (a INT PRIMARY KEY, b STRING, FAMILY onlya (a), FAMILY onlyb (b))`)
Expand Down

0 comments on commit 85a116f

Please sign in to comment.