Problem dropping databases - Mailing list pgsql-hackers

From Thomas G. Lockhart
Subject Problem dropping databases
Date
Msg-id 3607AA39.84907362@alumni.caltech.edu
Whole thread Raw
Responses Re: Problem dropping databases  (Bruce Momjian <maillist@candle.pha.pa.us>)
List pgsql-hackers
I was working on docs and notice that Postgres no longer responds with a
warning if a database is dropped multiple times:

postgres=> drop database yahoo;
DESTROYDB
postgres=> drop database yahoo;
DESTROYDB
postgres=> \c yahoo
connecting to new database: yahoo
FATAL 1:  Database 'yahoo' does not exist.
golem$ psql
postgres=> drop database yahoo;
DESTROYDB

The destroydb command behaves similarly. The behavior documented by
Jose' was:

postgres=> drop database yahoo;
DESTROYDB
postgres=> drop database yahoo;
WARN: destroydb: database "yahoo" does not exist.

Bruce, this should probably go on the open issues list and be fixed for
v6.4...

                        - Tom

pgsql-hackers by date:

Previous
From: "Jose' Soares"
Date:
Subject: Re: [HACKERS] current- crash
Next
From: t-ishii@sra.co.jp (Tatsuo Ishii)
Date:
Subject: Re: [HACKERS] oid8types() borken?