We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b621455 commit c9e22c9Copy full SHA for c9e22c9
fe/fe-core/src/main/java/org/apache/doris/common/proc/IndexInfoProcDir.java
@@ -70,7 +70,7 @@ public ProcResult fetchResult() throws AnalysisException {
70
for (long indexId : indices) {
71
MaterializedIndexMeta indexMeta = olapTable.getIndexIdToMeta().get(indexId);
72
73
- String type = olapTable.getKeysType().name();
+ String type = olapTable.getIndexMetaByIndexId(indexId).getKeysType().name();
74
StringBuilder builder = new StringBuilder();
75
builder.append(type).append("(");
76
List<String> columnNames = Lists.newArrayList();
0 commit comments