we're observing a memory bloat with [PDO's instrumentation `handleStatementExecute` method ](https://github.com/census-instrumentation/opencensus-php/blob/master/src/Trace/Integrations/PDO.php#L102). If I comment out [the following line, which does the instumentation](https://github.com/census-instrumentation/opencensus-php/blob/master/src/Trace/Integrations/PDO.php#L60), memory bloat disappears. ``` opencensus_trace_method('PDOStatement', 'execute', [static::class, 'handleStatementExecute']); ``` Here's a profile info from blackfire for the same. <img width="601" alt="Screenshot 2020-09-23 at 9 58 59 AM" src="https://user-images.githubusercontent.com/8813/93966896-78f3ad00-fd83-11ea-8c04-6babb4de6b63.png">
we're observing a memory bloat with PDO's instrumentation
handleStatementExecutemethod .If I comment out the following line, which does the instumentation, memory bloat disappears.
Here's a profile info from blackfire for the same.
