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
{{ message }}
This repository was archived by the owner on Jan 27, 2026. It is now read-only.
error is nill on result of save when 409 returned from arangodb
Case needed in
func (col *Collection) Save(doc interface{}) error {
...
case 409:
return errors.New( "unique constraint violated" )
To reproduce, add a unique index on a collection.
Call to add a document multiple times, the error is returned by Arango but not by the save function.
I believe this should be added to other functions as well.