mirror of https://github.com/tikv/client-rust.git
check batch delete really clean up data
Signed-off-by: lance6716 <lance6716@gmail.com>
This commit is contained in:
parent
5600349716
commit
dffa44edaf
|
|
@ -911,7 +911,9 @@ async fn raw_large_batch_put() -> Result<()> {
|
||||||
}
|
}
|
||||||
assert_eq!(got, pairs);
|
assert_eq!(got, pairs);
|
||||||
|
|
||||||
client.batch_delete(keys).await?;
|
client.batch_delete(keys.clone()).await?;
|
||||||
|
let res = client.batch_get(keys).await?;
|
||||||
|
assert!(res.is_empty());
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue