Fixed #3328, keyword data type is not long enough for saving PXX metrics. (#3332)

This commit is contained in:
彭勇升 pengys 2019-08-26 16:33:55 +08:00 committed by 吴晟 Wu Sheng
parent 429c9b3c9c
commit 3264fd4e31
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ public class ColumnTypeEsMapping implements DataTypeMapping {
} else if (String.class.equals(type)) {
return "keyword";
} else if (IntKeyLongValueHashMap.class.equals(type)) {
return "keyword";
return "text";
} else if (byte[].class.equals(type)) {
return "binary";
} else {