removed quotes for enum value in condition

This commit is contained in:
Sascha Kühl 2024-08-22 16:07:45 +02:00
parent 43d2f81b95
commit 484c2d8b05
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ public:
auto at = data_type_traits<T>::create_value(value); auto at = data_type_traits<T>::create_value(value);
any_type_to_string_visitor value_to_string(d, query); any_type_to_string_visitor value_to_string(d, query);
std::visit(value_to_string, at); std::visit(value_to_string, at);
return "'" + value_to_string.result + "' " + operand + " " + d.prepare_identifier(field_); return value_to_string.result + " " + operand + " " + d.prepare_identifier(field_);
} }
}; };