Re: Weird error message from Postgres 18 - Mailing list pgsql-hackers

From Tom Lane
Subject Re: Weird error message from Postgres 18
Date
Msg-id 1438877.1755789464@sss.pgh.pa.us
Whole thread Raw
In response to Weird error message from Postgres 18  (Ranier Vilela <ranier.vf@gmail.com>)
Responses Re: Weird error message from Postgres 18
List pgsql-hackers
Ranier Vilela <ranier.vf@gmail.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.

            regards, tom lane



pgsql-hackers by date:

Previous
From: Jingtang Zhang
Date:
Subject: Re: Memory leak of SMgrRelation object on standby
Next
From: Kirill Reshke
Date:
Subject: Re: misleading error message in ProcessUtilitySlow T_CreateStatsStmt