JSqlParser icon indicating copy to clipboard operation
JSqlParser copied to clipboard

PostgreSQL nextval()

Open dprutean opened this issue 4 years ago • 2 comments

PostgreSQL reversed engineer schema includes nextval as a function, like below. Is it possible to support this?

CREATE TABLE pagila_dev.actor ( actor_id integer DEFAULT nextval('pagila_dev.actor_actor_id_seq'::regclass) NOT NULL, first_name text NOT NULL, last_name text NOT NULL, last_update timestamp with time zone DEFAULT now() NOT NULL )

dprutean avatar Jan 12 '21 11:01 dprutean

PRs are welcome ...

wumpz avatar Jan 19 '21 23:01 wumpz

Duplicate of #1022

manticore-projects avatar Oct 19 '21 10:10 manticore-projects