@@ -237,18 +237,15 @@ impl DocStore {
237
237
}
238
238
}
239
239
240
- pub fn get_doc ( & self , db_addr : & DB3Address , col_name : & str , id : i64 ) -> Result < String > {
240
+ pub fn get_doc ( & self , db_addr : & DB3Address , col_name : & str , id : i64 ) -> Result < Option < String > > {
241
241
let db_opt = self . get_db_ref ( db_addr) ;
242
242
if let Some ( db) = db_opt {
243
243
let opt = db
244
244
. get :: < String > ( col_name, id)
245
245
. map_err ( |e| DB3Error :: WriteStoreError ( format ! ( "{e}" ) ) ) ?;
246
- Ok ( opt)
246
+ Ok ( Some ( opt) )
247
247
} else {
248
- Err ( DB3Error :: WriteStoreError ( format ! (
249
- "no database found with addr {}" ,
250
- db_addr. to_hex( )
251
- ) ) )
248
+ Ok ( None )
252
249
}
253
250
}
254
251
@@ -349,7 +346,7 @@ mod tests {
349
346
fn doc_get_test ( ) {
350
347
let ( doc_store, id) = prepare_the_dataset ( ) ;
351
348
let doc_str = r#"{"f2":"f2", "f1":"f1"}"# ;
352
- if let Ok ( value) = doc_store. get_doc ( & DB3Address :: ZERO , "col1" , id) {
349
+ if let Ok ( Some ( value) ) = doc_store. get_doc ( & DB3Address :: ZERO , "col1" , id) {
353
350
let value: serde_json:: Value = serde_json:: from_str ( value. as_str ( ) ) . unwrap ( ) ;
354
351
let right: serde_json:: Value = serde_json:: from_str ( doc_str) . unwrap ( ) ;
355
352
assert_eq ! ( value, right) ;
@@ -417,7 +414,7 @@ mod tests {
417
414
fn doc_store_smoke_test ( ) {
418
415
let ( doc_store, id) = prepare_the_dataset ( ) ;
419
416
let db_id = DB3Address :: ZERO ;
420
- if let Ok ( value) = doc_store. get_doc ( & db_id, "col1" , id) {
417
+ if let Ok ( Some ( value) ) = doc_store. get_doc ( & db_id, "col1" , id) {
421
418
println ! ( "{}" , value. as_str( ) ) ;
422
419
let value: serde_json:: Value = serde_json:: from_str ( value. as_str ( ) ) . unwrap ( ) ;
423
420
assert_eq ! ( value[ "f1" ] . as_str( ) , Some ( "f1" ) ) ;
@@ -475,7 +472,7 @@ mod tests {
475
472
assert ! ( false ) ;
476
473
}
477
474
478
- if let Ok ( value) = doc_store. get_doc ( & db_id, "col1" , id) {
475
+ if let Ok ( Some ( value) ) = doc_store. get_doc ( & db_id, "col1" , id) {
479
476
let value: serde_json:: Value = serde_json:: from_str ( value. as_str ( ) ) . unwrap ( ) ;
480
477
assert_eq ! ( value[ "test" ] . as_str( ) , Some ( "v2" ) ) ;
481
478
} else {
0 commit comments