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

unable to reuse the same table name and column name for serial type after the old table is dropped #659

Open
jennifersp opened this issue Aug 27, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@jennifersp
Copy link
Contributor

Repro:

doltgres=> create table serial_table (pk serial primary key);
CREATE TABLE
doltgres=> drop table serial_table;
DROP TABLE
doltgres=> create table serial_table (pk serial primary key);
ERROR:  SERIAL sequence name reached max iterations (errno 1105) (sqlstate HY000)
doltgres=> create table serial_table1 (pk serial primary key);
CREATE TABLE
doltgres=> create table serial_table (pk serial primary key);
ERROR:  SERIAL sequence name reached max iterations (errno 1105) (sqlstate HY000)
doltgres=> create table serial_table (pk1 serial primary key);
CREATE TABLE
@fulghum fulghum added the bug Something isn't working label Sep 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants