Skip to content
This repository was archived by the owner on Dec 15, 2023. It is now read-only.

Releases: iotdb-lab/iotdb-cli

Release 0.1.0

03 Aug 17:37
Compare
Choose a tag to compare

Release 0.0.3

27 Jan 10:29
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.0.2...0.0.3

Release v0.0.3-alpha

29 Nov 18:36
Compare
Choose a tag to compare

Release v0.0.2

27 Nov 15:15
Compare
Choose a tag to compare

Changelog

0.0.1...0.0.2

New Features

  1. Add new subsumand iotdb file, execute sql from the specified sql file like
$ iotdb file tests/create_and_insert.sql
Statements: [
    "DELETE STORAGE GROUP root.test;",
    "CREATE TIMESERIES root.test.status WITH DATATYPE=BOOLEAN, ENCODING=PLAIN;",
    "CREATE TIMESERIES root.test.temperature WITH DATATYPE=FLOAT, ENCODING=RLE;",
    "INSERT INTO root.test(timestamp, status)\n values (1637960249484, true);",
    "INSERT INTO root.test(timestamp, status, temperature)\n values (1637960256493, false, 20.71);",
    "INSERT INTO root.test(timestamp, status, temperature)\n values (1637960261494, true, 32.43);",
    "INSERT INTO root.test(timestamp, status, temperature)\n values (1637960272492, false, 28.66);",
    "INSERT INTO root.test(timestamp, status, temperature)\n values (1637960272492, true, 22.61);",
    "INSERT INTO root.test(timestamp, status, temperature)\n values (1637960296493, false, 28.66);",
]
22:00:54 [INFO] Execute statements "Execute batch statements successfully"

Release v0.0.1

08 Nov 06:46
Compare
Choose a tag to compare