vitrivr's next-generation retrieval engine. It is capable of extracting and retrieving a wider range of multimedia objects such as audio, video, images or 3d models.
This PR adds support for boolean retrieval on struct sub-fields (i.e. columns).
The query caller has to know the name of the field and sub-field (also known as attribute).
Example usage:
Given the FileSourceMetadataDescriptor is a StructDescriptor with two sub-fields: path and size, queries such as
Enable to query for retrievables with a file size greater than 15000 (bytes).
The comparison is always that the sub-field is the left-hand operand and the value present in the query is the right-hand operand.
Note the DOT in the retriever's field name.
This PR adds support for boolean retrieval on struct sub-fields (i.e. columns). The query caller has to know the name of the field and sub-field (also known as attribute).
Example usage: Given the
FileSourceMetadataDescriptor
is aStructDescriptor
with two sub-fields:path
andsize
, queries such asEnable to query for retrievables with a file size greater than 15000 (bytes). The comparison is always that the sub-field is the left-hand operand and the value present in the query is the right-hand operand. Note the DOT in the retriever's field name.