[jira] [Commented] (HIVE-4122) Queries fail if timestamp data not in expected format

2013-04-04 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-4122?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13623039#comment-13623039
 ] 

Hudson commented on HIVE-4122:
--

Integrated in Hive-trunk-hadoop2 #138 (See 
[https://builds.apache.org/job/Hive-trunk-hadoop2/138/])
HIVE-4122 : Queries fail if timestamp data not in expected format (Prasad 
Mujumdar via Ashutosh Chauhan) (Revision 1462874)

 Result = FAILURE
hashutosh : 
http://svn.apache.org/viewcvs.cgi/?root=Apache-SVNview=revrev=1462874
Files : 
* /hive/trunk/ql/src/test/queries/clientpositive/timestamp_null.q
* /hive/trunk/ql/src/test/results/clientpositive/timestamp_null.q.out
* 
/hive/trunk/serde/src/java/org/apache/hadoop/hive/serde2/lazy/LazyTimestamp.java


 Queries fail if timestamp data not in expected format
 -

 Key: HIVE-4122
 URL: https://issues.apache.org/jira/browse/HIVE-4122
 Project: Hive
  Issue Type: Bug
  Components: SQL
Affects Versions: 0.10.0
Reporter: Lenni Kuff
Assignee: Prasad Mujumdar
 Fix For: 0.11.0

 Attachments: HIVE-4122-1.patch, HIVE-4188-2.patch


 Queries will fail if timestamp data not in expected format. The expected 
 behavior is to return NULL for these invalid values.
 {code}
 # Not all timestamps in correct format:
 echo 1999-10-10
 1999-10-10 90:10:10
 -01-01 00:00:00  table.data
 hive -e create table timestamp_tbl (t timestamp)
 hadoop fs -put ./table.data HIVE_WAREHOUSE_DIR/timestamp_tbl/
 hive -e select t from timestamp_tbl
 Execution failed with exit status: 2
 13/03/05 09:47:05 ERROR exec.Task: Execution failed with exit status: 2
 Obtaining error information
 13/03/05 09:47:05 ERROR exec.Task: Obtaining error information
 Task failed!
 Task ID:
   Stage-1
 Logs:
 13/03/05 09:47:05 ERROR exec.Task: 
 Task failed!
 Task ID:
   Stage-1
 Logs:
 {code}

--
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


[jira] [Commented] (HIVE-4122) Queries fail if timestamp data not in expected format

2013-03-31 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-4122?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13618461#comment-13618461
 ] 

Hudson commented on HIVE-4122:
--

Integrated in Hive-trunk-h0.21 #2038 (See 
[https://builds.apache.org/job/Hive-trunk-h0.21/2038/])
HIVE-4122 : Queries fail if timestamp data not in expected format (Prasad 
Mujumdar via Ashutosh Chauhan) (Revision 1462874)

 Result = FAILURE
hashutosh : 
http://svn.apache.org/viewcvs.cgi/?root=Apache-SVNview=revrev=1462874
Files : 
* /hive/trunk/ql/src/test/queries/clientpositive/timestamp_null.q
* /hive/trunk/ql/src/test/results/clientpositive/timestamp_null.q.out
* 
/hive/trunk/serde/src/java/org/apache/hadoop/hive/serde2/lazy/LazyTimestamp.java


 Queries fail if timestamp data not in expected format
 -

 Key: HIVE-4122
 URL: https://issues.apache.org/jira/browse/HIVE-4122
 Project: Hive
  Issue Type: Bug
  Components: SQL
Affects Versions: 0.10.0
Reporter: Lenni Kuff
Assignee: Prasad Mujumdar
 Fix For: 0.11.0

 Attachments: HIVE-4122-1.patch, HIVE-4188-2.patch


 Queries will fail if timestamp data not in expected format. The expected 
 behavior is to return NULL for these invalid values.
 {code}
 # Not all timestamps in correct format:
 echo 1999-10-10
 1999-10-10 90:10:10
 -01-01 00:00:00  table.data
 hive -e create table timestamp_tbl (t timestamp)
 hadoop fs -put ./table.data HIVE_WAREHOUSE_DIR/timestamp_tbl/
 hive -e select t from timestamp_tbl
 Execution failed with exit status: 2
 13/03/05 09:47:05 ERROR exec.Task: Execution failed with exit status: 2
 Obtaining error information
 13/03/05 09:47:05 ERROR exec.Task: Obtaining error information
 Task failed!
 Task ID:
   Stage-1
 Logs:
 13/03/05 09:47:05 ERROR exec.Task: 
 Task failed!
 Task ID:
   Stage-1
 Logs:
 {code}

--
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


[jira] [Commented] (HIVE-4122) Queries fail if timestamp data not in expected format

2013-03-05 Thread Prasad Mujumdar (JIRA)

[ 
https://issues.apache.org/jira/browse/HIVE-4122?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13594060#comment-13594060
 ] 

Prasad Mujumdar commented on HIVE-4122:
---

Review request on https://reviews.facebook.net/D9117

 Queries fail if timestamp data not in expected format
 -

 Key: HIVE-4122
 URL: https://issues.apache.org/jira/browse/HIVE-4122
 Project: Hive
  Issue Type: Bug
  Components: SQL
Affects Versions: 0.10.0
Reporter: Lenni Kuff
Assignee: Prasad Mujumdar
 Attachments: HIVE-4122-1.patch


 Queries will fail if timestamp data not in expected format. The expected 
 behavior is to return NULL for these invalid values.
 {code}
 # Not all timestamps in correct format:
 echo 1999-10-10
 1999-10-10 90:10:10
 -01-01 00:00:00  table.data
 hive -e create table timestamp_tbl (t timestamp)
 hadoop fs -put ./table.data HIVE_WAREHOUSE_DIR/timestamp_tbl/
 hive -e select t from timestamp_tbl
 Execution failed with exit status: 2
 13/03/05 09:47:05 ERROR exec.Task: Execution failed with exit status: 2
 Obtaining error information
 13/03/05 09:47:05 ERROR exec.Task: Obtaining error information
 Task failed!
 Task ID:
   Stage-1
 Logs:
 13/03/05 09:47:05 ERROR exec.Task: 
 Task failed!
 Task ID:
   Stage-1
 Logs:
 {code}

--
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