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 5139acf commit 6510e84Copy full SHA for 6510e84
rust/cubesql/cubesql/Cargo.toml
@@ -140,6 +140,5 @@ unnecessary_mut_passed = "allow"
140
unnecessary_to_owned = "allow"
141
unnecessary_unwrap = "allow"
142
unused_unit = "allow"
143
-unwrap_or_default = "allow"
144
useless_format = "allow"
145
wrong_self_convention = "allow"
rust/cubesql/cubesql/src/compile/test/mod.rs
@@ -828,7 +828,7 @@ impl TransportService for TestConnectionTransport {
828
"SELECT * FROM {}",
829
serde_json::to_string_pretty(&inputs).unwrap()
830
),
831
- expression_params.unwrap_or(Vec::new()),
+ expression_params.unwrap_or_default(),
832
833
})
834
}
0 commit comments