check batch delete really clean up data

Signed-off-by: lance6716 <lance6716@gmail.com>
This commit is contained in:
lance6716 2025-08-25 21:30:34 +08:00
parent 5600349716
commit dffa44edaf
1 changed files with 3 additions and 1 deletions

View File

@ -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(())
} }