-
Notifications
You must be signed in to change notification settings - Fork 310
Closed
Labels
type: bugA general bugA general bug
Milestone
Description
Right now, we do not correctly convert simple values associated with properties. For example:
class Foo {
long bar;
}
Query.query(Criteria.where("bar").is(1))
The bar
value remains integer and Cassandra rejects such a value because it does not match the column type.
Out of #1383, we discovered that we do not apply conversion for values associated with a property although we have all metadata in place.
Also, repository queries apply conversion twice which might interfere with double value conversion. Beyond that, double-conversion is not necessary. We should fix the issue.
Metadata
Metadata
Assignees
Labels
type: bugA general bugA general bug