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
Whenever I attempted to Build / Update a schema mapping that included Accessions, it would fail. A dialog would show this:
java.util.concurrent.ExecutionException: org.hibernate.PropertyAccessException: Null value was assigned to a property of primitive type setter of edu.ku.brc.specify.datamodel.DataModelObjBase.version
I fixed this by using this SQL command (specific to this case):
UPDATE accession SET`Version`=0WHERE Version IS NULL;
It should be able to handle these instances.
The text was updated successfully, but these errors were encountered:
Whenever I attempted to
Build / Update
a schema mapping that included Accessions, it would fail. A dialog would show this:I fixed this by using this SQL command (specific to this case):
It should be able to handle these instances.
The text was updated successfully, but these errors were encountered: