Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

## Download all the contents under voting version/rc of the votingrc 

https://dist.apache.org/repos/dist/dev/incubator/iotdb/

...

* :: Verify if it can be started and that the sample statements are executed correctly

```

./sbin/start-server.sh

./sbin/start-client.sh

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);
insert into root.turbine.d1(timestamp,s0) values(2,2);
insert into root.turbine.d1(timestamp,s0) values(3,3);
select * from root;

打印如下内容:
+-----------------------------------+------------------+
| Time|root.turbine.d1.s0|
+-----------------------------------+------------------+
| 1970-01-01T08:00:00.001+08:00| 1.0|
| 1970-01-01T08:00:00.002+08:00| 2.0|
| 1970-01-01T08:00:00.003+08:00| 3.0|
+-----------------------------------+------------------+

```

## Sample mail

After verification, you can send an email:

...