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 5ffa4dd commit c666c79Copy full SHA for c666c79
datafusion/functions/src/datetime/common.rs
@@ -93,7 +93,7 @@ impl ConfiguredTimeZone {
93
}
94
95
pub(crate) fn from_config(config: &ConfigOptions) -> Self {
96
- match Self::parse(&config.execution.time_zone) {
+ match Self::parse(config.execution.time_zone.as_deref().unwrap_or("")) {
97
Ok(Some(tz)) => tz,
98
_ => Self::utc(),
99
0 commit comments