Return-Path: X-Original-To: apmail-hive-dev-archive@www.apache.org Delivered-To: apmail-hive-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3FC8710146 for ; Wed, 30 Oct 2013 20:33:36 +0000 (UTC) Received: (qmail 12961 invoked by uid 500); 30 Oct 2013 20:33:34 -0000 Delivered-To: apmail-hive-dev-archive@hive.apache.org Received: (qmail 12898 invoked by uid 500); 30 Oct 2013 20:33:32 -0000 Mailing-List: contact dev-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hive.apache.org Delivered-To: mailing list dev@hive.apache.org Received: (qmail 12623 invoked by uid 500); 30 Oct 2013 20:33:30 -0000 Delivered-To: apmail-hadoop-hive-dev@hadoop.apache.org Received: (qmail 12513 invoked by uid 99); 30 Oct 2013 20:33:28 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Oct 2013 20:33:28 +0000 Date: Wed, 30 Oct 2013 20:33:28 +0000 (UTC) From: "Szehon Ho (JIRA)" To: hive-dev@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (HIVE-5286) Negative test date_literal1.q fails on java7 because the syntax is valid MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HIVE-5286?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Szehon Ho updated HIVE-5286: ---------------------------- Status: Patch Available (was: Open) > Negative test date_literal1.q fails on java7 because the syntax is valid > ------------------------------------------------------------------------ > > Key: HIVE-5286 > URL: https://issues.apache.org/jira/browse/HIVE-5286 > Project: Hive > Issue Type: Bug > Affects Versions: 0.12.0 > Reporter: Brock Noland > Assignee: Szehon Ho > Attachments: HIVE-5286.patch > > > {noformat} > [brock@bigboy java-date]$ cat Test.java > import java.sql.Date; > public class Test { > public static void main(String[] args) throws Exception { > System.out.println(Date.valueOf("2001-1-1")); > } > } > [brock@bigboy java-date]$ exec-via-java6 java -cp . Test > Exception in thread "main" java.lang.IllegalArgumentException > at java.sql.Date.valueOf(Date.java:138) > at Test.main(Test.java:4) > [brock@bigboy java-date]$ exec-via-java7 java -cp . Test > 2001-01-01 > {noformat} -- This message was sent by Atlassian JIRA (v6.1#6144)