Skip to content

Commit 4e8a1a5

Browse files
committed
fix fmt
1 parent e3e3c55 commit 4e8a1a5

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

datafusion/common/src/dfschema.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,7 @@ impl DFSchema {
323323
/// Returns a reference to an empty set when no ambiguous names have been
324324
/// recorded (the common case).
325325
pub fn ambiguous_names(&self) -> &HashSet<String> {
326-
static EMPTY: std::sync::OnceLock<HashSet<String>> =
327-
std::sync::OnceLock::new();
326+
static EMPTY: std::sync::OnceLock<HashSet<String>> = std::sync::OnceLock::new();
328327
self.ambiguous_names
329328
.as_deref()
330329
.unwrap_or_else(|| EMPTY.get_or_init(HashSet::new))

0 commit comments

Comments
 (0)