[jira] Updated: (PIG-1001) Generate more meaningful error message when one input file does not exist

2009-11-05 Thread Daniel Dai (JIRA)

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

Daniel Dai updated PIG-1001:


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

Patch committed.

> Generate more meaningful error message when one input file does not exist
> -
>
> Key: PIG-1001
> URL: https://issues.apache.org/jira/browse/PIG-1001
> Project: Pig
>  Issue Type: Bug
>Affects Versions: 0.4.0
>Reporter: Daniel Dai
> Fix For: 0.6.0
>
> Attachments: PIG-1001-1.patch, PIG-1001-2.patch
>
>
> In the following query, if 1.txt does not exist, 
> a = load '1.txt';
> b = group a by $0;
> c = group b all;
> dump c;
> Pig throws error message "ERROR 2100: file:/tmp/temp155054664/tmp1144108421 
> does not exist.", Pig should deal with it with the error message "Input file 
> 1.txt not exist" instead of those confusing messages.

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



[jira] Updated: (PIG-1001) Generate more meaningful error message when one input file does not exist

2009-10-28 Thread Daniel Dai (JIRA)

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

Daniel Dai updated PIG-1001:


Status: Patch Available  (was: Open)

> Generate more meaningful error message when one input file does not exist
> -
>
> Key: PIG-1001
> URL: https://issues.apache.org/jira/browse/PIG-1001
> Project: Pig
>  Issue Type: Bug
>Affects Versions: 0.4.0
>Reporter: Daniel Dai
> Fix For: 0.6.0
>
> Attachments: PIG-1001-1.patch, PIG-1001-2.patch
>
>
> In the following query, if 1.txt does not exist, 
> a = load '1.txt';
> b = group a by $0;
> c = group b all;
> dump c;
> Pig throws error message "ERROR 2100: file:/tmp/temp155054664/tmp1144108421 
> does not exist.", Pig should deal with it with the error message "Input file 
> 1.txt not exist" instead of those confusing messages.

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



[jira] Updated: (PIG-1001) Generate more meaningful error message when one input file does not exist

2009-10-28 Thread Daniel Dai (JIRA)

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

Daniel Dai updated PIG-1001:


Attachment: PIG-1001-2.patch

Reattach the patch per Alan's comment.

> Generate more meaningful error message when one input file does not exist
> -
>
> Key: PIG-1001
> URL: https://issues.apache.org/jira/browse/PIG-1001
> Project: Pig
>  Issue Type: Bug
>Affects Versions: 0.4.0
>Reporter: Daniel Dai
> Fix For: 0.6.0
>
> Attachments: PIG-1001-1.patch, PIG-1001-2.patch
>
>
> In the following query, if 1.txt does not exist, 
> a = load '1.txt';
> b = group a by $0;
> c = group b all;
> dump c;
> Pig throws error message "ERROR 2100: file:/tmp/temp155054664/tmp1144108421 
> does not exist.", Pig should deal with it with the error message "Input file 
> 1.txt not exist" instead of those confusing messages.

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



[jira] Updated: (PIG-1001) Generate more meaningful error message when one input file does not exist

2009-10-28 Thread Daniel Dai (JIRA)

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

Daniel Dai updated PIG-1001:


Status: Open  (was: Patch Available)

> Generate more meaningful error message when one input file does not exist
> -
>
> Key: PIG-1001
> URL: https://issues.apache.org/jira/browse/PIG-1001
> Project: Pig
>  Issue Type: Bug
>Affects Versions: 0.4.0
>Reporter: Daniel Dai
> Fix For: 0.6.0
>
> Attachments: PIG-1001-1.patch, PIG-1001-2.patch
>
>
> In the following query, if 1.txt does not exist, 
> a = load '1.txt';
> b = group a by $0;
> c = group b all;
> dump c;
> Pig throws error message "ERROR 2100: file:/tmp/temp155054664/tmp1144108421 
> does not exist.", Pig should deal with it with the error message "Input file 
> 1.txt not exist" instead of those confusing messages.

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



[jira] Updated: (PIG-1001) Generate more meaningful error message when one input file does not exist

2009-10-19 Thread Daniel Dai (JIRA)

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

Daniel Dai updated PIG-1001:


Description: 
In the following query, if 1.txt does not exist, 

a = load '1.txt';
b = group a by $0;
c = group b all;
dump c;

Pig throws error message "ERROR 2100: file:/tmp/temp155054664/tmp1144108421 
does not exist.", Pig should deal with it with the error message "Input file 
1.txt not exist" instead of those confusing messages.

  was:
In the following query, if 2.txt does not exist, 

a = load '1.txt';
b = group a by $0;
c = group b all;
dump c;

