The cost of maintaining the complexity added to the cost of running into the pitfalls of incomplete traces is deemed to be too high and this patch thus removes the feature.
You can still use the functionality via the following SQL code:
SET tracing = on;
<your stmt>;
SET tracing = off;
SHOW TRACE FOR SESSION;
You'll need the option `kv` (`SET tracing = on, kv`) to use SHOW KV TRACE FOR SESSION.
A new option `results` captures the result rows in the trace too.
Thanks