Fix failing rarray test (#664)

This commit is contained in:
Thom Chiovoloni 2020-03-31 21:07:26 -07:00 committed by GitHub
parent 2a04f06a3a
commit 3ae52545a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -180,7 +180,7 @@ mod test {
array::load_module(&db).unwrap();
let v = vec![1i64, 2, 3, 4];
let values = v.into_iter().map(Value::from).collect();
let values: Vec<Value> = v.into_iter().map(Value::from).collect();
let ptr = Rc::new(values);
{
let mut stmt = db.prepare("SELECT value from rarray(?);").unwrap();