You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by jf...@apache.org on 2019/08/06 14:18:02 UTC

[incubator-iotdb] branch rel/0.8 updated: Fixed wrong versions from cherry-pick (and reverted Test fix)

This is an automated email from the ASF dual-hosted git repository.

jfeinauer pushed a commit to branch rel/0.8
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git


The following commit(s) were added to refs/heads/rel/0.8 by this push:
     new 6dab09b  Fixed wrong versions from cherry-pick (and reverted Test fix)
6dab09b is described below

commit 6dab09b05919c8797da0fb2e75b70c0a533c9c9d
Author: julian <j....@pragmaticminds.de>
AuthorDate: Tue Aug 6 16:14:59 2019 +0200

    Fixed wrong versions from cherry-pick (and reverted Test fix)
---
 client/pom.xml                                                    | 2 +-
 example/kafka/pom.xml                                             | 2 +-
 example/rocketmq/pom.xml                                          | 2 +-
 grafana/pom.xml                                                   | 2 +-
 hadoop/pom.xml                                                    | 2 +-
 jdbc/pom.xml                                                      | 4 ++--
 jdbc/src/test/java/org/apache/iotdb/jdbc/IoTDBConnectionTest.java | 3 +--
 server/pom.xml                                                    | 6 +++---
 spark-tsfile/pom.xml                                              | 2 +-
 9 files changed, 12 insertions(+), 13 deletions(-)

diff --git a/client/pom.xml b/client/pom.xml
index 1341801..e1ffa72 100644
--- a/client/pom.xml
+++ b/client/pom.xml
@@ -39,7 +39,7 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-jdbc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>0.8.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>commons-cli</groupId>
diff --git a/example/kafka/pom.xml b/example/kafka/pom.xml
index d434ecb..8591e3f 100644
--- a/example/kafka/pom.xml
+++ b/example/kafka/pom.xml
@@ -39,7 +39,7 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-jdbc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>0.8.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.kafka</groupId>
diff --git a/example/rocketmq/pom.xml b/example/rocketmq/pom.xml
index 4955deb..29ade48 100644
--- a/example/rocketmq/pom.xml
+++ b/example/rocketmq/pom.xml
@@ -34,7 +34,7 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-jdbc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>0.8.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.rocketmq</groupId>
diff --git a/grafana/pom.xml b/grafana/pom.xml
index 5e7e845..5b07c4e 100644
--- a/grafana/pom.xml
+++ b/grafana/pom.xml
@@ -61,7 +61,7 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-jdbc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>0.8.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.springframework.boot</groupId>
diff --git a/hadoop/pom.xml b/hadoop/pom.xml
index e70b2d4..fefd639 100644
--- a/hadoop/pom.xml
+++ b/hadoop/pom.xml
@@ -36,7 +36,7 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>tsfile</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>0.8.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.hadoop</groupId>
diff --git a/jdbc/pom.xml b/jdbc/pom.xml
index 7485c3b..f2bdde3 100644
--- a/jdbc/pom.xml
+++ b/jdbc/pom.xml
@@ -39,12 +39,12 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>tsfile</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>0.8.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>service-rpc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>0.8.0-SNAPSHOT</version>
         </dependency>
     </dependencies>
     <build>
diff --git a/jdbc/src/test/java/org/apache/iotdb/jdbc/IoTDBConnectionTest.java b/jdbc/src/test/java/org/apache/iotdb/jdbc/IoTDBConnectionTest.java
index ed587e5..bc511b0 100644
--- a/jdbc/src/test/java/org/apache/iotdb/jdbc/IoTDBConnectionTest.java
+++ b/jdbc/src/test/java/org/apache/iotdb/jdbc/IoTDBConnectionTest.java
@@ -82,9 +82,8 @@ public class IoTDBConnectionTest {
         add("min_time");
       }
     };
-    final String timestampPrecision = "ms";
     when(client.getProperties())
-        .thenReturn(new ServerProperties(version, supportedAggregationTime, timestampPrecision));
+        .thenReturn(new ServerProperties(version, supportedAggregationTime));
     connection.client = client;
     assertEquals(connection.getServerProperties().getVersion(), version);
     for (int i = 0; i < supportedAggregationTime.size(); i++) {
diff --git a/server/pom.xml b/server/pom.xml
index aa78c94..c86a21a 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -38,17 +38,17 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>service-rpc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>0.8.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>tsfile</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>0.8.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-jdbc</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>0.8.0-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
         <dependency>
diff --git a/spark-tsfile/pom.xml b/spark-tsfile/pom.xml
index 9ea993b..79ba915 100644
--- a/spark-tsfile/pom.xml
+++ b/spark-tsfile/pom.xml
@@ -34,7 +34,7 @@
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>tsfile</artifactId>
-            <version>0.9.0-SNAPSHOT</version>
+            <version>0.8.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.hadoop</groupId>