mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
Fix subprocess call in clickhouse-test
This commit is contained in:
parent
b58fa8585c
commit
0afd361933
@ -110,7 +110,7 @@ def get_stacktraces_from_gdb(server_pid):
|
|||||||
# collect server stacktraces from system.stack_trace table
|
# collect server stacktraces from system.stack_trace table
|
||||||
def get_stacktraces_from_clickhouse(client):
|
def get_stacktraces_from_clickhouse(client):
|
||||||
try:
|
try:
|
||||||
return subprocess.check_call("{} --allow_introspection_functions=1 --query \"SELECT arrayStringConcat(arrayMap(x, y -> concat(x, ': ', y), arrayMap(x -> addressToLine(x), trace), arrayMap(x -> demangle(addressToSymbol(x)), trace)), '\n') as trace FROM system.stack_trace format Vertical\"".format(client), shell=True)
|
return subprocess.check_output("{} --allow_introspection_functions=1 --query \"SELECT arrayStringConcat(arrayMap(x, y -> concat(x, ': ', y), arrayMap(x -> addressToLine(x), trace), arrayMap(x -> demangle(addressToSymbol(x)), trace)), '\n') as trace FROM system.stack_trace format Vertical\"".format(client), shell=True)
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
return "Error occured while receiving stack traces from client: {}".format(str(ex))
|
return "Error occured while receiving stack traces from client: {}".format(str(ex))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user