mirror of
https://github.com/postgres/postgres.git
synced 2026-04-08 10:38:53 -04:00
Run pgindent, pgperltidy, and reformat-dat-files. The pgindent part of this is pretty small, consisting mainly of fixing up self-inflicted formatting damage from patches that hadn't bothered to add their new typedefs to typedefs.list. In order to keep it from making anything worse, I manually added a dozen or so typedefs that appeared in the existing typedefs.list but not in the buildfarm's list. Perhaps we should formalize that, or better find a way to get those typedefs into the automatic list. pgperltidy is as opinionated as always, and reformat-dat-files too.
43 lines
1.1 KiB
Perl
43 lines
1.1 KiB
Perl
|
|
# Copyright (c) 2021-2024, PostgreSQL Global Development Group
|
|
|
|
use strict;
|
|
use warnings FATAL => 'all';
|
|
|
|
use PostgreSQL::Test::Cluster;
|
|
use PostgreSQL::Test::Utils;
|
|
use Test::More;
|
|
|
|
program_help_ok('dropdb');
|
|
program_version_ok('dropdb');
|
|
program_options_handling_ok('dropdb');
|
|
|
|
my $node = PostgreSQL::Test::Cluster->new('main');
|
|
$node->init;
|
|
$node->start;
|
|
|
|
$node->safe_psql('postgres', 'CREATE DATABASE foobar1');
|
|
$node->issues_sql_like(
|
|
[ 'dropdb', 'foobar1' ],
|
|
qr/statement: DROP DATABASE foobar1/,
|
|
'SQL DROP DATABASE run');
|
|
|
|
$node->safe_psql('postgres', 'CREATE DATABASE foobar2');
|
|
$node->issues_sql_like(
|
|
[ 'dropdb', '--force', 'foobar2' ],
|
|
qr/statement: DROP DATABASE foobar2 WITH \(FORCE\);/,
|
|
'SQL DROP DATABASE (FORCE) run');
|
|
|
|
$node->command_fails([ 'dropdb', 'nonexistent' ],
|
|
'fails with nonexistent database');
|
|
|
|
# check that invalid database can be dropped with dropdb
|
|
$node->safe_psql(
|
|
'postgres', q(
|
|
CREATE DATABASE regression_invalid;
|
|
UPDATE pg_database SET datconnlimit = -2 WHERE datname = 'regression_invalid';
|
|
));
|
|
$node->command_ok([ 'dropdb', 'regression_invalid' ],
|
|
'invalid database can be dropped');
|
|
|
|
done_testing();
|