Type.ReprLow-level representation (unstable).
type 'a t' := 'a ttype 'a t = | Bool : bool tStored as 0 and 1
| Int : int tStored as int64
| Int64 : int64 t| Float : float t| Text : string t| Blob : string t| Option : 'a t -> 'a option tColumn with NULLs or values of given type.
*)| Coded : ('a, 'b) Coded.t -> 'a tAn OCaml fiction.
*)| Custom : 'a Custom.t -> 'a tA DBMS specific datatype.
*)The low-level representation column types.
to_t l is a type from the low-level representation of l. FIXME Try to remove.
See value_equal.