docs: fix return value of fdb_kv_get_blob (#377)
Some checks failed
AutoTestCI / AutoTest (push) Has been cancelled

This commit is contained in:
Leandro Lanzieri
2025-10-27 09:52:21 +01:00
committed by GitHub
parent 48351df976
commit b1043ed10d
2 changed files with 2 additions and 2 deletions

View File

@@ -135,7 +135,7 @@ fdb_kv_set_blob(kvdb, "temp", fdb_blob_make(&blob, &temp_data, sizeof(temp_data)
| db | Database Objects |
| key | KV name |
| blob | Return the blob value of KV through the blob object |
| Return | Error Code |
| Return | Length of blob data actually read |
Example:

View File

@@ -135,7 +135,7 @@ fdb_kv_set_blob(kvdb, "temp", fdb_blob_make(&blob, &temp_data, sizeof(temp_data)
| db | 数据库对象 |
| key | KV 的名称 |
| blob | 通过 blob 对象,返回 KV 的 blob value |
| 返回 | 错误码 |
| 返回 | 实际读取到的 blob 数据长度 |
示例: