Re: dbmirror - migration to 8.3 from 7.4 - Mailing list pgsql-sql

From Achilleas Mantzios
Subject Re: dbmirror - migration to 8.3 from 7.4
Date
Msg-id 200805071452.59344.achill@matrix.gatewaynet.com
Whole thread Raw
In response to Re: dbmirror - migration to 8.3 from 7.4  ("Claus Guttesen" <kometen@gmail.com>)
List pgsql-sql
Στις Wednesday 07 May 2008 14:49:31 ο/η Claus Guttesen έγραψε:
> > we have been running our own heavily modified/enhanced version of dbmirror, running on 7.4 for some years,
> > and now it is the time to upgrade to 8.3.
> >
> > The way i find the primary key of a table is:
> >        SELECT indkey FROM pg_index WHERE indisprimary='t' AND indrelid=TABLEOID;
> > i noticed that some columns have been added to pg_index : indisvalid, indcheckxmin, indisready,indoption
> > Should i include any of them (e.g. indisvalid) in the where clause above?
>
> Do you use oid? We had an issue where old code relied on oid and when
> we tested 8.2 we had issues with oid being used but not available. The
> fix was easy and only required a id-column of type serial.
>
No, we dont use OID as primary keys.


--
Achilleas Mantzios


pgsql-sql by date:

Previous
From: "Claus Guttesen"
Date:
Subject: Re: dbmirror - migration to 8.3 from 7.4
Next
From: Julien Cigar
Date:
Subject: how to check if a point is contained in a polygon ?