dh20 commented on code in PR #1781:
URL: https://github.com/apache/auron/pull/1781#discussion_r2644560560
##########
spark-extension/src/main/java/org/apache/auron/spark/configuration/SparkAuronConfiguration.java:
##########
@@ -237,6 +238,11 @@ public class SparkAuronConfiguration extends
AuronConfiguration {
.description("use microsecond precision when reading ORC timestamp
columns. ")
.booleanType()
.defaultValue(false);
+ public static final ConfigOption<Boolean> ORC_SCHEMA_ISCASE_SENSITIVE =
ConfigOptions.key(
+ "auron.orc.schema.iscasesensitive")
+ .description("does matching ORC file schema distinguish between
uppercase and lowercase ")
+ .booleanType()
+ .defaultValue(false);
Review Comment:
The default value here should be false, and the [spark. sql. aseSensitive]
in Spark defaults to false. I think they should be consistent here
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]