Module Serde_postgres.Row_description

type field = {
  1. name : string;
  2. relation_id : int option;
  3. relation_attribute_no : int option;
  4. data_type_id : int;
  5. data_type_size : int;
  6. type_modifier : int;
  7. format : int;
}
module Decode : sig ... end
val decode_row_description : bytes -> (bytes * field list, 'a) Stdlib.result