Re: wrong error message related to unsupported feature

2025-03-23 Thread Pavel Stehule
č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)

Re: wrong error message related to unsupported feature

2025-03-20 Thread Pavel Stehule
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

Re: wrong error message related to unsupported feature

2025-03-18 Thread Álvaro Herrera
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

wrong error message related to unsupported feature

2025-03-18 Thread Pavel Stehule
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