pull/583/head
Artem Gavrilov 2025-11-19 20:43:00 +02:00
parent dfd2a7f174
commit 80c1f1818d
2 changed files with 4 additions and 0 deletions

View File

@ -37,6 +37,8 @@ ok($rt_value == 1, "Start Server");
my ($cmdret, $stdout, $stderr) = $node->psql('postgres', 'CREATE EXTENSION pg_stat_monitor;', extra_params => ['-a']); my ($cmdret, $stdout, $stderr) = $node->psql('postgres', 'CREATE EXTENSION pg_stat_monitor;', extra_params => ['-a']);
ok($cmdret == 0, "CREATE PGSM EXTENSION"); ok($cmdret == 0, "CREATE PGSM EXTENSION");
PGSM::append_to_file($stdout); PGSM::append_to_file($stdout);
PGSM::append_to_debug_file($stderr);
PGSM::append_to_debug_file("-------------");
# Run required commands/queries and dump output to out file. # Run required commands/queries and dump output to out file.

View File

@ -140,6 +140,8 @@ PGSM::append_to_debug_file($stdout);
($cmdret, $stdout, $stderr) = $node->psql('postgres', 'CREATE EXTENSION pg_stat_monitor;', extra_params => ['-a']); ($cmdret, $stdout, $stderr) = $node->psql('postgres', 'CREATE EXTENSION pg_stat_monitor;', extra_params => ['-a']);
ok($cmdret == 0, "Create PGSM Extension"); ok($cmdret == 0, "Create PGSM Extension");
PGSM::append_to_debug_file($stdout); PGSM::append_to_debug_file($stdout);
PGSM::append_to_debug_file($stderr);
PGSM::append_to_debug_file("-------------");
# Following parameters are required for function 'generate_histogram_with_configurations' to generate and test a histogram # Following parameters are required for function 'generate_histogram_with_configurations' to generate and test a histogram
# with given configuration. # with given configuration.