support gs_perfconfig

This commit is contained in:
gentle_hu
2023-11-03 17:12:55 +08:00
parent 35e78ceb7e
commit 137a8cffba
62 changed files with 6204 additions and 2 deletions

View File

@ -454,13 +454,14 @@ class GaussLog:
sys.exit(status)
@staticmethod
def printMessage(msg):
def printMessage(msg, end='\n'):
"""
function: Print the String message
input: msg
input: end
output: NA
"""
sys.stdout.write("%s\n" % msg)
sys.stdout.write("%s%s" % (msg, end))
class FormatColor(object):