79395072

Date: 2025-01-28 20:20:06
Score: 1
Natty:
Report link

I found that Milvus treats % as a wildcard. To query literal % or other special characters, we need to escape them.

  1. Escape % and \n: use \% for % and \\n for newlines.

    • Prefix Match: field like "abc%".
    • Exact Match: field == "abc".
    • Intermediate % (e.g., "abc%def%") requires escaping.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: tmandyai