The following bug has been logged on the website:
Bug reference: 19635
Logged by: Missing entry in information_schema.sequences
Email address: jonas-lugner(at)gmx(dot)de
PostgreSQL version: 16.15
Operating system: Alpine Linux via Docker
Description:
When running the following code I expect that a entry is generated in
information_schema.sequences, however this is not the case.
CREATE TABLE users (
id INT GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY
);