Skip to content

Commit d48803b

Browse files
committed
[SPARK-24324][PYTHON][FOLLOWUP] Grouped Map positional conf should have deprecation note
## What changes were proposed in this pull request? Followup to the discussion of the added conf in SPARK-24324 which allows assignment by column position only. This conf is to preserve old behavior and will be removed in future releases, so it should have a note to indicate that. ## How was this patch tested? NA Author: Bryan Cutler <[email protected]> Closes #21637 from BryanCutler/arrow-groupedMap-conf-deprecate-followup-SPARK-24324.
1 parent 6d16b98 commit d48803b

File tree

1 file changed

+1
-1
lines changed
  • sql/catalyst/src/main/scala/org/apache/spark/sql/internal

1 file changed

+1
-1
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1167,7 +1167,7 @@ object SQLConf {
11671167
.doc("When true, a grouped map Pandas UDF will assign columns from the returned " +
11681168
"Pandas DataFrame based on position, regardless of column label type. When false, " +
11691169
"columns will be looked up by name if labeled with a string and fallback to use " +
1170-
"position if not.")
1170+
"position if not. This configuration will be deprecated in future releases.")
11711171
.booleanConf
11721172
.createWithDefault(false)
11731173

0 commit comments

Comments
 (0)