Skip to content

Commit 1a8c654

Browse files
authored
Change describtion
Change describtion
1 parent 9466797 commit 1a8c654

File tree

1 file changed

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

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -323,10 +323,10 @@ object SQLConf {
323323
.createWithDefault(false)
324324

325325
val PARQUET_COMPRESSION = buildConf("spark.sql.parquet.compression.codec")
326-
.doc("Sets the compression codec used when writing Parquet files. If other compression codec " +
327-
"configuration was found through hive or parquet, the precedence would be `compression`, " +
328-
"`parquet.compression`, `spark.sql.parquet.compression.codec`. Acceptable values include: " +
329-
"none, uncompressed, snappy, gzip, lzo.")
326+
.doc("Sets the compression codec used when writing Parquet files. If either `compression` or" +
327+
"`parquet.compression` is specified in the table-specific options/properties, the precedence" +
328+
"would be `compression`, `parquet.compression`, `spark.sql.parquet.compression.codec`." +
329+
"Acceptable values include: none, uncompressed, snappy, gzip, lzo.")
330330
.stringConf
331331
.transform(_.toLowerCase(Locale.ROOT))
332332
.checkValues(Set("none", "uncompressed", "snappy", "gzip", "lzo"))
@@ -366,10 +366,10 @@ object SQLConf {
366366
.createWithDefault(true)
367367

368368
val ORC_COMPRESSION = buildConf("spark.sql.orc.compression.codec")
369-
.doc("Sets the compression codec used when writing ORC files. If other compression codec " +
370-
"configuration was found through hive or ORC, the precedence would be `compression`, " +
371-
"`orc.compress`, `spark.sql.orc.compression.codec`. Acceptable values include: " +
372-
"none, uncompressed, snappy, zlib, lzo.")
369+
.doc("Sets the compression codec used when writing ORC files. If either `compression` or" +
370+
"`orc.compress` is specified in the table-specific options/properties, the precedence" +
371+
"would be `compression`, `orc.compress`, `spark.sql.orc.compression.codec`." +
372+
"Acceptable values include: none, uncompressed, snappy, zlib, lzo.")
373373
.stringConf
374374
.transform(_.toLowerCase(Locale.ROOT))
375375
.checkValues(Set("none", "uncompressed", "snappy", "zlib", "lzo"))

0 commit comments

Comments
 (0)