You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Namit Jain (JIRA)" <ji...@apache.org> on 2009/11/12 19:04:39 UTC

[jira] Created: (HIVE-927) input41.q should fail

input41.q should fail
---------------------

                 Key: HIVE-927
                 URL: https://issues.apache.org/jira/browse/HIVE-927
             Project: Hadoop Hive
          Issue Type: Bug
          Components: Query Processor
            Reporter: Namit Jain
             Fix For: 0.5.0


input41.q:

set hive.mapred.mode=strict;

select * from 
  (select count(1) from src 
    union all
   select count(1) from srcpart where ds = '2009-08-09'
  )x;
   

select * from 
  (select * from src 
    union all
   select * from srcpart where ds = '2009-08-09'
  )x;



The above test should fail - but it succeeds

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


[jira] Updated: (HIVE-927) input41.q should fail

Posted by "He Yongqiang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HIVE-927?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

He Yongqiang updated HIVE-927:
------------------------------

    Attachment: hive-927-2009-12-22.patch

> input41.q should fail
> ---------------------
>
>                 Key: HIVE-927
>                 URL: https://issues.apache.org/jira/browse/HIVE-927
>             Project: Hadoop Hive
>          Issue Type: Bug
>          Components: Query Processor
>            Reporter: Namit Jain
>            Assignee: He Yongqiang
>             Fix For: 0.5.0
>
>         Attachments: hive-927-2009-12-22.patch
>
>
> input41.q:
> set hive.mapred.mode=strict;
> select * from 
>   (select count(1) from src 
>     union all
>    select count(1) from srcpart where ds = '2009-08-09'
>   )x;
>    
> select * from 
>   (select * from src 
>     union all
>    select * from srcpart where ds = '2009-08-09'
>   )x;
> The above test should fail - but it succeeds

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


[jira] Commented: (HIVE-927) input41.q should fail

Posted by "Namit Jain (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HIVE-927?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12793757#action_12793757 ] 

Namit Jain commented on HIVE-927:
---------------------------------

+1

will commit if the tests pass

> input41.q should fail
> ---------------------
>
>                 Key: HIVE-927
>                 URL: https://issues.apache.org/jira/browse/HIVE-927
>             Project: Hadoop Hive
>          Issue Type: Bug
>          Components: Query Processor
>            Reporter: Namit Jain
>            Assignee: He Yongqiang
>             Fix For: 0.5.0
>
>         Attachments: hive-927-2009-12-22.patch
>
>
> input41.q:
> set hive.mapred.mode=strict;
> select * from 
>   (select count(1) from src 
>     union all
>    select count(1) from srcpart where ds = '2009-08-09'
>   )x;
>    
> select * from 
>   (select * from src 
>     union all
>    select * from srcpart where ds = '2009-08-09'
>   )x;
> The above test should fail - but it succeeds

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


[jira] Assigned: (HIVE-927) input41.q should fail

Posted by "Namit Jain (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HIVE-927?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Namit Jain reassigned HIVE-927:
-------------------------------

    Assignee: He Yongqiang

> input41.q should fail
> ---------------------
>
>                 Key: HIVE-927
>                 URL: https://issues.apache.org/jira/browse/HIVE-927
>             Project: Hadoop Hive
>          Issue Type: Bug
>          Components: Query Processor
>            Reporter: Namit Jain
>            Assignee: He Yongqiang
>             Fix For: 0.5.0
>
>
> input41.q:
> set hive.mapred.mode=strict;
> select * from 
>   (select count(1) from src 
>     union all
>    select count(1) from srcpart where ds = '2009-08-09'
>   )x;
>    
> select * from 
>   (select * from src 
>     union all
>    select * from srcpart where ds = '2009-08-09'
>   )x;
> The above test should fail - but it succeeds

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


[jira] Commented: (HIVE-927) input41.q should fail

Posted by "Namit Jain (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HIVE-927?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12792212#action_12792212 ] 

Namit Jain commented on HIVE-927:
---------------------------------

blocker for 0.5

> input41.q should fail
> ---------------------
>
>                 Key: HIVE-927
>                 URL: https://issues.apache.org/jira/browse/HIVE-927
>             Project: Hadoop Hive
>          Issue Type: Bug
>          Components: Query Processor
>            Reporter: Namit Jain
>             Fix For: 0.5.0
>
>
> input41.q:
> set hive.mapred.mode=strict;
> select * from 
>   (select count(1) from src 
>     union all
>    select count(1) from srcpart where ds = '2009-08-09'
>   )x;
>    
> select * from 
>   (select * from src 
>     union all
>    select * from srcpart where ds = '2009-08-09'
>   )x;
> The above test should fail - but it succeeds

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


[jira] Updated: (HIVE-927) input41.q should fail

Posted by "He Yongqiang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HIVE-927?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

He Yongqiang updated HIVE-927:
------------------------------

    Status: Patch Available  (was: Open)

> input41.q should fail
> ---------------------
>
>                 Key: HIVE-927
>                 URL: https://issues.apache.org/jira/browse/HIVE-927
>             Project: Hadoop Hive
>          Issue Type: Bug
>          Components: Query Processor
>            Reporter: Namit Jain
>            Assignee: He Yongqiang
>             Fix For: 0.5.0
>
>         Attachments: hive-927-2009-12-22.patch
>
>
> input41.q:
> set hive.mapred.mode=strict;
> select * from 
>   (select count(1) from src 
>     union all
>    select count(1) from srcpart where ds = '2009-08-09'
>   )x;
>    
> select * from 
>   (select * from src 
>     union all
>    select * from srcpart where ds = '2009-08-09'
>   )x;
> The above test should fail - but it succeeds

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


[jira] Updated: (HIVE-927) input41.q should fail

Posted by "Namit Jain (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HIVE-927?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Namit Jain updated HIVE-927:
----------------------------

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

Committed. Thanks Yongqiang

> input41.q should fail
> ---------------------
>
>                 Key: HIVE-927
>                 URL: https://issues.apache.org/jira/browse/HIVE-927
>             Project: Hadoop Hive
>          Issue Type: Bug
>          Components: Query Processor
>            Reporter: Namit Jain
>            Assignee: He Yongqiang
>             Fix For: 0.5.0
>
>         Attachments: hive-927-2009-12-22.patch
>
>
> input41.q:
> set hive.mapred.mode=strict;
> select * from 
>   (select count(1) from src 
>     union all
>    select count(1) from srcpart where ds = '2009-08-09'
>   )x;
>    
> select * from 
>   (select * from src 
>     union all
>    select * from srcpart where ds = '2009-08-09'
>   )x;
> The above test should fail - but it succeeds

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