We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05227e0 commit 9ca2dd5Copy full SHA for 9ca2dd5
src/test/recovery/t/006_logical_decoding.pl
@@ -27,7 +27,7 @@
27
28
# Basic decoding works
29
my($result) = $node_master->safe_psql('postgres', qq[SELECT pg_logical_slot_get_changes('test_slot', NULL, NULL);]);
30
-is(scalar(split /^/m, $result), 12, 'Decoding produced 12 rows inc BEGIN/COMMIT');
+is(scalar(my @foobar = split /^/m, $result), 12, 'Decoding produced 12 rows inc BEGIN/COMMIT');
31
32
# If we immediately crash the server we might lose the progress we just made
33
# and replay the same changes again. But a clean shutdown should never repeat
0 commit comments