Repository: hive Updated Branches: refs/heads/branch-1.2 fb51422e7 -> efe2b8304
HIVE-11074 : Update tests for HIVE-9302 after removing binaries (Jesus Camacho Rodriguez via Hari Subramaniyan) Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/efe2b830 Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/efe2b830 Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/efe2b830 Branch: refs/heads/branch-1.2 Commit: efe2b830498a69c634b059a7f12a7d46dc645bbc Parents: fb51422 Author: Hari Subramaniyan <[email protected]> Authored: Thu Jun 25 11:53:25 2015 -0700 Committer: Hari Subramaniyan <[email protected]> Committed: Thu Jun 25 11:53:25 2015 -0700 ---------------------------------------------------------------------- ql/src/test/resources/RefreshedJarClassV1.txt | 26 ++++++++++++++++++++++ ql/src/test/resources/RefreshedJarClassV2.txt | 26 ++++++++++++++++++++++ src/test/resources/RefreshedJarClassV1.txt | 26 ---------------------- src/test/resources/RefreshedJarClassV2.txt | 26 ---------------------- 4 files changed, 52 insertions(+), 52 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/efe2b830/ql/src/test/resources/RefreshedJarClassV1.txt ---------------------------------------------------------------------- diff --git a/ql/src/test/resources/RefreshedJarClassV1.txt b/ql/src/test/resources/RefreshedJarClassV1.txt new file mode 100644 index 0000000..70c9069 --- /dev/null +++ b/ql/src/test/resources/RefreshedJarClassV1.txt @@ -0,0 +1,26 @@ +/** + * 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. + */ +public class RefreshedJarClass { + public String version(){ + return "version1"; + } + + public static void main(String [] args){ + System.out.println(new RefreshedJarClass().version()); + } +} http://git-wip-us.apache.org/repos/asf/hive/blob/efe2b830/ql/src/test/resources/RefreshedJarClassV2.txt ---------------------------------------------------------------------- diff --git a/ql/src/test/resources/RefreshedJarClassV2.txt b/ql/src/test/resources/RefreshedJarClassV2.txt new file mode 100644 index 0000000..6aac034 --- /dev/null +++ b/ql/src/test/resources/RefreshedJarClassV2.txt @@ -0,0 +1,26 @@ +/** + * 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. + */ +public class RefreshedJarClass { + public String version(){ + return "version2"; + } + + public static void main(String [] args){ + System.out.println(new RefreshedJarClass().version()); + } +} http://git-wip-us.apache.org/repos/asf/hive/blob/efe2b830/src/test/resources/RefreshedJarClassV1.txt ---------------------------------------------------------------------- diff --git a/src/test/resources/RefreshedJarClassV1.txt b/src/test/resources/RefreshedJarClassV1.txt deleted file mode 100644 index 70c9069..0000000 --- a/src/test/resources/RefreshedJarClassV1.txt +++ /dev/null @@ -1,26 +0,0 @@ -/** - * 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. - */ -public class RefreshedJarClass { - public String version(){ - return "version1"; - } - - public static void main(String [] args){ - System.out.println(new RefreshedJarClass().version()); - } -} http://git-wip-us.apache.org/repos/asf/hive/blob/efe2b830/src/test/resources/RefreshedJarClassV2.txt ---------------------------------------------------------------------- diff --git a/src/test/resources/RefreshedJarClassV2.txt b/src/test/resources/RefreshedJarClassV2.txt deleted file mode 100644 index 6aac034..0000000 --- a/src/test/resources/RefreshedJarClassV2.txt +++ /dev/null @@ -1,26 +0,0 @@ -/** - * 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. - */ -public class RefreshedJarClass { - public String version(){ - return "version2"; - } - - public static void main(String [] args){ - System.out.println(new RefreshedJarClass().version()); - } -}
