We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc3ae4f commit 6650c2fCopy full SHA for 6650c2f
1 file changed
include/paimon/predicate/vector_search.h
@@ -74,6 +74,10 @@ struct PAIMON_EXPORT VectorSearch {
74
/// context-aware filtering at query time.
75
/// @note All fields referenced in the predicate must have been materialized
76
/// in the index during build to ensure availability.
77
+ /// @note For tag-based vector indexes, fields referenced by the predicate
78
+ /// must keep the same names and types as the fields used during index
79
+ /// construction. Indexes built with tag fields must not be reused across
80
+ /// schema evolution that renames or changes those tag fields.
81
std::shared_ptr<Predicate> predicate;
82
/// The distance metric to use for this query, if explicitly specified.
83
/// If set, this value must match the distance type used by the index (e.g., EUCLIDEAN, COSINE).
0 commit comments