[jira] [Commented] (HIVE-7588) Using type variable in UDF

2014-09-16 Thread Hive QA (JIRA)

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

Hive QA commented on HIVE-7588:
---



{color:red}Overall{color}: -1 at least one tests failed

Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12668941/HIVE-7588.4.patch.txt

{color:red}ERROR:{color} -1 due to 1 failed/errored test(s), 6277 tests executed
*Failed tests:*
{noformat}
org.apache.hive.hcatalog.pig.TestOrcHCatLoader.testReadDataPrimitiveTypes
{noformat}

Test results: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/823/testReport
Console output: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/823/console
Test logs: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-823/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
Tests exited with: TestsFailedException: 1 tests failed
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12668941

 Using type variable in UDF
 --

 Key: HIVE-7588
 URL: https://issues.apache.org/jira/browse/HIVE-7588
 Project: Hive
  Issue Type: Improvement
  Components: UDF
Reporter: Navis
Assignee: Navis
Priority: Trivial
 Attachments: HIVE-7588.1.patch.txt, HIVE-7588.2.patch.txt, 
 HIVE-7588.3.patch.txt, HIVE-7588.4.patch.txt


 From http://www.mail-archive.com/user@hive.apache.org/msg12307.html
 Support type variables in UDF
 {code}
 public T T evaluate(final T s, final String column_name, final int bitmap) 
 throws Exception {
  if (s instanceof Double)
 return (T) new Double(-1.0);
  Else if( s instance of Integer)
 Return (T) new Integer(-1) ;  
 …..
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-7588) Using type variable in UDF

2014-09-16 Thread Jason Dere (JIRA)

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

Jason Dere commented on HIVE-7588:
--

The one question I have here is, should we allow this or would we be better off 
pushing users to use GenericUDF in this case?

 Using type variable in UDF
 --

 Key: HIVE-7588
 URL: https://issues.apache.org/jira/browse/HIVE-7588
 Project: Hive
  Issue Type: Improvement
  Components: UDF
Reporter: Navis
Assignee: Navis
Priority: Trivial
 Attachments: HIVE-7588.1.patch.txt, HIVE-7588.2.patch.txt, 
 HIVE-7588.3.patch.txt, HIVE-7588.4.patch.txt


 From http://www.mail-archive.com/user@hive.apache.org/msg12307.html
 Support type variables in UDF
 {code}
 public T T evaluate(final T s, final String column_name, final int bitmap) 
 throws Exception {
  if (s instanceof Double)
 return (T) new Double(-1.0);
  Else if( s instance of Integer)
 Return (T) new Integer(-1) ;  
 …..
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HIVE-7588) Using type variable in UDF

2014-08-03 Thread Hive QA (JIRA)

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

Hive QA commented on HIVE-7588:
---



{color:red}Overall{color}: -1 at least one tests failed

Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12659594/HIVE-7588.3.patch.txt

{color:red}ERROR:{color} -1 due to 1 failed/errored test(s), 5863 tests executed
*Failed tests:*
{noformat}
org.apache.hadoop.hive.cli.TestMinimrCliDriver.testCliDriver_ql_rewrite_gbtoidx
{noformat}

Test results: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/158/testReport
Console output: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/158/console
Test logs: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-158/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
Tests exited with: TestsFailedException: 1 tests failed
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12659594

 Using type variable in UDF
 --

 Key: HIVE-7588
 URL: https://issues.apache.org/jira/browse/HIVE-7588
 Project: Hive
  Issue Type: Improvement
  Components: UDF
Reporter: Navis
Assignee: Navis
Priority: Trivial
 Attachments: HIVE-7588.1.patch.txt, HIVE-7588.2.patch.txt, 
 HIVE-7588.3.patch.txt


 From http://www.mail-archive.com/user@hive.apache.org/msg12307.html
 Support type variables in UDF
 {code}
 public T T evaluate(final T s, final String column_name, final int bitmap) 
 throws Exception {
  if (s instanceof Double)
 return (T) new Double(-1.0);
  Else if( s instance of Integer)
 Return (T) new Integer(-1) ;  
 …..
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (HIVE-7588) Using type variable in UDF

2014-08-01 Thread Hive QA (JIRA)

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

Hive QA commented on HIVE-7588:
---



{color:red}Overall{color}: -1 at least one tests failed

Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12659100/HIVE-7588.2.patch.txt

{color:red}ERROR:{color} -1 due to 3 failed/errored test(s), 5848 tests executed
*Failed tests:*
{noformat}
org.apache.hadoop.hive.cli.TestContribCliDriver.testCliDriver_udf_example_format
org.apache.hadoop.hive.cli.TestMinimrCliDriver.testCliDriver_ql_rewrite_gbtoidx
org.apache.hadoop.hive.metastore.txn.TestCompactionTxnHandler.testRevokeTimedOutWorkers
{noformat}

Test results: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/138/testReport
Console output: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/138/console
Test logs: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-138/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
Tests exited with: TestsFailedException: 3 tests failed
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12659100

 Using type variable in UDF
 --

 Key: HIVE-7588
 URL: https://issues.apache.org/jira/browse/HIVE-7588
 Project: Hive
  Issue Type: Improvement
  Components: UDF
Reporter: Navis
Assignee: Navis
Priority: Trivial
 Attachments: HIVE-7588.1.patch.txt, HIVE-7588.2.patch.txt


 From http://www.mail-archive.com/user@hive.apache.org/msg12307.html
 Support type variables in UDF
 {code}
 public T T evaluate(final T s, final String column_name, final int bitmap) 
 throws Exception {
  if (s instanceof Double)
 return (T) new Double(-1.0);
  Else if( s instance of Integer)
 Return (T) new Integer(-1) ;  
 …..
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (HIVE-7588) Using type variable in UDF

2014-07-31 Thread Hive QA (JIRA)

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

Hive QA commented on HIVE-7588:
---



{color:red}Overall{color}: -1 at least one tests failed

Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12659062/HIVE-7588.1.patch.txt

{color:red}ERROR:{color} -1 due to 5 failed/errored test(s), 5863 tests executed
*Failed tests:*
{noformat}
org.apache.hadoop.hive.cli.TestContribCliDriver.testCliDriver_udf_example_format
org.apache.hadoop.hive.cli.TestMinimrCliDriver.testCliDriver_ql_rewrite_gbtoidx
org.apache.hadoop.hive.serde2.objectinspector.TestProtocolBuffersObjectInspectors.testProtocolBuffersObjectInspectors
org.apache.hadoop.hive.serde2.objectinspector.TestReflectionObjectInspectors.testReflectionObjectInspectors
org.apache.hadoop.hive.serde2.objectinspector.TestThriftObjectInspectors.testThriftObjectInspectors
{noformat}

Test results: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/132/testReport
Console output: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/132/console
Test logs: 
http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-132/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
Tests exited with: TestsFailedException: 5 tests failed
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12659062

 Using type variable in UDF
 --

 Key: HIVE-7588
 URL: https://issues.apache.org/jira/browse/HIVE-7588
 Project: Hive
  Issue Type: Improvement
  Components: UDF
Reporter: Navis
Assignee: Navis
Priority: Trivial
 Attachments: HIVE-7588.1.patch.txt


 From http://www.mail-archive.com/user@hive.apache.org/msg12307.html
 Support type variables in UDF
 {code}
 public T T evaluate(final T s, final String column_name, final int bitmap) 
 throws Exception {
  if (s instanceof Double)
 return (T) new Double(-1.0);
  Else if( s instance of Integer)
 Return (T) new Integer(-1) ;  
 …..
 }
 {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)