diff --git a/docs/content/development/datasketches-aggregators.md b/docs/content/development/datasketches-aggregators.md index 62c70ae6cc7..ffa3eb0d817 100644 --- a/docs/content/development/datasketches-aggregators.md +++ b/docs/content/development/datasketches-aggregators.md @@ -37,12 +37,22 @@ Note that you can use `thetaSketch` aggregator on columns which were not ingeste #### Sketch Estimator ```json -{ "type" : "thetaSketchEstimate", "name": , "fieldName" : } +{ + "type" : "thetaSketchEstimate", + "name": , + "fieldName" : +} ``` #### Sketch Operations ```json -{ "type" : "thetaSketchSetOp", "name": , "func": , "fields" : } +{ + "type" : "thetaSketchSetOp", + "name": , + "func": , + "fields" : , + "size": <16384 by default, must be max of size from sketches in fields input> +} ``` ### Examples