Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,3 +190,13 @@ func IsTypeErr(err error) bool {

return strings.HasPrefix(err.Error(), "Expected type")
}

// IsPKTooLongErr returns true if the error is non-nil and the
// query failed due to PK too long error.
func IsPKTooLongErr(err error) bool {
if err == nil {
return false
}

return strings.HasPrefix(err.Error(), "Primary key too long (max 127 characters)")
}