Values_1.DecimalColumnStatisticsDataSourceDefines column statistics supported for fixed-point number data columns.
type nonrec t = {minimumValue : DecimalNumber.t option;The lowest value in the column.
*)maximumValue : DecimalNumber.t option;The highest value 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 :
?minimumValue:??? ->
?maximumValue:??? ->
numberOfNulls:Values_0.NonNegativeLong.t ->
numberOfDistinctValues:Values_0.NonNegativeLong.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Long of Values_0.NonNegativeLong.t
| `Structure of
(string
* [> `Blob of Values_0.Blob.t | `Integer of Values_0.Integer.t ])
list ])
list ]