I found that Milvus treats %
as a wildcard. To query literal %
or other special characters, we need to escape them.
Escape %
and \n
: use \%
for %
and \\n
for newlines.
field like "abc%"
.field == "abc"
.%
(e.g., "abc%def%"
) requires escaping.