Brock Noland created HIVE-5286:
----------------------------------

             Summary: date_litera1.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



{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 is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to