removed quotes for enum value in condition
This commit is contained in:
parent
43d2f81b95
commit
484c2d8b05
|
|
@ -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_);
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue