Re: [ADMIN] Client Libraries

2000-06-15 Thread Eugene Karpachov
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

Re: [ADMIN] grant select,update - bug or feature?

2000-05-30 Thread Eugene Karpachov
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

[ADMIN] grant select,update - bug or feature?

2000-05-29 Thread Eugene Karpachov
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