mirror of
https://github.com/isar/rusqlite.git
synced 2025-08-23 14:54:30 +08:00
Fix failing rarray test (#664)
This commit is contained in:
@@ -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();
|
||||
|
Reference in New Issue
Block a user