Hi,

+1 (binding).

The source release:
apache headers [ok]
signatures and hashes [ok]
LICENSE and NOTICE [ok]
no jar files [ok]

The binary distribution:
version number in CLI [ok]
signatures and hashes [ok]
start in mac, jdk17 [ok]
statements executed successfully:  [ok]

```
SET STORAGE GROUP TO root.turbine;
CREATE TIMESERIES root.turbine.d1.s0 WITH DATATYPE=DOUBLE, ENCODING=GORILLA;
insert into root.turbine.d1(timestamp,s0) values(1,1);
select ** from root;

CREATE database root.sg1;
CREATE schema template t1 (s1 FLOAT encoding=RLE, s2 BOOLEAN
encoding=PLAIN compression=SNAPPY, s3 INT32);
SET SCHEMA TEMPLATE t1 to root.sg1;
INSERT INTO root.sg1.d1(timestamp,s1,s2,s3) values(1,1.1,false,1),
(2,2.2,false,2);
INSERT INTO root.sg1.d2(timestamp,s1,s2,s3) values(1,11.1,false,11),
(2,22.2,false,22);
INSERT INTO root.sg1.d3(timestamp,s1,s2,s3) values(1,111.1,true,null),
(4,444.4,true,44);
INSERT INTO root.sg1.d4(timestamp,s1,s2,s3)
values(1,1111.1,true,1111), (5,5555.5,false,5555);
INSERT INTO root.sg1.d4(timestamp,s1,s2,s3) values(2,22.2,true,22),
(3,333.3,false,333);

CREATE database root.sg2;
CREATE schema template t2 aligned (s1 FLOAT encoding=RLE, s2 BOOLEAN
encoding=PLAIN compression=SNAPPY, s3 INT32);
SET SCHEMA TEMPLATE t2 to root.sg2;
INSERT INTO root.sg2.d1(timestamp,s1,s2,s3) values(1,1.1,false,1),
(2,2.2,false,2);
INSERT INTO root.sg2.d2(timestamp,s1,s2,s3) values(1,11.1,false,11),
(2,22.2,false,22);
INSERT INTO root.sg2.d3(timestamp,s1,s2,s3) values(1,111.1,true,null),
(4,444.4,true,44);
INSERT INTO root.sg2.d4(timestamp,s1,s2,s3)
values(1,1111.1,true,1111), (5,5555.5,false,5555);
INSERT INTO root.sg2.d4(timestamp,s1,s2,s3) values(2,22.2,true,22),
(3,333.3,false,333);
INSERT INTO root.sg2.d5(timestamp,s1,s2,s3) values(2,22.2,true,22),
(3,333.3,false,333);
INSERT INTO root.sg2.d6(timestamp,s1,s2,s3) values(2,22.2,true,22),
(3,333.3,false,333);
INSERT INTO root.sg2.d4(timestamp,s1,s2,s3)
values(now(),22.2,true,22), (3,333.3,false,333);
INSERT INTO root.sg2.d5(timestamp,s1,s2,s3)
values(now(),22.2,true,22), (3,333.3,false,333);
INSERT INTO root.sg2.d6(timestamp,s1,s2,s3)
values(now(),22.2,true,22), (3,333.3,false,333);
INSERT INTO root.sg2.d7(timestamp,s1,s2,s3)
values(now(),22.2,true,22), (3,333.3,false,333);
SELECT * FROM root.sg1.** where time > 1 and time < 5 and s3>=11 and
s3<=1111 and s1 != 11.1 ORDER BY TIME DESC ALIGN BY DEVICE;
SELECT * FROM root.sg2.** where time > 1 and time < 5 and s3>=11 and
s3<=1111 and s1 != 11.1 ORDER BY TIME DESC ALIGN BY DEVICE;
SELECT s3,s2 FROM root.sg1.** where time > 1 and time < 5 and s3>=11
and s3<=1111 and s1 != 11.1 ORDER BY TIME DESC ALIGN BY DEVICE;
SELECT s3,s2 FROM root.sg2.** where time > 1 and time < 5 and s3>=11
and s3<=1111 and s1 != 11.1 ORDER BY TIME DESC ALIGN BY DEVICE;
```

Best,
—————————————————
Gaofei Cao

Haonan Hou <hao...@apache.org> 于2023年12月27日周三 12:34写道:
>
> Hi all,
>
> Apache IoTDB 1.3.0 has been staged under [2] and it’s time to vote
> on accepting it for release. All Maven artifacts are available under [1].
> Voting will be open for 72hr.
> A minimum of 3 binding +1 votes and more binding +1 than binding -1
> are required to pass.
>
> Release tag: v1.3.0
> Hash for the release tag: fe787cac2ddd874b44482a80306d9d6ae333143c
>
> Before voting +1, PMC members are required to download
> the signed source code package, compile it as provided, and test
> the resulting executable on their own platform, along with also
> verifying that the package meets the requirements of the ASF policy
> on releases. [3]
>
> You can achieve the above by following [4].
>
> [ ] +1 accept (indicate what you validated - e.g. performed the
> non-RM items in [4])
> [ ] -1 reject (explanation required)
>
>
> [1] https://repository.apache.org/content/repositories/orgapacheiotdb-1154
> [2] https://dist.apache.org/repos/dist/dev/iotdb/1.3.0/rc1
> [3] https://www.apache.org/dev/release.html#approving-a-release
> [4] 
> https://cwiki.apache.org/confluence/display/IOTDB/Validating+a+staged+Release
> [5] https://github.com/apache/iotdb/blob/v1.3.0/RELEASE_NOTES.md
> [6] https://dist.apache.org/repos/dist/dev/iotdb/KEYS
>
> Best,
>
> Haonan Hou

Reply via email to