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
I am setting up an ISOMetadataStore (SQL) using deegree 3.4-pre17 on Ubuntu 14.04 LTS (packaged PostgreSQL/PostGIS version). I run into the following issue when creating the database tables using "Setup tables":
"Error: ERROR: function addgeometrycolumn(unknown, unknown, unknown, unknown, unknown, unknown) is not unique Hint: Could not choose a best candidate function. You might need to add explicit type casts. Position: 8"
I analyzed the SQL script and found the problem in line 75:
I am setting up an ISOMetadataStore (SQL) using deegree 3.4-pre17 on Ubuntu 14.04 LTS (packaged PostgreSQL/PostGIS version). I run into the following issue when creating the database tables using "Setup tables":
"Error: ERROR: function addgeometrycolumn(unknown, unknown, unknown, unknown, unknown, unknown) is not unique Hint: Could not choose a best candidate function. You might need to add explicit type casts. Position: 8"
I analyzed the SQL script and found the problem in line 75:
"SELECT AddGeometryColumn('public','idxtb_main','bbox','-1','GEOMETRY','2');"
Here's what works for me:
"SELECT AddGeometryColumn('public','idxtb_main','bbox',0,'GEOMETRY',2);"
I think there are two problems:
The text was updated successfully, but these errors were encountered: