Re: [PATCHES] New pg_dump options: exclude tables/schemas, multiple

2006-01-18 Thread Bruce Momjian
Bruce Momjian wrote: > Tom Lane wrote: > > > 3) It would require yet more arguments to pg_dump. The moment we start > > > allowing > > > regular expression characters that are also valid identifier names (e.g. > > > "." > > > and "_") we'll need some way to tell pg_dump whether we mean a literal

Re: [PATCHES] New pg_dump options: exclude tables/schemas, multiple

2006-01-18 Thread Bruce Momjian
Tom Lane wrote: > > 3) It would require yet more arguments to pg_dump. The moment we start > > allowing > > regular expression characters that are also valid identifier names (e.g. "." > > and "_") we'll need some way to tell pg_dump whether we mean a literal > > search > > or a regular expressio

Re: [PATCHES] Uninstall scripts for contrib

2006-01-18 Thread Bruce Momjian
Your patch has been added to the PostgreSQL unapplied patches list at: http://momjian.postgresql.org/cgi-bin/pgpatches It will be applied as soon as one of the PostgreSQL committers reviews and approves it. --- Da

[PATCHES] contrib/adddepend failed 8.1.2

2006-01-18 Thread ISHIDA Akio
Hi. I was trying to upgrade PostgreSQL from 7.2.8 to 8.1.2. Dump and restore work well. But adddepend was failed. To fix it, this regexp $seq =~ s|^nextval\(["']+([^'"\)]+)["']+.*\)$|$1|g; need to change $seq =~ s|^nextval\(\(["']+([^'"\)]+)["']+.*\)$|$1|g; or $seq =~ s|^nextval\(\(?["']+([^'"\)]