Fri, Jun 16, 2000 at 08:34:43AM +1000, Paul McGarry ÐÉÛÅÔ:
> Is there a way of compiling only the client libraries for a particular
> system?
You could compile all the sources, install to different location with
something like
make install \
POSTGRESDIR=$prefix \
POSTMANDIR=$pref
Mon, May 29, 2000 at 08:51:10PM -0700, Stephan Szabo write:
> This is a known issue in the 7.0 foreign key implementation. The short
Thank you, now it's clear for me.
> It's something that will get fixed, it's just a question of how and when.
^^
It's just what
Excuse me for my bad English.
Let us create test database as superuser:
create table master ( i integer primary key, a text);
-- I want to protect this table from updating by 'dbuser'
create table slave ( j integer references master, b text);
-- I want to enable updating