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 908fe35 commit 70d02b0Copy full SHA for 70d02b0
query/src/format/mod.rs
@@ -8,7 +8,7 @@ pub trait UdfCodeFormatter: std::fmt::Debug + Send + Sync {
8
}
9
10
/// Default implementation that returns code unchanged
11
-#[derive(Debug, Clone, Copy)]
+#[derive(Debug, Default, Clone, Copy)]
12
pub struct NoOpFormatter;
13
14
impl UdfCodeFormatter for NoOpFormatter {
@@ -18,7 +18,7 @@ impl UdfCodeFormatter for NoOpFormatter {
18
19
20
/// Code formatter that strips leading indentation
21
22
pub struct StripIndentationFormatter;
23
24
impl UdfCodeFormatter for StripIndentationFormatter {
0 commit comments