mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-29 19:21:01 +00:00
Having to unconditionally linearize the chunked query string when passing it to tracing undoes the work put into reducing large alloctions on the query path. The add_query() is evaluated eagerly on every query, even if tracing is disabled. Defer the linearization to build_parameres_map(), which is only called if tracing is enabled.