mirror of https://github.com/apache/cassandra
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:
parent
c9a7269874
commit
f884dda75b
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in New Issue