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