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_incremental.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_incremental.c')
-rw-r--r-- | src/test/modules/test_json_parser/test_json_parser_incremental.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/modules/test_json_parser/test_json_parser_incremental.c b/src/test/modules/test_json_parser/test_json_parser_incremental.c index b2195cb8113..0bc047a4af4 100644 --- a/src/test/modules/test_json_parser/test_json_parser_incremental.c +++ b/src/test/modules/test_json_parser/test_json_parser_incremental.c @@ -89,6 +89,8 @@ main(int argc, char **argv) int c; bool need_strings = false; + pg_logging_init(argv[0]); + while ((c = getopt(argc, argv, "c:s")) != -1) { switch (c) |