Cpaulyz opened a new pull request, #11576:
URL: https://github.com/apache/iotdb/pull/11576

   ## Description
   
   ```
   create aligned timeseries root.sg.d1(s1 float encoding=rle, s2 int64 
encoding=rle);
   create timeseries root.sg.d2.s1 with datatype=float,encoding=rle;
   create timeseries root.sg.d2.s2 with datatype=int64,encoding=rle;
   create device template t1 aligned (temperature FLOAT encoding=Gorilla, 
status BOOLEAN encoding=PLAIN);
   set device template t1 to root.sg.aligned_template;
   show paths set device template t1;
   create timeseries using device template on root.sg.aligned_template;
   
   insert into root.sg.d1(time,s1,s2) 
values(1,1,1),(2,2,2),(3,3,3),(4,4,4),(5,5,5),(6,6,6),(7,7,7),(8,8,8),(9,9,9),(10,10,10);
   insert into root.sg.d2(time,s1,s2) 
values(1,1,1),(2,2,2),(3,3,3),(4,null,4),(6,6,null);
   insert into root.sg.aligned_template(time,temperature,status) 
values(1,20,false),(2,22.1,true),(3,18,false);
   ```
   
   <img width="479" alt="image" 
src="https://github.com/apache/iotdb/assets/43774645/44549735-af7f-4e9b-86c7-766770736372";>
   
   
   <img width="700" alt="image" 
src="https://github.com/apache/iotdb/assets/43774645/ec53de8c-635c-4d3f-9a09-a3992cd9da82";>
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to