Operator REVOKE can modify rights granted to system tables at DB creation time
--
Key: CORE-4980
URL: http://tracker.firebirdsql.org/browse/CORE-4980
Project: Firebird Core
Hi,
I'll try again with the latest snapshot build
Regards,
Arno
-Oorspronkelijk bericht-
From: Alex Peshkoff
Sent: Tuesday, October 27, 2015 10:17 AM
To: firebird-devel@lists.sourceforge.net
Subject: Re: [Firebird-devel] Firebird 3.0 B2 (and
lastsnapshot)fbclient.dll(Win32) slow unloa
On 27/10/2015 05:21, Claudio Valderrama C. wrote:
>
> My wish for FB v4 is that we stop using nod_value_if for coalesce (and for
> the CASE statement) and instead we implement a new verb. Among other things,
> it will avoid reevaluating expressions and will give us more freedom to fix
> things.
>
>
On 10/27/2015 11:12 AM, Alex Peshkoff wrote:
> On 10/26/2015 10:08 PM, Claudio Valderrama C. wrote:
>>> -Original Message-
>>> From: Arno Brinkman [mailto:fbsupp...@abvisie.nl]
>>> Sent: Lunes, 26 de Octubre de 2015 5:37
>>>
>>> Would you consider the unloading time acceptable?
>>> I think
On 10/26/2015 10:08 PM, Claudio Valderrama C. wrote:
>> -Original Message-
>> From: Arno Brinkman [mailto:fbsupp...@abvisie.nl]
>> Sent: Lunes, 26 de Octubre de 2015 5:37
>>
>> Would you consider the unloading time acceptable?
>> I think 500ms is quite a lot.
> Well, if you think about many
On 10/25/2015 03:46 PM, Mark Rotteveel wrote:
> I am looking at the init method in interface.cpp, and I see this:
>
> if (port->port_protocol < PROTOCOL_VERSION12)
> {
> // This is FB < 2.5. Lets remove that not recognized DPB/SPB and
> convert the UTF8
> // strings to the OS codepage.
Hello, I'm toying since a week with a slight simplification of core-4959 in
FB 2.5:
isql -user sysdba -pass masterkey
create database 'coalesce.fdb';
set list on;
create view v3(f1, f2) as select
coalesce(rdb$relation_id, 111),
coalesce(null, rdb$relation_id) from rdb$database;
select * from