| 313 | } |
| 314 | |
| 315 | inline bool can_make_special_datum(Oid attr_typeid) |
| 316 | { |
| 317 | bool is_array = type_is_array(attr_typeid); |
| 318 | return is_array || is_string_type(attr_typeid) || attr_typeid == BYTEAOID; |
| 319 | } |
| 320 | |
| 321 | inline uint64_t get_column_width(Oid attr_typeid, int32_t atttypmod) |
| 322 | { |
no test coverage detected