Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id A612C200B16 for ; Mon, 20 Jun 2016 17:37:39 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A4828160A55; Mon, 20 Jun 2016 15:37:39 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id EC46D160A26 for ; Mon, 20 Jun 2016 17:37:38 +0200 (CEST) Received: (qmail 75969 invoked by uid 500); 20 Jun 2016 15:37:38 -0000 Mailing-List: contact commits-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hive-dev@hive.apache.org Delivered-To: mailing list commits@hive.apache.org Received: (qmail 75958 invoked by uid 99); 20 Jun 2016 15:37:38 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Jun 2016 15:37:38 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E3AC7DFC6F; Mon, 20 Jun 2016 15:37:37 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jcamacho@apache.org To: commits@hive.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: hive git commit: HIVE-14059: Missing license headers for two files (Jesus Camacho Rodriguez, reviewed by Ashutosh Chauhan) Date: Mon, 20 Jun 2016 15:37:37 +0000 (UTC) archived-at: Mon, 20 Jun 2016 15:37:39 -0000 Repository: hive Updated Branches: refs/heads/branch-2.1 eb4c7a05a -> 0ed105050 HIVE-14059: Missing license headers for two files (Jesus Camacho Rodriguez, reviewed by Ashutosh Chauhan) Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/0ed10505 Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/0ed10505 Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/0ed10505 Branch: refs/heads/branch-2.1 Commit: 0ed105050eee52d03948b968a805e9fffe1a61bb Parents: eb4c7a0 Author: Jesus Camacho Rodriguez Authored: Mon Jun 20 08:37:22 2016 -0700 Committer: Jesus Camacho Rodriguez Committed: Mon Jun 20 08:37:22 2016 -0700 ---------------------------------------------------------------------- .../org/apache/hive/common/util/DateParser.java | 17 +++++++++++++++++ .../apache/hive/common/util/TestDateParser.java | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/0ed10505/common/src/java/org/apache/hive/common/util/DateParser.java ---------------------------------------------------------------------- diff --git a/common/src/java/org/apache/hive/common/util/DateParser.java b/common/src/java/org/apache/hive/common/util/DateParser.java index f6d1db3..0182904 100644 --- a/common/src/java/org/apache/hive/common/util/DateParser.java +++ b/common/src/java/org/apache/hive/common/util/DateParser.java @@ -1,3 +1,20 @@ +/** + * 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.hive.common.util; import java.sql.Date; http://git-wip-us.apache.org/repos/asf/hive/blob/0ed10505/common/src/test/org/apache/hive/common/util/TestDateParser.java ---------------------------------------------------------------------- diff --git a/common/src/test/org/apache/hive/common/util/TestDateParser.java b/common/src/test/org/apache/hive/common/util/TestDateParser.java index f33c9a1..a0f19e3 100644 --- a/common/src/test/org/apache/hive/common/util/TestDateParser.java +++ b/common/src/test/org/apache/hive/common/util/TestDateParser.java @@ -1,3 +1,20 @@ +/** + * 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.hive.common.util; import static org.junit.Assert.*;