Commit 3264fd4e authored by 彭勇升 pengys's avatar 彭勇升 pengys Committed by 吴晟
Browse files

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

parent 429c9b3c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 {