Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Postgres/src/bin/pg_dump/t/   (Postgres Database Version 18.4©)  Datei vom 11.4.2026 mit Größe 1 kB image not shown  

Quelle  003_pg_dump_with_server.pl

  Sprache: Shell
 


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

use strict;
use warnings FATAL => 'all';

use PostgreSQL::Test::Cluster;
use PostgreSQL::Test::Utils;
use Test::More;

my $tempdir = PostgreSQL::Test::Utils::tempdir;

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

$node->init;
$node->start;

#########################################
# pg_dumpall: newline in database name

$node->safe_psql('postgres', qq{CREATE DATABASE "regress_\nattack"});

my (@cmd, $stdout, $stderr);
@cmd = ("pg_dumpall"'--port' => $port, '--exclude-database=postgres');
print("# Running: " . join(" ", @cmd) . "\n");
my $result = IPC::Run::run \@cmd, '>' => \$stdout, '2>' => \$stderr;
ok(!$result, "newline in dbname: exit code not 0");
like(
 $stderr,
 qr/shell command argument contains a newline/,
 "newline in dbname: stderr matches");
unlike($stdout, qr/^attack/m, "newline in dbname: no comment escape");

#########################################
# Verify that dumping foreign data includes only foreign tables of
# matching servers

$node->safe_psql('postgres'"CREATE FOREIGN DATA WRAPPER dummy");
$node->safe_psql('postgres'"CREATE SERVER s0 FOREIGN DATA WRAPPER dummy");
$node->safe_psql('postgres'"CREATE SERVER s1 FOREIGN DATA WRAPPER dummy");
$node->safe_psql('postgres'"CREATE SERVER s2 FOREIGN DATA WRAPPER dummy");
$node->safe_psql('postgres'"CREATE FOREIGN TABLE t0 (a int) SERVER s0");
$node->safe_psql('postgres'"CREATE FOREIGN TABLE t1 (a int) SERVER s1");

command_fails_like(
 [
  "pg_dump",
  '--port' => $port,
  '--include-foreign-data' => 's0',
  'postgres'
 ],
 qr/foreign-data wrapper \"dummy\" has no handler\r?\npg_dump: detail: Query was: .*t0/,
 "correctly fails to dump a foreign table from a dummy FDW");

command_ok(
 [
  "pg_dump",
  '--port' => $port,
  '--data-only',
  '--include-foreign-data' => 's2',
  'postgres'
 ],
 "dump foreign server with no tables");

done_testing();

¤ Dauer der Verarbeitung: 0.16 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.