File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
sea-query-diesel/src/backend Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ impl TransformValue for Mysql {
64
64
) ) ]
65
65
Value :: Decimal ( _) => bail ! ( "Enable feature with-rust_decimal-mysql" ) ,
66
66
#[ cfg( feature = "with-bigdecimal" ) ]
67
- Value :: BigDecimal ( v) => build ! ( Numeric , v. map ( |v| * v ) ) ,
67
+ Value :: BigDecimal ( v) => build ! ( Numeric , v) ,
68
68
#[ cfg( feature = "with-json" ) ]
69
69
Value :: Json ( v) => build ! ( Json , v) ,
70
70
#[ cfg( feature = "with-ipnetwork" ) ]
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ impl TransformValue for Pg {
74
74
) ) ]
75
75
Value :: Decimal ( _) => bail ! ( "Enable feature with-rust_decimal-postgres" ) ,
76
76
#[ cfg( feature = "with-bigdecimal" ) ]
77
- Value :: BigDecimal ( v) => build ! ( Numeric , v. map ( |v| * v ) ) ,
77
+ Value :: BigDecimal ( v) => build ! ( Numeric , v) ,
78
78
#[ cfg( feature = "with-json" ) ]
79
79
Value :: Json ( v) => build ! ( Json , v) ,
80
80
#[ cfg( feature = "with-ipnetwork" ) ]
You can’t perform that action at this time.
0 commit comments