Skip to content

Commit

Permalink
opt: fix show_trace_nonmetamorphic flake
Browse files Browse the repository at this point in the history
A new test involving traces was added to this file and it is flaky
because of column family randomization. Fixing by specifying the
family explicitly.

Informs #63655.

Release note: None
  • Loading branch information
RaduBerinde committed Jul 22, 2021
1 parent 5c56090 commit 1b10be2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ dist sender send r40: sending batch 1 EndTxn to (n1,s1):1

# make a table with some big strings in it.
statement ok
CREATE TABLE blobs (i INT PRIMARY KEY, j STRING)
CREATE TABLE blobs (i INT PRIMARY KEY, j STRING, FAMILY (i, j))

# make a table with some big (1mb) strings in it.
statement ok
Expand Down

0 comments on commit 1b10be2

Please sign in to comment.