From bb80ec4e79715e74385a410d8e7c6f72f41fa1bd Mon Sep 17 00:00:00 2001 From: Ryoji Kurosawa Date: Fri, 15 Nov 2024 18:32:11 +0900 Subject: [PATCH] show new config. value on start-up --- src/jogasaki/api/impl/database.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/jogasaki/api/impl/database.cpp b/src/jogasaki/api/impl/database.cpp index 8411d738..63bb4e0f 100644 --- a/src/jogasaki/api/impl/database.cpp +++ b/src/jogasaki/api/impl/database.cpp @@ -182,6 +182,7 @@ void dump_public_configurations(configuration const& cfg) { LOGCFG << "(dev_direct_commit_callback) " << cfg.direct_commit_callback() << " : whether to make callback directly from shirakami to client on pre-commit response (only for `available` and `accepted`)"; LOGCFG << "(scan_default_parallel) " << cfg.scan_default_parallel() << " : max parallel execution count of scan tasks"; LOGCFG << "(dev_inplace_teardown) " << cfg.inplace_teardown() << " : whether to process teardown (job completion) directly on the current thread instead of scheduling a task for it"; + LOGCFG << "(enable_join_scan) " << cfg.enable_join_scan() << " : whether to enable index join using join_scan operator"; } status database::start() {