We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aec637 commit c2f8b9bCopy full SHA for c2f8b9b
python/gp/client.py
@@ -1821,7 +1821,8 @@ def isValidCommandString(command): #static # fast OK
1821
if type(command) != str:
1822
return False
1823
1824
- if not re.match('^[a-zA-Z_][-\w]*\s*(:?\s*$|[\s!&]+\w|[|<>#])', command):
+ #~ if not re.match('^[a-zA-Z_][-\w]*\s*(:?\s*$|[\s!&]+\w|[|<>#])', command):
1825
+ if not re.match('^[a-zA-Z_][-\w]*\s*', command):
1826
return False # must start with a valid command
1827
1828
if re.search('[\0-\x1F\x80-\xFF]', command):
0 commit comments