You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I was attempting to use this tool to digitize legal boundaries of things other than parcels. The issue Im having though, is that I already have a table in public named parcels. Would it be possible to have an option to change the name of the table being created?
An error has occurred while executing Python code:
psycopg2.errors.DuplicateTable: relation "parcels" already exists
Traceback (most recent call last):
File "/home/user/.local/share/QGIS/QGIS3/profiles/default/python/plugins/parcel_plugin/cogo_dialogs.py", line 239, in test_database_connection
ok = self.test_database_schema()
File "/home/user/.local/share/QGIS/QGIS3/profiles/default/python/plugins/parcel_plugin/cogo_dialogs.py", line 326, in test_database_schema
cursor.execute(db_sql)
psycopg2.errors.DuplicateTable: relation "parcels" already exists
@glw During initialization the plugin creates some tables using a database script. You could try to change the name of the parcels view in the setup script. Just be mindful that there are other views that might be a join between the parcels and other tables
For now I think renaming your table would be a better option.
I think a safer enhancement would be to allow the option for the tables to be created in a schema other than public
Hi I was attempting to use this tool to digitize legal boundaries of things other than parcels. The issue Im having though, is that I already have a table in public named parcels. Would it be possible to have an option to change the name of the table being created?
An error has occurred while executing Python code:
Python version: 3.5.2 (default, Oct 7 2020, 17:19:02) [GCC 5.4.0 20160609]
QGIS version: 3.4.15-Madeira Madeira, e83d02e274
The text was updated successfully, but these errors were encountered: