Module Serde_postgres.Row_description
type field = {
name : string;
relation_id : int option;
relation_attribute_no : int option;
data_type_id : int;
data_type_size : int;
type_modifier : int;
format : int;
}
val decode_row_description : bytes -> (bytes * field list, 'a) Stdlib.result