mod rust schemaless sample code

This commit is contained in:
sheyanjie-qq 2024-08-05 13:42:17 +08:00 committed by gccgdb1234
parent 597375fb80
commit 4d3d36ae2c
2 changed files with 2 additions and 2 deletions

View File

@ -82,6 +82,6 @@ async fn main() -> anyhow::Result<()> {
.build()?;
assert_eq!(client.put(&sml_data).await?, ());
println!("execute schemaless insert successfully");
println!("Inserted data with schemaless successfully.");
Ok(())
}

View File

@ -73,6 +73,6 @@ async fn main() -> anyhow::Result<()> {
.build()?;
assert_eq!(client.put(&sml_data).await?, ());
println!("execute schemaless insert successfully");
println!("Inserted data with schemaless successfully.");
Ok(())
}