diff options
-rw-r--r-- | src/bin/pg_walsummary/t/002_blocks.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/pg_walsummary/t/002_blocks.pl b/src/bin/pg_walsummary/t/002_blocks.pl index 723285943f5..c1303b188cf 100644 --- a/src/bin/pg_walsummary/t/002_blocks.pl +++ b/src/bin/pg_walsummary/t/002_blocks.pl @@ -56,7 +56,8 @@ note_wal_summary_dir("after insert", $node1); # Update a row in the first block of the table and trigger a checkpoint. $node1->safe_psql('postgres', <<EOM); -UPDATE mytable SET b = 'abcdefghijklmnopqrstuvwxyz' WHERE a = 2; +UPDATE mytable SET b = 'abcdefghijklmnopqrstuvwxyz' || b || '01234567890' + WHERE a = 2; CHECKPOINT; EOM |