Values_0.BinaryColumnStatisticsDataSourceDefines column statistics supported for bit sequence data values.
type nonrec t = {maximumLength : NonNegativeLong.t;The size of the longest bit sequence in the column.
*)averageLength : NonNegativeDouble.t;The average bit sequence length in the column.
*)numberOfNulls : NonNegativeLong.t;The number of null values in the column.
*)}val make :
maximumLength:NonNegativeLong.t ->
averageLength:NonNegativeDouble.t ->
numberOfNulls:NonNegativeLong.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Double of NonNegativeDouble.t | `Long of NonNegativeLong.t ])
list ]