Skip to content
Snippets Groups Projects
Commit a3097e2b authored by Jacek Laskowski's avatar Jacek Laskowski Committed by Sean Owen
Browse files

[SQL][DOC][MINOR] Add (Scala-specific) and (Java-specific)

## What changes were proposed in this pull request?

Adds (Scala-specific) and (Java-specific) to Scaladoc.

## How was this patch tested?

local build

Author: Jacek Laskowski <jacek@japila.pl>

Closes #14891 from jaceklaskowski/scala-specifics.
parent 6969dcc7
No related branches found
No related tags found
No related merge requests found
......@@ -79,6 +79,7 @@ class KeyValueGroupedDataset[K, V] private[sql](
}
/**
* (Scala-specific)
* Applies the given function to each group of data. For each unique group, the function will
* be passed the group key and an iterator that contains all of the elements in the group. The
* function can return an iterator containing elements of an arbitrary type which will be returned
......@@ -107,6 +108,7 @@ class KeyValueGroupedDataset[K, V] private[sql](
}
/**
* (Java-specific)
* Applies the given function to each group of data. For each unique group, the function will
* be passed the group key and an iterator that contains all of the elements in the group. The
* function can return an iterator containing elements of an arbitrary type which will be returned
......@@ -129,6 +131,7 @@ class KeyValueGroupedDataset[K, V] private[sql](
}
/**
* (Scala-specific)
* Applies the given function to each group of data. For each unique group, the function will
* be passed the group key and an iterator that contains all of the elements in the group. The
* function can return an element of arbitrary type which will be returned as a new [[Dataset]].
......@@ -151,6 +154,7 @@ class KeyValueGroupedDataset[K, V] private[sql](
}
/**
* (Java-specific)
* Applies the given function to each group of data. For each unique group, the function will
* be passed the group key and an iterator that contains all of the elements in the group. The
* function can return an element of arbitrary type which will be returned as a new [[Dataset]].
......@@ -172,6 +176,7 @@ class KeyValueGroupedDataset[K, V] private[sql](
}
/**
* (Scala-specific)
* Reduces the elements of each group of data using the specified binary function.
* The given function must be commutative and associative or the result may be non-deterministic.
*
......@@ -184,6 +189,7 @@ class KeyValueGroupedDataset[K, V] private[sql](
}
/**
* (Java-specific)
* Reduces the elements of each group of data using the specified binary function.
* The given function must be commutative and associative or the result may be non-deterministic.
*
......@@ -269,6 +275,7 @@ class KeyValueGroupedDataset[K, V] private[sql](
def count(): Dataset[(K, Long)] = agg(functions.count("*").as(ExpressionEncoder[Long]()))
/**
* (Scala-specific)
* Applies the given function to each cogrouped data. For each unique group, the function will
* be passed the grouping key and 2 iterators containing all elements in the group from
* [[Dataset]] `this` and `other`. The function can return an iterator containing elements of an
......@@ -293,6 +300,7 @@ class KeyValueGroupedDataset[K, V] private[sql](
}
/**
* (Java-specific)
* Applies the given function to each cogrouped data. For each unique group, the function will
* be passed the grouping key and 2 iterators containing all elements in the group from
* [[Dataset]] `this` and `other`. The function can return an iterator containing elements of an
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment