Fix clippy warnings

This commit is contained in:
Tobie Morgan Hitchcock 2022-04-01 23:28:54 +01:00
parent d6aadfecac
commit 94ffc054a7
3 changed files with 16 additions and 2 deletions

View file

@ -100,7 +100,7 @@ impl Thing {
self,
ctx: &Runtime,
opt: &Options,
stm: &Statement,
_stm: &Statement,
txn: &Transaction,
chn: &Sender<(Option<Thing>, Value)>,
) -> Result<(), Error> {
@ -122,7 +122,7 @@ impl Table {
self,
ctx: &Runtime,
opt: &Options,
stm: &Statement,
_stm: &Statement,
txn: &Transaction,
chn: &Sender<(Option<Thing>, Value)>,
) -> Result<(), Error> {

View file

@ -18,4 +18,5 @@ mod patch;
mod pick;
mod replace;
mod set;
mod single;
mod value;

View file

@ -0,0 +1,13 @@
use crate::sql::value::Value;
impl Value {
pub fn single(&self) -> &Self {
match self {
Value::Array(v) => match v.value.first() {
None => &Value::None,
Some(v) => v,
},
v => v,
}
}
}