čt 20. 3. 2025 v 22:30 odesílatel Pavel Stehule
napsal:
> Hi
>
> út 18. 3. 2025 v 21:33 odesílatel Álvaro Herrera
> napsal:
>
>> On 2025-Mar-18, Pavel Stehule wrote:
>>
>> > Maybe I found a bug
>> >
>> > (2025-03-18 19:28:06) postgres=# create table foo(a int constraint gzero
>> > check(a > 10)
Hi
út 18. 3. 2025 v 21:33 odesílatel Álvaro Herrera
napsal:
> On 2025-Mar-18, Pavel Stehule wrote:
>
> > Maybe I found a bug
> >
> > (2025-03-18 19:28:06) postgres=# create table foo(a int constraint gzero
> > check(a > 10) NOT ENFORCED);
> > CREATE TABLE
> > (2025-03-18 19:29:37) postgres=# ins
On 2025-Mar-18, Pavel Stehule wrote:
> Maybe I found a bug
>
> (2025-03-18 19:28:06) postgres=# create table foo(a int constraint gzero
> check(a > 10) NOT ENFORCED);
> CREATE TABLE
> (2025-03-18 19:29:37) postgres=# insert into foo values(0);
> INSERT 0 1
> (2025-03-18 19:29:49) postgres=# inser
Hi
I am playing with new features in Postgres 18.
Maybe I found a bug
(2025-03-18 19:28:06) postgres=# create table foo(a int constraint gzero
check(a > 10) NOT ENFORCED);
CREATE TABLE
(2025-03-18 19:29:37) postgres=# insert into foo values(0);
INSERT 0 1
(2025-03-18 19:29:49) postgres=# insert