I have a table that saves various input from users. In one column we write a giant json string produced by a step by step wizard. This column is defined as a blob sub_type 1 with the utf-8 charset.
Now I when I want to save the last step I get this error:
String literal with 16538 characters exceeds the maximum length of 16383 characters for the UTF8 character set
When I manually make a string concat in the middle of the string (with "||" ) the statement works. According to a comment from my Stackoverflow question this could be fixed here
I have a table that saves various input from users. In one column we write a giant json string produced by a step by step wizard. This column is defined as a blob sub_type 1 with the utf-8 charset.
Now I when I want to save the last step I get this error:
When I manually make a string concat in the middle of the string (with "||" ) the statement works. According to a comment from my Stackoverflow question this could be fixed here