diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2024-04-24 07:52:52 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2024-04-24 08:32:01 -0400 |
commit | cc893b82370b5d68e0a72f5bb1663644a3a0351d (patch) | |
tree | 8cff5327c35dc3234ab53989b1d683ea4fd457e8 /src/test/modules/test_json_parser/test_json_parser_perf.c | |
parent | 9d353639c3b37efea7a29b63027cef81a7c7e335 (diff) | |
download | postgresql-cc893b82370b5d68e0a72f5bb1663644a3a0351d.tar.gz postgresql-cc893b82370b5d68e0a72f5bb1663644a3a0351d.zip |
Add pg_logging_init() calls missing in commit ba3e6e2bca
As noticed by Michael Paquier.
Diffstat (limited to 'src/test/modules/test_json_parser/test_json_parser_perf.c')
-rw-r--r-- | src/test/modules/test_json_parser/test_json_parser_perf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/modules/test_json_parser/test_json_parser_perf.c b/src/test/modules/test_json_parser/test_json_parser_perf.c index f5c0e8dd9ae..ea85626cbd8 100644 --- a/src/test/modules/test_json_parser/test_json_parser_perf.c +++ b/src/test/modules/test_json_parser/test_json_parser_perf.c @@ -43,6 +43,8 @@ main(int argc, char **argv) int iter; int use_inc = 0; + pg_logging_init(argv[0]); + initStringInfo(&json); if (strcmp(argv[1], "-i") == 0) |