// This works when executed in the DBrowser
var ok real relation { a integer, b integer } init (relation {tuple { a 1, b 1 }}) key { a };
update ok where a = 1 ( b := 2 );
// This doesn't
var notok private relation { a integer, b integer } init (relation {tuple { a 1, b 1 }}) key { a };
update notok where a = 1 ( b := 2 );
Update not working for private relvar
Re: Update not working for private relvar
Nice catch! The problem applies to DELETE notok ... as well.
I've put this on my "to do" list, to be fixed in the next update.
I've put this on my "to do" list, to be fixed in the next update.
Re: Update not working for private relvar
This is now fixed, to be included in the next update in a few days.
Re: Update not working for private relvar
Great.
I look forward to trying out the fix.
I look forward to trying out the fix.
Re: Update not working for private relvar
My apologies for the considerable delay. The 1.07 update will be available shortly.