You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@iotdb.apache.org by "xiaozhihong (Jira)" <ji...@apache.org> on 2022/04/28 01:45:00 UTC

[jira] [Created] (IOTDB-3029) The prefix path generated by the select into target sequence contains * and ** currently unchecked

xiaozhihong created IOTDB-3029:
----------------------------------

             Summary: The prefix path generated by the select into target sequence contains * and ** currently unchecked
                 Key: IOTDB-3029
                 URL: https://issues.apache.org/jira/browse/IOTDB-3029
             Project: Apache IoTDB
          Issue Type: Bug
          Components: Core/Server
    Affects Versions: master branch
            Reporter: xiaozhihong
            Assignee: Steve Yurong Su


The test case is as follows:
{code:java}
create schema template t1 (temperature FLOAT encoding=RLE, status BOOLEAN encoding=PLAIN compression=SNAPPY);
set schema template t1 to root.sg1.d1;
create timeseries of schema template on root.sg1.d1;
show timeseries root.sg1.**;
show devices root.sg1.**;
insert into root.sg1.d1(time, temperature, status) values(1, 1, TRUE);
insert into root.sg1.d1(time, temperature, status) values(2, 2, FALSE), (3, 3, TRUE);
select temperature into h1 from root.sg1.**;
select temperature,h1 from root.sg1.**;
show schema templates;
delete storage group root.**;
drop schema template t1; {code}



--
This message was sent by Atlassian Jira
(v8.20.7#820007)