Skip to content

Commit b3f7877

Browse files
committed
Removes instead of deprecates the old option
1 parent 610002f commit b3f7877

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

sql/core/src/main/scala/org/apache/spark/sql/SQLConf.scala

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -297,13 +297,6 @@ private[spark] object SQLConf {
297297
"Spark SQL schema and vice versa.",
298298
isPublic = false)
299299

300-
@deprecated(s"use ${PARQUET_WRITE_LEGACY_FORMAT.key} instead", "1.6.0")
301-
val PARQUET_FOLLOW_PARQUET_FORMAT_SPEC = booleanConf(
302-
key = "spark.sql.parquet.followParquetFormatSpec",
303-
defaultValue = Some(!PARQUET_WRITE_LEGACY_FORMAT.defaultValue.get),
304-
doc = s"Deprecated, use ${PARQUET_WRITE_LEGACY_FORMAT.key} instead.",
305-
isPublic = false)
306-
307300
val PARQUET_OUTPUT_COMMITTER_CLASS = stringConf(
308301
key = "spark.sql.parquet.output.committer.class",
309302
defaultValue = Some(classOf[ParquetOutputCommitter].getName),
@@ -505,9 +498,6 @@ private[sql] class SQLConf extends Serializable with CatalystConf {
505498

506499
private[spark] def writeLegacyParquetFormat: Boolean = getConf(PARQUET_WRITE_LEGACY_FORMAT)
507500

508-
@deprecated("use SQLConf.writeLegacyParquetFormat", "1.6.0")
509-
private[spark] def followParquetFormatSpec: Boolean = !writeLegacyParquetFormat
510-
511501
private[spark] def inMemoryPartitionPruning: Boolean = getConf(IN_MEMORY_PARTITION_PRUNING)
512502

513503
private[spark] def columnNameOfCorruptRecord: String = getConf(COLUMN_NAME_OF_CORRUPT_RECORD)

0 commit comments

Comments
 (0)