You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
extendsExplodeBase(child, position =false) withSerializable {
169
183
}
170
184
171
185
/**
172
186
* Given an input array produces a sequence of rows for each position and value in the array.
187
+
*
188
+
* {{{
189
+
* SELECT explode(array(10,20)) ->
190
+
* 0 10
191
+
* 1 20
192
+
* }}}
173
193
*/
174
194
// scalastyle:off line.size.limit
175
195
@ExpressionDescription(
176
-
usage ="_FUNC_(a) - Separates the elements of array a into multiple rows with positions, or the elements of a map into multiple rows and columns with positions.")
196
+
usage ="_FUNC_(a) - Separates the elements of array a into multiple rows with positions, or the elements of a map into multiple rows and columns with positions.",
0 commit comments