From: | Jean Prulière <jean(at)oclock(dot)io> |
---|---|
To: | pgsql-bugs(at)lists(dot)postgresql(dot)org |
Subject: | Identity column behavior discrepancies when inserting one or many rows |
Date: | 2020-10-12 10:05:06 |
Message-ID: | CACYaYVVxiajieLxp74_c66fb2OXP=QZgTMxU6y9ERjWty3jL+w@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
Hi there !
I am teaching PostgreSQL at an online school and we recently stumbled upon
a rather strange behavior while experimenting with the identity column
feature. I know it is not something any skilled person would do but it is
still, imho, different from what the documentation states. Our students
love testing and it is quite frustrating if no one can explain what they
found.
Here is a very simple script to reproduce what we encountered :
CREATE TABLE test (
> id int GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
> sometext text NOT NULL
> );
>
> -- that one works : INSERT 0 1
> -- I think it should not and throw a 428C9
> INSERT INTO test (id, sometext)
>
VALUES (DEFAULT, 'test');
>
> -- this one does not : SQL state : 428C9
> INSERT INTO test (id, sometext)
>
VALUES (DEFAULT, 'test2'),
> (DEFAULT, 'test3');
>
Though GENERATED ALWAYS implies the absence of the identity column in the
column names list of any INSERT statement, listing it there is OK, without
the OVERRIDING SYSTEM VALUE flag, as long as only one row is inserted (and
DEFAULT is used as value, of course). But starting at 2 rows (and I can
only guess it never stops), the proper error is thrown, advising to use the
aforementioned flag.
Is there any reason I missed such behavior would be expected ?
I upgraded my cluster (was 11.9, is now 13) to the latest version to be
sure it is still effective : it is.
Here is the version and platform info returned by calling version() :
PostgreSQL 13.0 (Ubuntu 13.0-1.pgdg18.04+1) on x86_64-pc-linux-gnu,
compiled by gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0, 64-bit
It is my first bug report, sorry if I failed to report some piece of info
:-|
Peace !
Jean Pruliere
From | Date | Subject | |
---|---|---|---|
Next Message | Pavel Borisov | 2020-10-12 12:30:02 | Re: BUG #16329: Valgrind detects an invalid read when building a gist index with buffering |
Previous Message | Tom Lane | 2020-10-12 03:27:18 | Re: BUG #15858: could not stat file - over 4GB |