afedulov commented on code in PR #20127:
URL: https://github.com/apache/flink/pull/20127#discussion_r916739165
##########
flink-formats/flink-csv/src/main/java/org/apache/flink/formats/csv/CsvFormatOptions.java:
##########
@@ -87,11 +87,12 @@ public class CsvFormatOptions {
"Optional null literal string that is interpreted
as a\n"
+ "null value (disabled by default)");
- public static final ConfigOption<Boolean> WRITE_BIGDECIMAL_AS_PLAIN =
- ConfigOptions.key("write-bigdecimal-as-plain")
+ public static final ConfigOption<Boolean>
DISABLE_WRITE_BIGDECIMAL_AS_SCIENTIFIC_NOTATION =
+
ConfigOptions.key("disable-write-bigdecimal-as-scientific-notation")
.booleanType()
- .defaultValue(true)
- .withDescription("Optional whether write bigdecimal using
scientific notation");
+ .defaultValue(false)
+ .withDescription(
+ "Disabled representation of data of type
Bigdecimal as scientific notation (default is false, which requires conversion
to scientific notation), e.g. A Bigdecimal number of 100000, If false the
result is '1E+5', if true the result is 100000.");
Review Comment:
`DisableS`
as -> in
--
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]