Skip to content

Commit

Permalink
update log fmt
Browse files Browse the repository at this point in the history
Signed-off-by: fzhedu <[email protected]>
  • Loading branch information
fzhedu authored and ti-chi-bot committed Mar 14, 2022
1 parent a986286 commit d62238c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions dbms/src/DataStreams/CreatingSetsBlockInputStream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,10 @@ void CreatingSetsBlockInputStream::createAll()

void CreatingSetsBlockInputStream::createOne(SubqueryForSet & subquery)
{
auto log_msg = fmt::format("{} for task {}", (subquery.set ? "Creating set. " : subquery.join ? "Creating join. "
: subquery.table ? "Filling temporary table. "
: ""),
auto log_msg = fmt::format("{} for task {}",
subquery.set ? "Creating set. " : subquery.join ? "Creating join. "
: subquery.table ? "Filling temporary table. "
: "null subquery",
mpp_task_id.toString());
Stopwatch watch;
try
Expand Down

0 comments on commit d62238c

Please sign in to comment.