You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@iotdb.apache.org by GitBox <gi...@apache.org> on 2021/09/28 03:47:18 UTC

[GitHub] [iotdb] jun0315 commented on a change in pull request #3959: [IOTDB-1689] Compatible influxdb protocol

jun0315 commented on a change in pull request #3959:
URL: https://github.com/apache/iotdb/pull/3959#discussion_r717200477



##########
File path: iotdb-influxdb/src/test/java/org/apache/iotdb/influxdb/IoTDBInfluxDBTest.java
##########
@@ -0,0 +1,154 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.iotdb.influxdb;
+
+import org.apache.iotdb.rpc.IoTDBConnectionException;
+import org.apache.iotdb.rpc.StatementExecutionException;
+import org.apache.iotdb.session.Session;
+import org.apache.iotdb.session.SessionDataSet;
+import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
+
+import org.junit.Before;
+
+import java.util.*;
+
+public class IoTDBInfluxDBTest {
+  private IoTDBInfluxDB iotDBInfluxDB;
+
+  private static final String LOCAL_HOST = "127.0.0.1";
+  private static Session session;
+  private static final String ROOT_T1 = "root.teststress.test1";
+  private static final String ROOT_T2 = "root.teststress.test2";
+
+  @Before
+  public void setUp() throws IoTDBConnectionException {
+    // 创建 连接

Review comment:
       I have changed all the Chinese in the project into English  :D :D




-- 
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: reviews-unsubscribe@iotdb.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org