CQLSH unicode control character list is too liberal

patch by Tanuj Nayak; reviewed by Berenguer Blasi, Brandon Williams for CASSANDRA-17617
This commit is contained in:
Tanuj Nayak 2022-06-13 09:59:42 +02:00 committed by Bereng
parent c9a7269874
commit f884dda75b
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ from util import UTC
is_win = platform.system() == 'Windows'
unicode_controlchars_re = re.compile(r'[\x00-\x31\x7f-\xa0]')
controlchars_re = re.compile(r'[\x00-\x31\x7f-\xff]')
unicode_controlchars_re = re.compile(r'[\x00-\x1f\x7f-\xa0]')
controlchars_re = re.compile(r'[\x00-\x1f\x7f-\xff]')
def _show_control_chars(match):