We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c0bffdd + 2913b1d commit e615c95Copy full SHA for e615c95
CHANGELOG.md
@@ -1,3 +1,5 @@
1
+### Bugs
2
+
3
* fixed case with unexisting rows in query result
4
5
## 1.13.1
src/QueryResult.php
@@ -40,7 +40,7 @@ public function __construct($result)
40
$data = json_decode($set->serializeToJsonString(), true);
41
42
$this->fillColumns($data['columns']);
43
- $this->fillRows($data['rows']);
+ $this->fillRows($data['rows'] ?? []);
44
$this->truncated = $data['truncated'] ?? false;
45
}
46
0 commit comments