remove SetNull from code

This commit is contained in:
nora 2022-04-16 00:01:28 +02:00
parent 4d9648bf97
commit 46229fd74f
2 changed files with 0 additions and 5 deletions

View file

@ -84,9 +84,6 @@ where
self.stdin.read_exact(&mut buf).unwrap();
*self.elem_mut() = Wrapping(buf[0]);
}
Stmt::SetNull => {
*self.elem_mut() = Wrapping(0);
}
Stmt::SetN(n) => {
*self.elem_mut() = Wrapping(n);
}