Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  030_pg_recvlogical.pl

  Sprache: Shell
 


# Copyright (c) 2021-2025, PostgreSQL Global Development Group

use strict;
use warnings FATAL => 'all';
use PostgreSQL::Test::Utils;
use PostgreSQL::Test::Cluster;
use Test::More;

program_help_ok('pg_recvlogical');
program_version_ok('pg_recvlogical');
program_options_handling_ok('pg_recvlogical');

my $node = PostgreSQL::Test::Cluster->new('main');

# Initialize node without replication settings
$node->init(allows_streaming => 1, has_archiving => 1);
$node->append_conf(
 'postgresql.conf', q{
wal_level = 'logical'
max_replication_slots = 4
max_wal_senders = 4
log_min_messages = 'debug1'
log_error_verbosity = verbose
max_prepared_transactions = 10
});
$node->dump_info;
$node->start;

$node->command_fails(['pg_recvlogical'], 'pg_recvlogical needs a slot name');
$node->command_fails(
 [ 'pg_recvlogical''--slot' => 'test' ],
 'pg_recvlogical needs a database');
$node->command_fails(
 [ 'pg_recvlogical''--slot' => 'test''--dbname' => 'postgres' ],
 'pg_recvlogical needs an action');
$node->command_fails(
 [
  'pg_recvlogical',
  '--slot' => 'test',
  '--dbname' => $node->connstr('postgres'),
  '--start',
 ],
 'no destination file');

$node->command_ok(
 [
  'pg_recvlogical',
  '--slot' => 'test',
  '--dbname' => $node->connstr('postgres'),
  '--create-slot',
 ],
 'slot created');

my $slot = $node->slot('test');
isnt($slot->{'restart_lsn'}, '''restart lsn is defined for new slot');

$node->psql('postgres''CREATE TABLE test_table(x integer)');
$node->psql('postgres',
 'INSERT INTO test_table(x) SELECT y FROM generate_series(1, 10) a(y);');
my $nextlsn =
  $node->safe_psql('postgres''SELECT pg_current_wal_insert_lsn()');
chomp($nextlsn);

$node->command_ok(
 [
  'pg_recvlogical',
  '--slot' => 'test',
  '--dbname' => $node->connstr('postgres'),
  '--start',
  '--endpos' => $nextlsn,
  '--no-loop',
  '--file' => '-',
 ],
 'replayed a transaction');

$node->command_ok(
 [
  'pg_recvlogical',
  '--slot' => 'test',
  '--dbname' => $node->connstr('postgres'),
  '--drop-slot'
 ],
 'slot dropped');

#test with two-phase option enabled
$node->command_ok(
 [
  'pg_recvlogical',
  '--slot' => 'test',
  '--dbname' => $node->connstr('postgres'),
  '--create-slot',
  '--two-phase',
 ],
 'slot with two-phase created');

$slot = $node->slot('test');
isnt($slot->{'restart_lsn'}, '''restart lsn is defined for new slot');

$node->safe_psql('postgres',
 "BEGIN; INSERT INTO test_table values (11); PREPARE TRANSACTION 'test'");
$node->safe_psql('postgres'"COMMIT PREPARED 'test'");
$nextlsn = $node->safe_psql('postgres''SELECT pg_current_wal_insert_lsn()');
chomp($nextlsn);

$node->command_fails(
 [
  'pg_recvlogical',
  '--slot' => 'test',
  '--dbname' => $node->connstr('postgres'),
  '--start',
  '--endpos' => $nextlsn,
  '--enable-two-phase''--no-loop',
  '--file' => '-',
 ],
 'incorrect usage');

$node->command_ok(
 [
  'pg_recvlogical',
  '--slot' => 'test',
  '--dbname' => $node->connstr('postgres'),
  '--start',
  '--endpos' => $nextlsn,
  '--no-loop',
  '--file' => '-',
 ],
 'replayed a two-phase transaction');

$node->command_ok(
 [
  'pg_recvlogical',
  '--slot' => 'test',
  '--drop-slot'
 ],
 'drop could work without dbname');

# test with failover option enabled
$node->command_ok(
 [
  'pg_recvlogical',
  '--slot' => 'test',
  '--dbname' => $node->connstr('postgres'),
  '--create-slot',
  '--enable-failover',
 ],
 'slot with failover created');

my $result = $node->safe_psql('postgres',
 "SELECT failover FROM pg_catalog.pg_replication_slots WHERE slot_name = 'test'"
);
is($result, 't'"failover is enabled for the new slot");

done_testing();

Messung V0.5 in Prozent
C=88 H=91 G=89

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet am  2026-08-10) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Statistik
#Sources=277311
#Domains=752002