* fix: Update sync_users fix issue during "sync credentials.core_user to openedx.auth_user" ERROR 1292 (22007) at line 1: Truncated incorrect DOUBLE value: 'FirstName' MySQL does not use + to concatenate strings, so it was treated as a math equation instead.
377 B
377 B
- [Bugfix] Fixed an issue when syncing
credentials.core_usertoopenedx.auth_userwhere thefull_namefield population failed withERROR 1292 (22007): Truncated incorrect DOUBLE value: 'FirstName'.
MySQL does not support string concatenation with+, so it was incorrectly treated as a numeric operation. Updated to useCONCAT()for proper string concatenation.