You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ka...@apache.org on 2020/11/19 12:41:28 UTC

[iotdb] branch master updated (6279fca -> efdde67)

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

kangrong pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


    from 6279fca  [IOTDB-1017] Fix file version bug (#2078)
     add 6542c98  [IOTDB-467] The CLI displays query results in a batch manner
     add aef06bd  Apply suggestions from code review: correct the variable name
     add f69e008  Update AbstractClient.java
     add a435331  Merge branch 'master' of https://github.com/apache/incubator-iotdb
     add c79bdbc  merge
     add c46925f  Merge branch 'master' of https://github.com/apache/incubator-iotdb
     add a5cbf79  add zeppelin-interpreter
     add 83f2b42  Merge branch 'master' into duan_master
     add 9980a5e  format, support muli-lines input
     new efdde67  add license

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                            |   1 +
 {cross-tests => zeppelin-interpreter}/pom.xml      |  69 +++++-----
 .../apache/zeppelin/iotdb/IoTDBInterpreter.java    | 151 +++++++++++++++++++++
 .../src/main/resources/interpreter-setting.json    |  39 ++++++
 .../zeppelin/iotdb/IoTDBInterpreterTest.java       |  81 +++++++++++
 5 files changed, 308 insertions(+), 33 deletions(-)
 copy {cross-tests => zeppelin-interpreter}/pom.xml (55%)
 create mode 100644 zeppelin-interpreter/src/main/java/org/apache/zeppelin/iotdb/IoTDBInterpreter.java
 create mode 100644 zeppelin-interpreter/src/main/resources/interpreter-setting.json
 create mode 100644 zeppelin-interpreter/src/test/java/org/apache/zeppelin/iotdb/IoTDBInterpreterTest.java


[iotdb] 01/01: add license

Posted by ka...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kangrong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit efdde6701b6abcf6d0406e323cab8d7febf0f7f8
Author: kr11 <30...@qq.com>
AuthorDate: Thu Nov 19 20:40:54 2020 +0800

    add license
---
 zeppelin-interpreter/pom.xml                         | 20 ++++++++++++++++++++
 .../apache/zeppelin/iotdb/IoTDBInterpreterTest.java  | 18 ++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/zeppelin-interpreter/pom.xml b/zeppelin-interpreter/pom.xml
index 63dfab1..9aa5714 100644
--- a/zeppelin-interpreter/pom.xml
+++ b/zeppelin-interpreter/pom.xml
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    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.
+
+-->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.apache.zeppelin</groupId>
diff --git a/zeppelin-interpreter/src/test/java/org/apache/zeppelin/iotdb/IoTDBInterpreterTest.java b/zeppelin-interpreter/src/test/java/org/apache/zeppelin/iotdb/IoTDBInterpreterTest.java
index 3f76ad9..23fd688 100644
--- a/zeppelin-interpreter/src/test/java/org/apache/zeppelin/iotdb/IoTDBInterpreterTest.java
+++ b/zeppelin-interpreter/src/test/java/org/apache/zeppelin/iotdb/IoTDBInterpreterTest.java
@@ -1,3 +1,21 @@
+/*
+ * 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.zeppelin.iotdb;
 
 import java.util.Properties;