[Bug] Fix bug that desc tbl all stmt throw error: Malformed packet (#3233)

This commit is contained in:
Mingyu Chen
2020-03-31 10:29:53 +08:00
committed by GitHub
parent 4131afe316
commit e9b3584d45

View File

@ -73,7 +73,7 @@ public class DescribeStmt extends ShowStmt {
.build();
// empty col num equals to DESC_OLAP_TABLE_ALL_META_DATA.size()
private static final List<String> EMPTY_ROW = Arrays.asList("", "", "", "", "", "", "");
private static final List<String> EMPTY_ROW = Arrays.asList("", "", "", "", "", "", "", "");
private TableName dbTableName;
private ProcNodeInterface node;