Skip to content

Commit 3ae8c27

Browse files
committed
Correct search for delimited attributes
Signed-off-by: Chris (He/Him) <[email protected]>
1 parent fac1ad9 commit 3ae8c27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/src/main/java/com/atlan/model/fields/KeywordTextDelimitedField.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
/**
1313
* Represents any field in Atlan that can be searched by keyword or text-based search operations,
14-
* including a stemmed variation of the text analyzers.
14+
* including a delimited variation of the text analyzers.
1515
*/
1616
public class KeywordTextDelimitedField extends SearchableField
1717
implements IKeywordSearchable, ITextSearchable, IDelimitedSearchable {
@@ -105,6 +105,6 @@ public Query match(String value) {
105105
/** {@inheritDoc} */
106106
@Override
107107
public Query matchDelimited(String value) {
108-
return IStemmedSearchable.matchStemmed(getDelimitedFieldName(), value);
108+
return IDelimitedSearchable.matchDelimited(getDelimitedFieldName(), value);
109109
}
110110
}

0 commit comments

Comments
 (0)