Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions python/pyspark/sql/functions/builtin.py
Original file line number Diff line number Diff line change
Expand Up @@ -27606,7 +27606,7 @@ def kll_merge_agg_bigint(
sketch (range 8-65535). If k is not specified, the merged sketch adopts the k value
from the first input sketch.

.. versionadded:: 4.1.0
.. versionadded:: 4.1.2

Parameters
----------
Expand Down Expand Up @@ -27650,7 +27650,7 @@ def kll_merge_agg_float(
sketch (range 8-65535). If k is not specified, the merged sketch adopts the k value
from the first input sketch.

.. versionadded:: 4.1.0
.. versionadded:: 4.1.2

Parameters
----------
Expand Down Expand Up @@ -27694,7 +27694,7 @@ def kll_merge_agg_double(
sketch (range 8-65535). If k is not specified, the merged sketch adopts the k value
from the first input sketch.

.. versionadded:: 4.1.0
.. versionadded:: 4.1.2

Parameters
----------
Expand Down
30 changes: 15 additions & 15 deletions sql/api/src/main/scala/org/apache/spark/sql/functions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2032,7 +2032,7 @@ object functions {
* sketch.
*
* @group agg_funcs
* @since 4.1.0
* @since 4.1.2
*/
def kll_merge_agg_bigint(e: Column, k: Column): Column =
Column.fn("kll_merge_agg_bigint", e, k)
Expand All @@ -2044,7 +2044,7 @@ object functions {
* sketch.
*
* @group agg_funcs
* @since 4.1.0
* @since 4.1.2
*/
def kll_merge_agg_bigint(e: Column, k: Int): Column =
Column.fn("kll_merge_agg_bigint", e, lit(k))
Expand All @@ -2056,7 +2056,7 @@ object functions {
* sketch.
*
* @group agg_funcs
* @since 4.1.0
* @since 4.1.2
*/
def kll_merge_agg_bigint(columnName: String, k: Int): Column =
kll_merge_agg_bigint(Column(columnName), k)
Expand All @@ -2067,7 +2067,7 @@ object functions {
* sketch.
*
* @group agg_funcs
* @since 4.1.0
* @since 4.1.2
*/
def kll_merge_agg_bigint(e: Column): Column =
Column.fn("kll_merge_agg_bigint", e)
Expand All @@ -2078,7 +2078,7 @@ object functions {
* sketch.
*
* @group agg_funcs
* @since 4.1.0
* @since 4.1.2
*/
def kll_merge_agg_bigint(columnName: String): Column =
kll_merge_agg_bigint(Column(columnName))
Expand All @@ -2089,7 +2089,7 @@ object functions {
* If k is not specified, the merged sketch adopts the k value from the first input sketch.
*
* @group agg_funcs
* @since 4.1.0
* @since 4.1.2
*/
def kll_merge_agg_float(e: Column, k: Column): Column =
Column.fn("kll_merge_agg_float", e, k)
Expand All @@ -2100,7 +2100,7 @@ object functions {
* If k is not specified, the merged sketch adopts the k value from the first input sketch.
*
* @group agg_funcs
* @since 4.1.0
* @since 4.1.2
*/
def kll_merge_agg_float(e: Column, k: Int): Column =
Column.fn("kll_merge_agg_float", e, lit(k))
Expand All @@ -2111,7 +2111,7 @@ object functions {
* If k is not specified, the merged sketch adopts the k value from the first input sketch.
*
* @group agg_funcs
* @since 4.1.0
* @since 4.1.2
*/
def kll_merge_agg_float(columnName: String, k: Int): Column =
kll_merge_agg_float(Column(columnName), k)
Expand All @@ -2121,7 +2121,7 @@ object functions {
* If k is not specified, the merged sketch adopts the k value from the first input sketch.
*
* @group agg_funcs
* @since 4.1.0
* @since 4.1.2
*/
def kll_merge_agg_float(e: Column): Column =
Column.fn("kll_merge_agg_float", e)
Expand All @@ -2131,7 +2131,7 @@ object functions {
* If k is not specified, the merged sketch adopts the k value from the first input sketch.
*
* @group agg_funcs
* @since 4.1.0
* @since 4.1.2
*/
def kll_merge_agg_float(columnName: String): Column =
kll_merge_agg_float(Column(columnName))
Expand All @@ -2142,7 +2142,7 @@ object functions {
* If k is not specified, the merged sketch adopts the k value from the first input sketch.
*
* @group agg_funcs
* @since 4.1.0
* @since 4.1.2
*/
def kll_merge_agg_double(e: Column, k: Column): Column =
Column.fn("kll_merge_agg_double", e, k)
Expand All @@ -2153,7 +2153,7 @@ object functions {
* If k is not specified, the merged sketch adopts the k value from the first input sketch.
*
* @group agg_funcs
* @since 4.1.0
* @since 4.1.2
*/
def kll_merge_agg_double(e: Column, k: Int): Column =
Column.fn("kll_merge_agg_double", e, lit(k))
Expand All @@ -2164,7 +2164,7 @@ object functions {
* If k is not specified, the merged sketch adopts the k value from the first input sketch.
*
* @group agg_funcs
* @since 4.1.0
* @since 4.1.2
*/
def kll_merge_agg_double(columnName: String, k: Int): Column =
kll_merge_agg_double(Column(columnName), k)
Expand All @@ -2174,7 +2174,7 @@ object functions {
* If k is not specified, the merged sketch adopts the k value from the first input sketch.
*
* @group agg_funcs
* @since 4.1.0
* @since 4.1.2
*/
def kll_merge_agg_double(e: Column): Column =
Column.fn("kll_merge_agg_double", e)
Expand All @@ -2184,7 +2184,7 @@ object functions {
* If k is not specified, the merged sketch adopts the k value from the first input sketch.
*
* @group agg_funcs
* @since 4.1.0
* @since 4.1.2
*/
def kll_merge_agg_double(columnName: String): Column =
kll_merge_agg_double(Column(columnName))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ case class KllSketchAggDouble(
6
""",
group = "agg_funcs",
since = "4.1.0")
since = "4.1.2")
// scalastyle:on line.size.limit
case class KllMergeAggBigint(
child: Expression,
Expand Down Expand Up @@ -558,7 +558,7 @@ case class KllMergeAggBigint(
6
""",
group = "agg_funcs",
since = "4.1.0")
since = "4.1.2")
// scalastyle:on line.size.limit
case class KllMergeAggFloat(
child: Expression,
Expand Down Expand Up @@ -631,7 +631,7 @@ case class KllMergeAggFloat(
6
""",
group = "agg_funcs",
since = "4.1.0")
since = "4.1.2")
// scalastyle:on line.size.limit
case class KllMergeAggDouble(
child: Expression,
Expand Down