[Oracle] Text with emoji may cause ORA-12899(value too large for column)DescriptionNormally values which are to long for the field are truncated. However, text with emoji is encoded after truncation, making it longer and therefore not fitting into the field. MySql silently truncates the value, but Oracle reports "ORA-12899 value too large for column".Steps to Reproduce Create a test table with a column of type string and a length of 5.Upon creation, glide allocates 40 characters minimum.Create the column with any length and after creation, change its length to 5.Create a record and enter an emoji character as the value. This returns with an ORA-12899 message like 'ORA-12899: value too large for column "GLIDE"."U_TRUNC_UTF8"."c2" (actual: 12, maximum: 5)'.WorkaroundThis problem has been fixed in Limited Fixes such as Paris Patch 9, Quebec Patch 4 and Rome.Related Problem: PRB1453978