mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-26 19:41:37 +08:00
Add test with empty blob (issue #174).
This commit is contained in:
parent
982499ba51
commit
95050f10a8
@ -129,6 +129,17 @@ mod test {
|
|||||||
assert_eq!(v, v1234);
|
assert_eq!(v, v1234);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_empty_blob() {
|
||||||
|
let db = checked_memory_handle();
|
||||||
|
|
||||||
|
let empty = vec![];
|
||||||
|
db.execute("INSERT INTO foo(b) VALUES (?)", &[&empty]).unwrap();
|
||||||
|
|
||||||
|
let v: Vec<u8> = db.query_row("SELECT b FROM foo", &[], |r| r.get(0)).unwrap();
|
||||||
|
assert_eq!(v, empty);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_str() {
|
fn test_str() {
|
||||||
let db = checked_memory_handle();
|
let db = checked_memory_handle();
|
||||||
|
Loading…
Reference in New Issue
Block a user