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
Ran into an error ERROR: multiple primary keys for table "loop_detector" are not allowed
ERROR: multiple primary keys for table "loop_detector" are not allowed
Not exactly sure why this wasn't an issue before.... And because there is no add constraint if exist, there are a couple of solutions:
add constraint if exist
Create table if not exist ( column1 data_type, column2 data_type, constraint pk_mail_app_recipients primary key (column1)
Then it will only add a primary key constraint when a new table is created.
bdit_data-sources/gis/gccview/gcc_puller_functions.py
Line 191 in f79fd6e
The text was updated successfully, but these errors were encountered:
move pk creation to table creation query #900
2c706f5
add missing identifier function #900
b209977
@chmnata should this issue also be closed as not planned?
Sorry, something went wrong.
chmnata
Successfully merging a pull request may close this issue.
Ran into an error
ERROR: multiple primary keys for table "loop_detector" are not allowed
Not exactly sure why this wasn't an issue before....
And because there is no
add constraint if exist
, there are a couple of solutions:Then it will only add a primary key constraint when a new table is created.
bdit_data-sources/gis/gccview/gcc_puller_functions.py
Line 191 in f79fd6e
The text was updated successfully, but these errors were encountered: