Values_1.LongColumnStatisticsDataSourceDefines column statistics supported for integer data columns.
type nonrec t = {minimumValue : Long.t option;The lowest value in the column.
*)maximumValue : Long.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 ->
t