You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by li...@apache.org on 2020/03/31 02:30:06 UTC

[incubator-doris] branch master updated: [Bug] Fix bug that `desc tbl all` stmt throw error: Malformed packet (#3233)

This is an automated email from the ASF dual-hosted git repository.

lingmiao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git


The following commit(s) were added to refs/heads/master by this push:
     new e9b3584  [Bug] Fix bug that `desc tbl all` stmt throw error: Malformed packet (#3233)
e9b3584 is described below

commit e9b3584d45f662e6c3c85516cf58ff63fc19f149
Author: Mingyu Chen <mo...@gmail.com>
AuthorDate: Tue Mar 31 10:29:53 2020 +0800

    [Bug] Fix bug that `desc tbl all` stmt throw error: Malformed packet (#3233)
---
 fe/src/main/java/org/apache/doris/analysis/DescribeStmt.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fe/src/main/java/org/apache/doris/analysis/DescribeStmt.java b/fe/src/main/java/org/apache/doris/analysis/DescribeStmt.java
index aacad01..c8ffd35 100644
--- a/fe/src/main/java/org/apache/doris/analysis/DescribeStmt.java
+++ b/fe/src/main/java/org/apache/doris/analysis/DescribeStmt.java
@@ -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;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org