Pig throws error message "ERROR 2100: file:/tmp/temp155054664/tmp1144108421 
does not exist.", Pig should deal with it with the error message "Input file 
2.txt not exist" instead of those confusing messages.


> Generate more meaningful error message when one input file does not exist
> -
>
> Key: PIG-1001
> URL: https://issues.apache.org/jira/browse/PIG-1001
> Project: Pig
>  Issue Type: Bug
>Affects Versions: 0.4.0
>Reporter: Daniel Dai
> Fix For: 0.6.0
>
> Attachments: PIG-1001-1.patch
>
>
> In the following query, if 1.txt does not exist, 
> a = load '1.txt';
> b = group a by $0;
> c = group b all;
> dump c;
> Pig throws error message "ERROR 2100: file:/tmp/temp155054664/tmp1144108421 
> does not exist.", Pig should deal with it with the error message "Input file 
> 1.txt not exist" instead of those confusing messages.

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



[jira] Updated: (PIG-1001) Generate more meaningful error message when one input file does not exist

2009-10-19 Thread Daniel Dai (JIRA)

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

Daniel Dai updated PIG-1001:


Description: 
In the following query, if 2.txt does not exist, 

a = load '1.txt';
b = group a by $0;
c = group b all;
dump c;

Pig throws error message "ERROR 2100: file:/tmp/temp155054664/tmp1144108421 
does not exist.", Pig should deal with it with the error message "Input file 
2.txt not exist" instead of those confusing messages.

  was:
In the following query, if 2.txt does not exist, 

a = load '1.txt';
b = order a by $0;
c = load '2.txt';
d = order c by $0;
e = join b by $0, d by $0;
dump e;

Pig throws error message "ERROR 2100: file:/tmp/temp155054664/tmp1144108421 
does not exist.", Pig should deal with it with the error message "Input file 
2.txt not exist" instead of those confusing messages.


> Generate more meaningful error message when one input file does not exist
> -
>
> Key: PIG-1001
> URL: https://issues.apache.org/jira/browse/PIG-1001
> Project: Pig
>  Issue Type: Bug
>Affects Versions: 0.4.0
>Reporter: Daniel Dai
> Fix For: 0.6.0
>
> Attachments: PIG-1001-1.patch
>
>
> In the following query, if 2.txt does not exist, 
> a = load '1.txt';
> b = group a by $0;
> c = group b all;
> dump c;
> Pig throws error message "ERROR 2100: file:/tmp/temp155054664/tmp1144108421 
> does not exist.", Pig should deal with it with the error message "Input file 
> 2.txt not exist" instead of those confusing messages.

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



[jira] Updated: (PIG-1001) Generate more meaningful error message when one input file does not exist

2009-10-13 Thread Daniel Dai (JIRA)

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

Daniel Dai updated PIG-1001:


Attachment: PIG-1001-1.patch

> Generate more meaningful error message when one input file does not exist
> -
>
> Key: PIG-1001
> URL: https://issues.apache.org/jira/browse/PIG-1001
> Project: Pig
>  Issue Type: Bug
>Affects Versions: 0.4.0
>Reporter: Daniel Dai
> Fix For: 0.6.0
>
> Attachments: PIG-1001-1.patch
>
>
> In the following query, if 2.txt does not exist, 
> a = load '1.txt';
> b = order a by $0;
> c = load '2.txt';
> d = order c by $0;
> e = join b by $0, d by $0;
> dump e;
> Pig throws error message "ERROR 2100: file:/tmp/temp155054664/tmp1144108421 
> does not exist.", Pig should deal with it with the error message "Input file 
> 2.txt not exist" instead of those confusing messages.

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



[jira] Updated: (PIG-1001) Generate more meaningful error message when one input file does not exist

2009-10-13 Thread Daniel Dai (JIRA)

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

Daniel Dai updated PIG-1001:


Status: Patch Available  (was: Open)

> Generate more meaningful error message when one input file does not exist
> -
>
> Key: PIG-1001
> URL: https://issues.apache.org/jira/browse/PIG-1001
> Project: Pig
>  Issue Type: Bug
>Affects Versions: 0.4.0
>Reporter: Daniel Dai
> Fix For: 0.6.0
>
> Attachments: PIG-1001-1.patch
>
>
> In the following query, if 2.txt does not exist, 
> a = load '1.txt';
> b = order a by $0;
> c = load '2.txt';
> d = order c by $0;
> e = join b by $0, d by $0;
> dump e;
> Pig throws error message "ERROR 2100: file:/tmp/temp155054664/tmp1144108421 
> does not exist.", Pig should deal with it with the error message "Input file 
> 2.txt not exist" instead of those confusing messages.

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