Skip to content

Commit dd28b09

Browse files
committed
[SPARK-29542] Make the description of spark.sql.files.maxPartitionBytes be clearly
1 parent 6f8c001 commit dd28b09

File tree

1 file changed

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

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -980,7 +980,8 @@ object SQLConf {
980980
.createWithDefault(true)
981981

982982
val FILES_MAX_PARTITION_BYTES = buildConf("spark.sql.files.maxPartitionBytes")
983-
.doc("The maximum number of bytes to pack into a single partition when reading files.")
983+
.doc("The maximum number of bytes to pack into a single partition when reading files" +
984+
" for data source table.")
984985
.bytesConf(ByteUnit.BYTE)
985986
.createWithDefault(128 * 1024 * 1024) // parquet.block.size
986987

0 commit comments

Comments
 (0)