Re: [GENERAL] just little BUG

1999-07-09 Thread Jonathan davis
>[Charset iso-8859-1 unsupported, filtering to ASCII...] >> hello all >> >> normaly a UNIQUE PRIMARY KEY is unique but >> when you use a heritage, you can insert a duplicate key > >I assume you mean inheritance. > >Can you send us a little test sample please? > >-- hello all this is th

[GENERAL] just little BUG

1999-07-08 Thread Jonathan davis
hello all normaly a UNIQUE PRIMARY KEY is unique but when you use a heritage, you can insert a duplicate key

[GENERAL] update and inherits

1999-07-07 Thread Jonathan davis
>i want to : update virtual_table set field1 = 3 where index = 4; > >create table virtual_table(index int4, field1 int4); > >create table table1 ( )inherits(virtual_table); > >create table table2( )inherits(virtual_table); > >insert into table1(index, field1) values(4, 0); > >and i want to

Re: [GENERAL] Problems with inequalities on numeric fields in 6.5

1999-07-07 Thread Jonathan davis
hello all i want to : update virtual_table set field1 = 3 where index = 4; create table virtual_table(index int4, field1 int4); create table table1 ( )inherits(virtual_table); create table table2( )inherits(virtual_table); insert into table1(index, field1) values(4, 0); and i want to