We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Repro:
The text was updated successfully, but these errors were encountered: