Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
57 | public function fetchField() |
||
58 | { |
||
59 | $column = $this->offset++; |
||
60 | // $table = function_exists('pg_field_table') ? pg_field_table($this->result, $column) : ''; |
||
61 | $table = pg_field_table($this->result, $column); |
||
62 | $name = pg_field_name($this->result, $column); |
||
63 | $type = pg_field_type($this->result, $column); |
||
64 | return new StatementFieldEntity($type, $type === "bytea", $name, $name, $table, $table); |
||
65 | } |
||
75 |