Return-Path: X-Original-To: apmail-pig-commits-archive@www.apache.org Delivered-To: apmail-pig-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EDBF7EA20 for ; Thu, 27 Dec 2012 17:43:38 +0000 (UTC) Received: (qmail 57737 invoked by uid 500); 27 Dec 2012 17:43:38 -0000 Delivered-To: apmail-pig-commits-archive@pig.apache.org Received: (qmail 57678 invoked by uid 500); 27 Dec 2012 17:43:38 -0000 Mailing-List: contact commits-help@pig.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@pig.apache.org Delivered-To: mailing list commits@pig.apache.org Received: (qmail 57671 invoked by uid 99); 27 Dec 2012 17:43:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Dec 2012 17:43:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Dec 2012 17:43:36 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 201ED2388993; Thu, 27 Dec 2012 17:43:15 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1426271 - in /pig/branches/branch-0.10: CHANGES.txt src/org/apache/pig/builtin/mock/Storage.java test/org/apache/pig/TestAlgebraicEvalWithParameterizedReturnType.java test/org/apache/pig/builtin/mock/TestMockStorage.java Date: Thu, 27 Dec 2012 17:43:14 -0000 To: commits@pig.apache.org From: daijy@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121227174315.201ED2388993@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: daijy Date: Thu Dec 27 17:43:14 2012 New Revision: 1426271 URL: http://svn.apache.org/viewvc?rev=1426271&view=rev Log: PIG-3106: Missing license header in several java file Modified: pig/branches/branch-0.10/CHANGES.txt pig/branches/branch-0.10/src/org/apache/pig/builtin/mock/Storage.java pig/branches/branch-0.10/test/org/apache/pig/TestAlgebraicEvalWithParameterizedReturnType.java pig/branches/branch-0.10/test/org/apache/pig/builtin/mock/TestMockStorage.java Modified: pig/branches/branch-0.10/CHANGES.txt URL: http://svn.apache.org/viewvc/pig/branches/branch-0.10/CHANGES.txt?rev=1426271&r1=1426270&r2=1426271&view=diff ============================================================================== --- pig/branches/branch-0.10/CHANGES.txt (original) +++ pig/branches/branch-0.10/CHANGES.txt Thu Dec 27 17:43:14 2012 @@ -40,6 +40,8 @@ PIG-2727: PigStorage Source tagging does BUG FIXES +PIG-3106: Missing license header in several java file (daijy) + PIG-3099: Pig unit test fixes for TestGrunt(1), TestStore(2), TestEmptyInputDir(3) (vikram.dixit via daijy) PIG-3035: With latest version of hadoop23 pig does not return the correct exception stack trace from backend (rohini) Modified: pig/branches/branch-0.10/src/org/apache/pig/builtin/mock/Storage.java URL: http://svn.apache.org/viewvc/pig/branches/branch-0.10/src/org/apache/pig/builtin/mock/Storage.java?rev=1426271&r1=1426270&r2=1426271&view=diff ============================================================================== --- pig/branches/branch-0.10/src/org/apache/pig/builtin/mock/Storage.java (original) +++ pig/branches/branch-0.10/src/org/apache/pig/builtin/mock/Storage.java Thu Dec 27 17:43:14 2012 @@ -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.pig.builtin.mock; import static junit.framework.Assert.assertEquals; Modified: pig/branches/branch-0.10/test/org/apache/pig/TestAlgebraicEvalWithParameterizedReturnType.java URL: http://svn.apache.org/viewvc/pig/branches/branch-0.10/test/org/apache/pig/TestAlgebraicEvalWithParameterizedReturnType.java?rev=1426271&r1=1426270&r2=1426271&view=diff ============================================================================== --- pig/branches/branch-0.10/test/org/apache/pig/TestAlgebraicEvalWithParameterizedReturnType.java (original) +++ pig/branches/branch-0.10/test/org/apache/pig/TestAlgebraicEvalWithParameterizedReturnType.java Thu Dec 27 17:43:14 2012 @@ -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.pig; import java.io.IOException; Modified: pig/branches/branch-0.10/test/org/apache/pig/builtin/mock/TestMockStorage.java URL: http://svn.apache.org/viewvc/pig/branches/branch-0.10/test/org/apache/pig/builtin/mock/TestMockStorage.java?rev=1426271&r1=1426270&r2=1426271&view=diff ============================================================================== --- pig/branches/branch-0.10/test/org/apache/pig/builtin/mock/TestMockStorage.java (original) +++ pig/branches/branch-0.10/test/org/apache/pig/builtin/mock/TestMockStorage.java Thu Dec 27 17:43:14 2012 @@ -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.pig.builtin.mock; import static junit.framework.Assert.*;