Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PostgreSQL nextval() #1098

Closed
dprutean opened this issue Jan 12, 2021 · 2 comments · Fixed by #1778
Closed

PostgreSQL nextval() #1098

dprutean opened this issue Jan 12, 2021 · 2 comments · Fixed by #1778

Comments

@dprutean
Copy link

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
)

@wumpz
Copy link
Member

wumpz commented Jan 19, 2021

PRs are welcome ...

@manticore-projects
Copy link
Contributor

Duplicate of #1022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants