Skip to content

Commit

Permalink
fix: fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Qinyouzeng committed Nov 16, 2023
1 parent eb4eb9e commit 30cca58
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ private static void AppendKeyword(string keyword, StringBuilder sql, List<IDataP
{
sql.Append(" and (SpanAttributes['http.status_code']=@HttpStatusCode or SpanAttributes['http.request_content_body'] like @Keyword)");
paramerters.Add(new ClickHouseParameter() { ParameterName = "HttpStatusCode", Value = num });
paramerters.Add(new ClickHouseParameter() { ParameterName = "Keyword", Value = $"%{keyword}%" });
return;
}

Expand Down

0 comments on commit 30cca58

Please sign in to comment.