Re: psql: no schema info
- From: chester c young <chestercyoung(at)yahoo(dot)com>
- To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
- Cc: sql pgsql <pgsql-sql(at)postgresql(dot)org>
- Subject: Re: psql: no schema info
- Date: Sun, 27 Apr 2008 16:33:26 -0700 (PDT)
- Message-id: <213749.31261.qm@web54304.mail.re2.yahoo.com> <text/plain>
> > however, just got burnt big time on sequences! need to qualify
> them as
> > well, eg
> > col1 integer default nextval( 'schema1.seq1' )
>
> Move to something newer than 8.0.x, and this is automatic (because
> nextval's argument is actually a regclass constant).
>
> regards, tom lane
using 8.2 and 8.3
here's (psychological) problem as I see it:
# set search_path=old_schema;
#
# create sequence new_schema.seq1;
#
# create table new_schema.table1(
# col1 integer default nextval( 'seq1' )
# );
using old_schema.seq1, not new_schema.seq1
and imho to make matters more difficult to troubleshoot:
# \dt table1 -> does not show which schema for seq1
____________________________________________________________________________________
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
Home |
Main Index |
Thread Index