diff --git a/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala b/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala index 0123f91393e7e..123759c6c8b80 100644 --- a/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala +++ b/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala @@ -4592,7 +4592,7 @@ object SQLConf { .doc("When LEGACY, Spark will rebase INT96 timestamps from Proleptic Gregorian calendar to " + "the legacy hybrid (Julian + Gregorian) calendar when writing Parquet files. " + "When CORRECTED, Spark will not do rebase and write the timestamps as it is. " + - "When EXCEPTION, which is the default, Spark will fail the writing if it sees ancient " + + "When EXCEPTION, Spark will fail the writing if it sees ancient " + "timestamps that are ambiguous between the two calendars.") .version("3.1.0") .stringConf @@ -4606,7 +4606,7 @@ object SQLConf { .doc("When LEGACY, Spark will rebase dates/timestamps from Proleptic Gregorian calendar " + "to the legacy hybrid (Julian + Gregorian) calendar when writing Parquet files. " + "When CORRECTED, Spark will not do rebase and write the dates/timestamps as it is. " + - "When EXCEPTION, which is the default, Spark will fail the writing if it sees " + + "When EXCEPTION, Spark will fail the writing if it sees " + "ancient dates/timestamps that are ambiguous between the two calendars. " + "This config influences on writes of the following parquet logical types: DATE, " + "TIMESTAMP_MILLIS, TIMESTAMP_MICROS. The INT96 type has the separate config: " + @@ -4623,7 +4623,7 @@ object SQLConf { .doc("When LEGACY, Spark will rebase INT96 timestamps from the legacy hybrid (Julian + " + "Gregorian) calendar to Proleptic Gregorian calendar when reading Parquet files. " + "When CORRECTED, Spark will not do rebase and read the timestamps as it is. " + - "When EXCEPTION, which is the default, Spark will fail the reading if it sees ancient " + + "When EXCEPTION, Spark will fail the reading if it sees ancient " + "timestamps that are ambiguous between the two calendars. This config is only effective " + "if the writer info (like Spark, Hive) of the Parquet files is unknown.") .version("3.1.0") @@ -4638,7 +4638,7 @@ object SQLConf { .doc("When LEGACY, Spark will rebase dates/timestamps from the legacy hybrid (Julian + " + "Gregorian) calendar to Proleptic Gregorian calendar when reading Parquet files. " + "When CORRECTED, Spark will not do rebase and read the dates/timestamps as it is. " + - "When EXCEPTION, which is the default, Spark will fail the reading if it sees " + + "When EXCEPTION, Spark will fail the reading if it sees " + "ancient dates/timestamps that are ambiguous between the two calendars. This config is " + "only effective if the writer info (like Spark, Hive) of the Parquet files is unknown. " + "This config influences on reads of the following parquet logical types: DATE, " + @@ -4657,7 +4657,7 @@ object SQLConf { .doc("When LEGACY, Spark will rebase dates/timestamps from Proleptic Gregorian calendar " + "to the legacy hybrid (Julian + Gregorian) calendar when writing Avro files. " + "When CORRECTED, Spark will not do rebase and write the dates/timestamps as it is. " + - "When EXCEPTION, which is the default, Spark will fail the writing if it sees " + + "When EXCEPTION, Spark will fail the writing if it sees " + "ancient dates/timestamps that are ambiguous between the two calendars.") .version("3.0.0") .stringConf @@ -4671,7 +4671,7 @@ object SQLConf { .doc("When LEGACY, Spark will rebase dates/timestamps from the legacy hybrid (Julian + " + "Gregorian) calendar to Proleptic Gregorian calendar when reading Avro files. " + "When CORRECTED, Spark will not do rebase and read the dates/timestamps as it is. " + - "When EXCEPTION, which is the default, Spark will fail the reading if it sees " + + "When EXCEPTION, Spark will fail the reading if it sees " + "ancient dates/timestamps that are ambiguous between the two calendars. This config is " + "only effective if the writer info (like Spark, Hive) of the Avro files is unknown.") .version("3.0.0")