We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58f4ed5 commit a010d96Copy full SHA for a010d96
src/common/io/src/format_settings.rs
@@ -34,7 +34,7 @@ impl Default for FormatSettings {
34
jiff_timezone: TimeZone::UTC,
35
geometry_format: GeometryDataType::default(),
36
enable_dst_hour_fix: false,
37
- format_null_as_str: true,
+ format_null_as_str: false,
38
}
39
40
src/query/settings/src/settings_default.rs
@@ -1116,7 +1116,7 @@ impl DefaultSettings {
1116
range: Some(SettingRange::Numeric(0..=1)),
1117
}),
1118
("format_null_as_str", DefaultSettingValue {
1119
- value: UserSettingValue::UInt64(1),
+ value: UserSettingValue::UInt64(0),
1120
desc: "Format NULL as str in query api response",
1121
mode: SettingMode::Both,
1122
scope: SettingScope::Both,
0 commit comments