- Newest
- Most votes
- Most comments
AWS Support can help you resolve such specific issue that requires investigation into your account. Please submit a support case from within your AWS account. Thanks.
If you haven't resolved this problem yet, it appears your @@collation_connection
is at odds with the collation on the description
column, which is likely the result of your connection and column having different character sets.
You are trying to concat the description
value with the literal ’No :hot_pepper: picante’. MySQL interprets the description
column as character set utf8, collation utf8_general_ci. Your string literal has a character set of utf8mb4, collation utf8mb4_general_ci. MySQL's use of "utf8" allows up to three character bytes, while the actual full characterset "utf8mb4" allows up to four, matching Unicode standard.
You probably want to switch over any utf8 columns to utf8mb4. This will also fix the collation issue, as utf8mb4_general_ci is the default collation for utf8mb4.
Relevant content
- asked 2 years ago
- asked 2 years ago
- AWS OFFICIALUpdated 4 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 2 years ago