| 12 | static constexpr auto name = "formatReadableDecimalSize"; |
| 13 | |
| 14 | static void format(double value, DB::WriteBuffer & out) |
| 15 | { |
| 16 | formatReadableSizeWithDecimalSuffix(value, out); |
| 17 | } |
| 18 | }; |
| 19 | } |
| 20 |
nothing calls this directly
no test coverage detected