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
Some databases like MySQL and SQL Server ignore trailing spaces when comparing strings (see this post on SO, for example). This leads to matched targets being different from sources, and consequently to an exception in com.nhl.link.move.runtime.task.createorupdate.CreateOrUpdateMerger#merge.
Example:
Source key: {foo='bar'}
Matched target (was selected by WHERE foo = 'bar'): {foo='bar '}
Note the sneaky trailing space.
I'm not sure if it's an "issue" at all, but still willing to share.
The text was updated successfully, but these errors were encountered:
Some databases like MySQL and SQL Server ignore trailing spaces when comparing strings (see this post on SO, for example). This leads to matched targets being different from sources, and consequently to an exception in com.nhl.link.move.runtime.task.createorupdate.CreateOrUpdateMerger#merge.
Example:
Source key: {foo='bar'}
Matched target (was selected by WHERE foo = 'bar'): {foo='bar '}
Note the sneaky trailing space.
I'm not sure if it's an "issue" at all, but still willing to share.
The text was updated successfully, but these errors were encountered: