Sergei Sergeev

Results 4 comments of Sergei Sergeev

```php public function __construct($value) { $this->value = Utils::streamFor($value); } ``` remove this $this->value = Utils::streamFor($value); and it will be significantly much better

``` diff --git a/vendor/google/cloud-spanner/src/Result.php b/vendor/google/cloud-spanner/src/Result.php --- a/vendor/google/cloud-spanner/src/Result.php +++ b/vendor/google/cloud-spanner/src/Result.php @@ -440,7 +440,7 @@ $this->resumeToken = $result['resumeToken']; } - if (isset($result['metadata'])) { + if (isset($result['metadata']) && !isset($this->metadata)) { $this->columnNames = [];...

@saranshdhingra Do you have any plans to fix it?