We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf5f130 commit 5fd2303Copy full SHA for 5fd2303
1 file changed
lib/Database/ez_pgsql.php
@@ -204,6 +204,7 @@ private function processQueryResult(string $query, $result = null)
204
// Take note of column info
205
$i = 0;
206
while ($i < @\pg_num_fields($this->result)) {
207
+ $this->col_info[$i] = new \stdClass();
208
$this->col_info[$i]->name = \pg_field_name($this->result, $i);
209
$this->col_info[$i]->type = \pg_field_type($this->result, $i);
210
$this->col_info[$i]->size = \pg_field_size($this->result, $i);
0 commit comments