[fix](inverted index)Remove the strong check for parser when creating a table with inverted index (#31391)

This commit is contained in:
qiye
2024-02-26 19:13:03 +08:00
committed by yiguolei
parent c34639245e
commit dd229b77b1
2 changed files with 2 additions and 5 deletions

View File

@ -104,9 +104,6 @@ public class InvertedIndexUtil {
String parser = null;
if (properties != null) {
parser = properties.get(INVERTED_INDEX_PARSER_KEY);
if (parser == null && !properties.isEmpty()) {
throw new AnalysisException("Invalid index properties, parser must not be none");
}
checkInvertedIndexProperties(properties);
}