public inbox for [email protected]help / color / mirror / Atom feed
[PATCH 02/12] Run 011_crash_recovery.pl with wal_level=minimal 127+ messages / 2 participants [nested] [flat]
* [PATCH 02/12] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --45Z9DzgjV8m4Oswq Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 5/6] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 14154d1ce0..4b11e40544 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -12,7 +12,7 @@ use Test::More; use Config; my $node = PostgreSQL::Test::Cluster->new('primary'); -$node->init(allows_streaming => 1); +$node->init(allows_streaming => 0); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.1 --pAwQNkOnpTn9IO2O Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0006-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v9 2/9] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index a26e99500b..2e7e3db639 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -14,7 +14,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --neYutvxvOLaeuPCA Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9-0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v7 2/9] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index a26e99500b..2e7e3db639 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -14,7 +14,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --JYK4vJDZwFMowpUq Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v7-0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v8 2/9] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index a26e99500b..2e7e3db639 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -14,7 +14,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --P+33d92oIH25kiaB Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8-0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/12] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --45Z9DzgjV8m4Oswq Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.27.0 ----Next_Part(Mon_Mar__8_17_32_42_2021_572)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v1-0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --f0KYrhQ4vYSV2aJu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --0qVF/w3MHQqLSynd Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --XsQoSWH+UP9D9v3l Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal @ 2021-03-08 06:32 Kyotaro Horiguchi <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kyotaro Horiguchi @ 2021-03-08 06:32 UTC (permalink / raw) The test doesn't need that feature and pg_current_xact_id() is better exercised by turning off the feature. Copied from: https://www.postgresql.org/message-id/20210308.173242.463790587797836129.horikyota.ntt%40gmail.com --- src/test/recovery/t/011_crash_recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/recovery/t/011_crash_recovery.pl b/src/test/recovery/t/011_crash_recovery.pl index 10cd98f70a..690655dda2 100644 --- a/src/test/recovery/t/011_crash_recovery.pl +++ b/src/test/recovery/t/011_crash_recovery.pl @@ -11,7 +11,7 @@ use Config; plan tests => 3; my $node = get_new_node('primary'); -$node->init(allows_streaming => 1); +$node->init(); $node->start; my ($stdin, $stdout, $stderr) = ('', '', ''); -- 2.17.0 --jozmn01XJZjDjM3N Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-Make-sure-published-XIDs-are-persistent.patch" ^ permalink raw reply [nested|flat] 127+ messages in thread
* RE: Initial Schema Sync for Logical Replication @ 2023-03-16 16:56 Kumar, Sachin <[email protected]> 0 siblings, 0 replies; 127+ messages in thread From: Kumar, Sachin @ 2023-03-16 16:56 UTC (permalink / raw) To: Peter Smith <[email protected]>; +Cc: [email protected] <[email protected]> Hi Peter, > Hi, > > I have a couple of questions. > > Q1. > > What happens if the subscriber already has some tables present? For > example, I did not see the post saying anything like "Only if the table does > not already exist then it will be created". > My assumption was the if subscriber is doing initial schema sync , It does not have any conflicting database objects. > On the contrary, the post seemed to say SUBREL_STATE_CREATE 'c' would > *always* be set when this subscriber mode is enabled. And then it seemed > to say the table would *always* get re-created by the tablesync in this new > mode. Right > > Won't this cause problems > - if the user wanted a slightly different subscriber-side table? (eg some extra > columns on the subscriber-side table) > - if there was some pre-existing table data on the subscriber-side table that > you now are about to re-create and clobber? > > Or does the idea intend that the CREATE TABLE DDL that will be executed is > like "CREATE TABLE ... IF NOT EXISTS"? > pg_dump does not support --if-not-exists , But I think it can be added and we get a dump with IF NOT EXISTS. On subscriber side we get table OID list, we can use this change table_state = SUBREL_STATE_INIT so that it won't be recreated. > ~~~ > > Q2. > > The post says. "DDL replication is required for this feature". And "It should > also have turned on publication of DDL commands." > > It wasn't entirely clear to me why those must be a requirement. Is that just to > make implementation easier? DDL replication is needed to facilitate concurrent DDL, so that we don’t have to worry about schema change at the same time when subscriber is initializing. if we can block publisher so that it does not do DDLs or subscriber can simple error out if it sees conflicting table information , then we don’t need to use DDL replication. Regards Sachin > > Sure, I see that the idea might have some (or maybe a lot?) of common > internal code with the table DDL replication work, but OTOH an auto-create > feature for subscriber tables seems like it might be a useful feature to have > regardless of the value of the publication 'ddl' parameter. > > ------ > Kind Regards, > Peter Smith. > Fujitsu Australia. ^ permalink raw reply [nested|flat] 127+ messages in thread
end of thread, other threads:[~2023-03-16 16:56 UTC | newest] Thread overview: 127+ messages (download: mbox mbox.gz follow: Atom feed) -- links below jump to the message on this page -- 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 5/6] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/12] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v7 2/9] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v8 2/9] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v9 2/9] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/12] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH v1 1/2] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 02/10] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2021-03-08 06:32 [PATCH 1/8] Run 011_crash_recovery.pl with wal_level=minimal Kyotaro Horiguchi <[email protected]> 2023-03-16 16:56 RE: Initial Schema Sync for Logical Replication Kumar, Sachin <[email protected]>
This inbox is served by agora; see mirroring instructions for how to clone and mirror all data and code used for this inbox