नोट
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप साइन इन करने या निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
Applies to:
Databricks Runtime 18.1 and above
Merges exactly two TupleSketch binary representations with integer summaries using set union.
Syntax
tuple_union_integer ( first, second [, lgNomEntries [, mode ]] )
Arguments
- first: A TupleSketch in binary format with integer summaries.
- second: A TupleSketch in binary format with integer summaries.
- lgNomEntries: An optional
INTEGERliteral specifying the log-base-2 of nominal entries. Must be between 4 and 26, inclusive. The default is 12. - mode: An optional
STRINGliteral specifying the aggregation mode. Valid values:'sum','min','max','alwaysone'. The default is'sum'.
Returns
A BINARY value containing the merged TupleSketch with integer summaries.
Notes
- For merging more than two sketches, use the aggregate tuple_union_agg_integer function.
Error messages
Examples
> SELECT tuple_sketch_estimate_integer(
tuple_union_integer(
tuple_sketch_agg_integer(col1, val1),
tuple_sketch_agg_integer(col2, val2)
)
) FROM VALUES (1, 1, 4, 4), (2, 2, 5, 5), (3, 3, 6, 6) tab(col1, val1, col2, val2);
6.0