Fix strange trash

This commit is contained in:
Alexey Milovidov 2023-08-04 20:53:56 +02:00
parent 9dfed89dc8
commit aee9612e51
2 changed files with 2 additions and 2 deletions

View File

@ -191,7 +191,7 @@ SettingFieldMaxThreads & SettingFieldMaxThreads::operator=(const Field & f)
String SettingFieldMaxThreads::toString() const
{
if (is_auto)
return "'auto(" + ::DB::toString(value) + ")'";
return "auto(" + ::DB::toString(value) + ")";
else
return ::DB::toString(value);
}