| 882 | bool set(ulonglong num, CHARSET_INFO *cs) { return set_int((longlong)num, true, cs); } |
| 883 | bool set_real_with_type(double num, uint decimals, CHARSET_INFO *cs, my_gcvt_arg_type); |
| 884 | bool set_real(double num,uint decimals, CHARSET_INFO *cs) |
| 885 | { return set_real_with_type(num,decimals,cs,MY_GCVT_ARG_DOUBLE); } |
| 886 | bool set_real(float num,uint decimals, CHARSET_INFO *cs) |
| 887 | { return set_real_with_type(num,decimals,cs,MY_GCVT_ARG_FLOAT); } |
| 888 | bool set_fcvt(double num, uint decimals) |
no outgoing calls
no test coverage detected