Commit 39d5a21 1 parent cc24d7d commit 39d5a21 Copy full SHA for 39d5a21
File tree 2 files changed +0
-14
lines changed
2 files changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -54,18 +54,9 @@ impl Row for AnyRow {
54
54
let value = self . try_get_raw ( & index) ?;
55
55
let ty = value. type_info ( ) ;
56
56
57
- println ! (
58
- "Some cond {} {} {}" ,
59
- !value. is_null( ) ,
60
- !ty. is_null( ) ,
61
- !T :: compatible( & ty)
62
- ) ;
63
-
64
57
if !value. is_null ( ) && !ty. is_null ( ) && !T :: compatible ( & ty) {
65
- println ! ( "--------------------------\n \n " ) ;
66
58
Err ( mismatched_types :: < T > ( & ty) )
67
59
} else {
68
- println ! ( "--------------------------\n \n " ) ;
69
60
T :: decode ( value)
70
61
}
71
62
. map_err ( |source| Error :: ColumnDecode {
Original file line number Diff line number Diff line change 70
70
T : Decode < ' r , DB > ,
71
71
{
72
72
fn decode ( value : <DB as HasValueRef < ' r > >:: ValueRef ) -> Result < Self , BoxDynError > {
73
- println ! (
74
- "wtf is decoding bro ? {} {}" ,
75
- value. is_null( ) ,
76
- value. type_info( )
77
- ) ;
78
73
if value. is_null ( ) {
79
74
Ok ( None )
80
75
} else {
You can’t perform that action at this time.
0 commit comments