File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
sql/core/src/main/scala/org/apache/spark/sql Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -297,13 +297,6 @@ private[spark] object SQLConf {
297
297
" Spark SQL schema and vice versa." ,
298
298
isPublic = false )
299
299
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
-
307
300
val PARQUET_OUTPUT_COMMITTER_CLASS = stringConf(
308
301
key = " spark.sql.parquet.output.committer.class" ,
309
302
defaultValue = Some (classOf [ParquetOutputCommitter ].getName),
@@ -505,9 +498,6 @@ private[sql] class SQLConf extends Serializable with CatalystConf {
505
498
506
499
private [spark] def writeLegacyParquetFormat : Boolean = getConf(PARQUET_WRITE_LEGACY_FORMAT )
507
500
508
- @ deprecated(" use SQLConf.writeLegacyParquetFormat" , " 1.6.0" )
509
- private [spark] def followParquetFormatSpec : Boolean = ! writeLegacyParquetFormat
510
-
511
501
private [spark] def inMemoryPartitionPruning : Boolean = getConf(IN_MEMORY_PARTITION_PRUNING )
512
502
513
503
private [spark] def columnNameOfCorruptRecord : String = getConf(COLUMN_NAME_OF_CORRUPT_RECORD )
You can’t perform that action at this time.
0 commit comments