You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@iotdb.apache.org by "Xiangdong Huang (Jira)" <ji...@apache.org> on 2020/01/11 03:40:00 UTC

[jira] [Created] (IOTDB-414) Create Time series and show storage group Statements can not execute successfully

Xiangdong Huang created IOTDB-414:
-------------------------------------

             Summary: Create Time series and show storage group Statements can not execute successfully 
                 Key: IOTDB-414
                 URL: https://issues.apache.org/jira/browse/IOTDB-414
             Project: Apache IoTDB
          Issue Type: Bug
    Affects Versions: master branch
            Reporter: Xiangdong Huang


Hi, current master branch has some issues for executing some sqls. e.g.,:

 

IoTDB> show timeseries;
show timeseries;
+-------------+-------------+-------------+-------------+-------------+
| timeseries|storage group| dataType| encoding| compression|
+-------------+-------------+-------------+-------------+-------------+
|root.sg1.d1.s1| root.sg1| INT64| RLE| SNAPPY|
|root.sg1.d1.s2| root.sg1| INT64| RLE| SNAPPY|
|root.sg1.d1.s3| root.sg1| INT64| RLE| SNAPPY|
+-------------+-------------+-------------+-------------+-------------+
Total line number = 3
It costs 0.006s
IoTDB> create timeseries root.sg1.d2.s1 with datatype=INT64, encoding=RLE, compression=SNAPPY;
create timeseries root.sg1.d2.s1 with datatype=INT64, encoding=RLE, compression=SNAPPY;
Msg: The resultDataType or encoding or compression of the last node s1 is conflicting in the storage group root.sg1
It costs 0.003s
IoTDB> show storage group;
show storage group;
Msg: column 2 does not exist
It costs 0.001s


 # The create timeseries statement should be executed successfully.
 # what is the problem of "show storage group"?

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)