Source file row_desc.ml

1
2
3
4
5
6
7
8
9
10
11
12
open Sexplib0.Sexp_conv

type t =
  { name : string
  ; table : int32
  ; col : int
  ; oid : int32
  ; len : int
  ; modifier : int32
  ; format : int
  }
[@@deriving sexp]