Hi
When editing a trigger (and probably also stored procedures), when writing something like
SET ctype=REGEXP_REPLACE(REGEXP_REPLACE(ctype,'^enum\(',''),'\)$','');
And saving it, it will show as
SET ctype=REGEXP_REPLACE(REGEXP_REPLACE(ctype,'^enum(',''),')$','');
when reopening it. When saving that and reopening it, it will show as
SET ctype=REGEXP_REPLACE(REGEXP_REPLACE(ctype,'^enum(',''),')$','');
Those backslash character seem to be incorrectly handled.
Thanks for fixing. I honestly wonder why nobody found this over all those years.
Regards