[jira] Updated: (PIG-790) Error message should indicate in which line number in the Pig script the error occured (debugging BinCond)

2009-10-28 Thread Daniel Dai (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-790?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Daniel Dai updated PIG-790:
---

  Resolution: Fixed
Hadoop Flags: [Reviewed]
  Status: Resolved  (was: Patch Available)

Patch committed. No test included in patch since it is only about error message 
and there is no good way to test automatically. 

 Error message should indicate in which line number in the Pig script the 
 error occured (debugging BinCond)
 --

 Key: PIG-790
 URL: https://issues.apache.org/jira/browse/PIG-790
 Project: Pig
  Issue Type: Bug
Affects Versions: 0.4.0
Reporter: Viraj Bhat
Assignee: Daniel Dai
Priority: Minor
 Fix For: 0.6.0

 Attachments: error_rerport.pig, myerrordata.txt, PIG-790-1.patch, 
 PIG-790-2.patch, pig_1240972895275.log


 I have a simple Pig script which loads integer data and does a Bincond, where 
 it compares, (col1 eq ''). There is an error message that is generated in 
 this case, but it does not specify the line number in the script. 
 {code}
 MYDATA = load '/user/viraj/myerrordata.txt' using PigStorage() as (col1:int, 
 col2:int);
 MYDATA_PROJECT = FOREACH MYDATA GENERATE ((col1 eq '') ? 1 : 0) as newcol1,
  ((col1 neq '') ? col1 - col2 : 
 16)
 as time_diff;
 dump MYDATA_PROJECT;
 {code}
 ==
 2009-04-29 02:33:07,182 [main] INFO  
 org.apache.pig.backend.hadoop.executionengine.HExecutionEngine - Connecting 
 to hadoop file system at: hdfs://localhost:9000
 2009-04-29 02:33:08,584 [main] INFO  
 org.apache.pig.backend.hadoop.executionengine.HExecutionEngine - Connecting 
 to map-reduce job tracker at: localhost:9001
 2009-04-29 02:33:08,836 [main] INFO  org.apache.pig.PigServer - Create a new 
 graph.
 2009-04-29 02:33:10,040 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 
 1039: Incompatible types in EqualTo Operator left hand side:int right hand 
 side:chararray
 Details at logfile: /home/viraj/pig-svn/trunk/pig_1240972386081.log
 ==
 It would be good if the error message has a line number and a copy of the 
 line in the script which is causing the problem.
 Attaching data, script and log file. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (PIG-790) Error message should indicate in which line number in the Pig script the error occured (debugging BinCond)

2009-10-27 Thread Daniel Dai (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-790?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Daniel Dai updated PIG-790:
---

Status: Open  (was: Patch Available)

 Error message should indicate in which line number in the Pig script the 
 error occured (debugging BinCond)
 --

 Key: PIG-790
 URL: https://issues.apache.org/jira/browse/PIG-790
 Project: Pig
  Issue Type: Bug
Affects Versions: 0.4.0
Reporter: Viraj Bhat
Assignee: Daniel Dai
Priority: Minor
 Fix For: 0.6.0

 Attachments: error_rerport.pig, myerrordata.txt, PIG-790-1.patch, 
 PIG-790-2.patch, pig_1240972895275.log


 I have a simple Pig script which loads integer data and does a Bincond, where 
 it compares, (col1 eq ''). There is an error message that is generated in 
 this case, but it does not specify the line number in the script. 
 {code}
 MYDATA = load '/user/viraj/myerrordata.txt' using PigStorage() as (col1:int, 
 col2:int);
 MYDATA_PROJECT = FOREACH MYDATA GENERATE ((col1 eq '') ? 1 : 0) as newcol1,
  ((col1 neq '') ? col1 - col2 : 
 16)
 as time_diff;
 dump MYDATA_PROJECT;
 {code}
 ==
 2009-04-29 02:33:07,182 [main] INFO  
 org.apache.pig.backend.hadoop.executionengine.HExecutionEngine - Connecting 
 to hadoop file system at: hdfs://localhost:9000
 2009-04-29 02:33:08,584 [main] INFO  
 org.apache.pig.backend.hadoop.executionengine.HExecutionEngine - Connecting 
 to map-reduce job tracker at: localhost:9001
 2009-04-29 02:33:08,836 [main] INFO  org.apache.pig.PigServer - Create a new 
 graph.
 2009-04-29 02:33:10,040 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 
 1039: Incompatible types in EqualTo Operator left hand side:int right hand 
 side:chararray
 Details at logfile: /home/viraj/pig-svn/trunk/pig_1240972386081.log
 ==
 It would be good if the error message has a line number and a copy of the 
 line in the script which is causing the problem.
 Attaching data, script and log file. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (PIG-790) Error message should indicate in which line number in the Pig script the error occured (debugging BinCond)

2009-10-27 Thread Daniel Dai (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-790?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Daniel Dai updated PIG-790:
---

Status: Patch Available  (was: Open)

 Error message should indicate in which line number in the Pig script the 
 error occured (debugging BinCond)
 --

 Key: PIG-790
 URL: https://issues.apache.org/jira/browse/PIG-790
 Project: Pig
  Issue Type: Bug
Affects Versions: 0.4.0
Reporter: Viraj Bhat
Assignee: Daniel Dai
Priority: Minor
 Fix For: 0.6.0

 Attachments: error_rerport.pig, myerrordata.txt, PIG-790-1.patch, 
 PIG-790-2.patch, pig_1240972895275.log


 I have a simple Pig script which loads integer data and does a Bincond, where 
 it compares, (col1 eq ''). There is an error message that is generated in 
 this case, but it does not specify the line number in the script. 
 {code}
 MYDATA = load '/user/viraj/myerrordata.txt' using PigStorage() as (col1:int, 
 col2:int);
 MYDATA_PROJECT = FOREACH MYDATA GENERATE ((col1 eq '') ? 1 : 0) as newcol1,
  ((col1 neq '') ? col1 - col2 : 
 16)
 as time_diff;
 dump MYDATA_PROJECT;
 {code}
 ==
 2009-04-29 02:33:07,182 [main] INFO  
 org.apache.pig.backend.hadoop.executionengine.HExecutionEngine - Connecting 
 to hadoop file system at: hdfs://localhost:9000
 2009-04-29 02:33:08,584 [main] INFO  
 org.apache.pig.backend.hadoop.executionengine.HExecutionEngine - Connecting 
 to map-reduce job tracker at: localhost:9001
 2009-04-29 02:33:08,836 [main] INFO  org.apache.pig.PigServer - Create a new 
 graph.
 2009-04-29 02:33:10,040 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 
 1039: Incompatible types in EqualTo Operator left hand side:int right hand 
 side:chararray
 Details at logfile: /home/viraj/pig-svn/trunk/pig_1240972386081.log
 ==
 It would be good if the error message has a line number and a copy of the 
 line in the script which is causing the problem.
 Attaching data, script and log file. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (PIG-790) Error message should indicate in which line number in the Pig script the error occured (debugging BinCond)

2009-10-23 Thread Daniel Dai (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-790?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Daniel Dai updated PIG-790:
---

Attachment: PIG-790-2.patch

Reattach the patch to address Dmitriy's concern. Write a utility function to 
reduce the number of lines. No semantics change.

 Error message should indicate in which line number in the Pig script the 
 error occured (debugging BinCond)
 --

 Key: PIG-790
 URL: https://issues.apache.org/jira/browse/PIG-790
 Project: Pig
  Issue Type: Bug
Affects Versions: 0.4.0
Reporter: Viraj Bhat
Assignee: Daniel Dai
Priority: Minor
 Fix For: 0.6.0

 Attachments: error_rerport.pig, myerrordata.txt, PIG-790-1.patch, 
 PIG-790-2.patch, pig_1240972895275.log


 I have a simple Pig script which loads integer data and does a Bincond, where 
 it compares, (col1 eq ''). There is an error message that is generated in 
 this case, but it does not specify the line number in the script. 
 {code}
 MYDATA = load '/user/viraj/myerrordata.txt' using PigStorage() as (col1:int, 
 col2:int);
 MYDATA_PROJECT = FOREACH MYDATA GENERATE ((col1 eq '') ? 1 : 0) as newcol1,
  ((col1 neq '') ? col1 - col2 : 
 16)
 as time_diff;
 dump MYDATA_PROJECT;
 {code}
 ==
 2009-04-29 02:33:07,182 [main] INFO  
 org.apache.pig.backend.hadoop.executionengine.HExecutionEngine - Connecting 
 to hadoop file system at: hdfs://localhost:9000
 2009-04-29 02:33:08,584 [main] INFO  
 org.apache.pig.backend.hadoop.executionengine.HExecutionEngine - Connecting 
 to map-reduce job tracker at: localhost:9001
 2009-04-29 02:33:08,836 [main] INFO  org.apache.pig.PigServer - Create a new 
 graph.
 2009-04-29 02:33:10,040 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 
 1039: Incompatible types in EqualTo Operator left hand side:int right hand 
 side:chararray
 Details at logfile: /home/viraj/pig-svn/trunk/pig_1240972386081.log
 ==
 It would be good if the error message has a line number and a copy of the 
 line in the script which is causing the problem.
 Attaching data, script and log file. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (PIG-790) Error message should indicate in which line number in the Pig script the error occured (debugging BinCond)

2009-10-15 Thread Daniel Dai (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-790?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Daniel Dai updated PIG-790:
---

Attachment: PIG-790-1.patch

Attach the patch to add alias to the error message

 Error message should indicate in which line number in the Pig script the 
 error occured (debugging BinCond)
 --

 Key: PIG-790
 URL: https://issues.apache.org/jira/browse/PIG-790
 Project: Pig
  Issue Type: Bug
Affects Versions: 0.4.0
Reporter: Viraj Bhat
Assignee: Daniel Dai
Priority: Minor
 Fix For: 0.6.0

 Attachments: error_rerport.pig, myerrordata.txt, PIG-790-1.patch, 
 pig_1240972895275.log


 I have a simple Pig script which loads integer data and does a Bincond, where 
 it compares, (col1 eq ''). There is an error message that is generated in 
 this case, but it does not specify the line number in the script. 
 {code}
 MYDATA = load '/user/viraj/myerrordata.txt' using PigStorage() as (col1:int, 
 col2:int);
 MYDATA_PROJECT = FOREACH MYDATA GENERATE ((col1 eq '') ? 1 : 0) as newcol1,
  ((col1 neq '') ? col1 - col2 : 
 16)
 as time_diff;
 dump MYDATA_PROJECT;
 {code}
 ==
 2009-04-29 02:33:07,182 [main] INFO  
 org.apache.pig.backend.hadoop.executionengine.HExecutionEngine - Connecting 
 to hadoop file system at: hdfs://localhost:9000
 2009-04-29 02:33:08,584 [main] INFO  
 org.apache.pig.backend.hadoop.executionengine.HExecutionEngine - Connecting 
 to map-reduce job tracker at: localhost:9001
 2009-04-29 02:33:08,836 [main] INFO  org.apache.pig.PigServer - Create a new 
 graph.
 2009-04-29 02:33:10,040 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 
 1039: Incompatible types in EqualTo Operator left hand side:int right hand 
 side:chararray
 Details at logfile: /home/viraj/pig-svn/trunk/pig_1240972386081.log
 ==
 It would be good if the error message has a line number and a copy of the 
 line in the script which is causing the problem.
 Attaching data, script and log file. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.