MCPcopy Create free account
hub / github.com/MariaDB/server / set_real

Method set_real

sql/sql_string.h:884–885  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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)

Callers 15

val_strMethod · 0.45
avgMethod · 0.45
stdMethod · 0.45
collect_realFunction · 0.45
val_strMethod · 0.45
val_str_from_real_opMethod · 0.45
val_strMethod · 0.45
store_doubleMethod · 0.45
to_stringMethod · 0.45
val_strMethod · 0.45
setMethod · 0.45
avgMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected