You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gearpump.apache.org by ma...@apache.org on 2017/07/09 00:18:32 UTC

[19/20] incubator-gearpump git commit: Add apache license

Add apache license


Project: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/commit/7585b5b3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/tree/7585b5b3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/diff/7585b5b3

Branch: refs/heads/sql
Commit: 7585b5b3b8104808c0edd5ea4c3a4853f7669d48
Parents: f24411c
Author: Buddhi Ayesha <bu...@cse.mrt.ac.lk>
Authored: Sat Jun 24 15:10:22 2017 +0530
Committer: manuzhang <ow...@gmail.com>
Committed: Sun Jul 9 07:52:48 2017 +0800

----------------------------------------------------------------------
 .../org/apache/calcite/planner/LogicalPlan.java   | 18 ++++++++++++++++++
 .../calcite/planner/StreamQueryPlanner.java       | 18 ++++++++++++++++++
 .../utils/CalciteFrameworkConfiguration.java      | 18 ++++++++++++++++++
 .../org/apache/calcite/planner/CalciteTest.java   | 18 ++++++++++++++++++
 4 files changed, 72 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/7585b5b3/experiments/sql/src/main/java/org/apache/calcite/planner/LogicalPlan.java
----------------------------------------------------------------------
diff --git a/experiments/sql/src/main/java/org/apache/calcite/planner/LogicalPlan.java b/experiments/sql/src/main/java/org/apache/calcite/planner/LogicalPlan.java
index 32b7593..516ebe1 100644
--- a/experiments/sql/src/main/java/org/apache/calcite/planner/LogicalPlan.java
+++ b/experiments/sql/src/main/java/org/apache/calcite/planner/LogicalPlan.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.calcite.planner;
 
 import org.apache.calcite.rel.RelNode;

http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/7585b5b3/experiments/sql/src/main/java/org/apache/calcite/planner/StreamQueryPlanner.java
----------------------------------------------------------------------
diff --git a/experiments/sql/src/main/java/org/apache/calcite/planner/StreamQueryPlanner.java b/experiments/sql/src/main/java/org/apache/calcite/planner/StreamQueryPlanner.java
index 4cbf16e..0603827 100644
--- a/experiments/sql/src/main/java/org/apache/calcite/planner/StreamQueryPlanner.java
+++ b/experiments/sql/src/main/java/org/apache/calcite/planner/StreamQueryPlanner.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.calcite.planner;
 
 import org.apache.calcite.adapter.java.ReflectiveSchema;

http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/7585b5b3/experiments/sql/src/main/java/org/apache/calcite/utils/CalciteFrameworkConfiguration.java
----------------------------------------------------------------------
diff --git a/experiments/sql/src/main/java/org/apache/calcite/utils/CalciteFrameworkConfiguration.java b/experiments/sql/src/main/java/org/apache/calcite/utils/CalciteFrameworkConfiguration.java
index eb69db6..e6be58a 100644
--- a/experiments/sql/src/main/java/org/apache/calcite/utils/CalciteFrameworkConfiguration.java
+++ b/experiments/sql/src/main/java/org/apache/calcite/utils/CalciteFrameworkConfiguration.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.calcite.utils;
 
 import org.apache.calcite.config.Lex;

http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/7585b5b3/experiments/sql/src/test/java/org/apache/calcite/planner/CalciteTest.java
----------------------------------------------------------------------
diff --git a/experiments/sql/src/test/java/org/apache/calcite/planner/CalciteTest.java b/experiments/sql/src/test/java/org/apache/calcite/planner/CalciteTest.java
index 4a3ce22..4f0247a 100644
--- a/experiments/sql/src/test/java/org/apache/calcite/planner/CalciteTest.java
+++ b/experiments/sql/src/test/java/org/apache/calcite/planner/CalciteTest.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.calcite.planner;