Re: orc ppd bug report

2015-01-22 Thread Ch Wan
Hi. We use hive0.13.1 currently and encountered this bug. I tried the test case in trunk and got the correct result. But with some more complex sql, the result is still incorrect. I found the patch HIVE-8707 makes the simple test case work well, b

Re: orc ppd bug report

2015-01-06 Thread wzc
I tried on hive trunk last time and it didn't work.i'll try again. Thank you for your help. On 2015年1月7日 周三 at 02:29 Prasanth Jayachandran < pjayachand...@hortonworks.com> wrote: > Hi > > Which version of hive are you using? I tried your test case in hive trunk > and it seems to work fine. In both

Re: orc ppd bug report

2015-01-06 Thread Prasanth Jayachandran
Hi  Which version of hive are you using? I tried your test case in hive trunk and it seems to work fine. In both cases where PPD enabled and disabled I am getting 3 as the result. - Prasanth On Sun, Jan 4, 2015 at 3:04 PM, wzc wrote: > Recently we find a bug with orc ppd, here is the te

Re: orc ppd bug report

2015-01-06 Thread Prasanth Jayachandran
Sure. Will look into this. - Prasanth On Mon, Jan 5, 2015 at 9:59 PM, wzc wrote: > @Prasanth would you help me look into this problem? > Thanks. > On Mon Jan 05 2015 at 上午12:03:42 wzc wrote: >> Recently we find a bug with orc ppd, here is the testcase: >> >> use test; >> create table if not

Re: orc ppd bug report

2015-01-05 Thread wzc
@Prasanth would you help me look into this problem? Thanks. On Mon Jan 05 2015 at 上午12:03:42 wzc wrote: > Recently we find a bug with orc ppd, here is the testcase: > > use test; > create table if not exists test_orc_src (a int, b int, c int) > stored as orc; > create table if not exists test_

orc ppd bug report

2015-01-04 Thread wzc
Recently we find a bug with orc ppd, here is the testcase: use test; create table if not exists test_orc_src (a int, b int, c int) stored as orc; create table if not exists test_orc_src2 (a int, b int, d int) stored as orc; insert overwrite table test_orc_src select 1,2,3 from dim.city limit 1; i