Re: Weird error message from Postgres 18

From: Ranier Vilela <ranier(dot)vf(at)gmail(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Pg Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Weird error message from Postgres 18
Date: 2025-08-21 16:17:56
Message-ID: CAEudQAquxKYPrLGX4crPA-xsrbFgaOK1TMgisAKaARraba3umg@mail.gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Em qui., 21 de ago. de 2025 às 12:17, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> escreveu:

> Ranier Vilela <ranier(dot)vf(at)gmail(dot)com> writes:
> > create table inserttest (col1 serial PRIMARY KEY, col2 int4 NOT NULL,
> col3
> > text NOT NULL, col4 text NULL);
> > insert into inserttest select 0 AS col2, NULL AS col3, NULL AS col4;
> > ERROR: null value in column "col2" of relation "inserttest" violates
> > not-null constraint
> > DETAIL: Failing row contains (0, null, null, null).
>
> You are misunderstanding the effects of that INSERT. The AS labels
> have zero to do with the semantics, so you are inserting 0 to col1,
> null to col2 & col3, and by default null to col4.
>
Thanks for the clarification Tom.

best regards,
Ranier Vilela

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message vignesh C 2025-08-21 16:38:42 Re: Logical Replication of sequences
Previous Message Andrew Dunstan 2025-08-21 15:47:30 Re: Speed up COPY FROM text/CSV parsing using SIMD