You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have legacy code on my project, that's can't be analyzed because failing on parsing, for example:
DECLARE STANDARD_CHARSET_RANGE CONSTANT ROW ROW(
LIST {
ROW('ABCDEFGHIJKLMNOPQRSTUVWXYZ' AS "[A-Z]"),
ROW('abcdefghijklmnopqrstuvwxyz' AS "[a-z]"),
ROW('АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ' AS "[А-Я]"),
ROW('абвгдеёжзийклмнопрстуфхцчшщъыьэюя' AS "[а-я]"),
ROW('0123456789' AS "[0-9]")
} AS ranges[]
);
I tried to fix it, but can't
The text was updated successfully, but these errors were encountered:
I have legacy code on my project, that's can't be analyzed because failing on parsing, for example:
I tried to fix it, but can't
The text was updated successfully, but these errors were encountered: