Values.DatumDatum represents a single data point in a query result.
type nonrec t = {scalarValue : ScalarValue.t option;Indicates if the data point is a scalar value such as integer, string, double, or Boolean.
*)timeSeriesValue : TimeSeriesDataPointList.t option;Indicates if the data point is a timeseries data type.
*)arrayValue : DatumList.t option;Indicates if the data point is an array.
*)rowValue : Row.t option;Indicates if the data point is a row.
*)nullValue : NullableBoolean.t option;Indicates if the data point is null.
*)}val make :
?scalarValue:ScalarValue.t ->
?timeSeriesValue:TimeSeriesDataPointList.t ->
?arrayValue:DatumList.t ->
?rowValue:Row.t ->
?nullValue:NullableBoolean.t ->
unit ->
t