[
https://issues.apache.org/jira/browse/IMPALA-13274?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17871009#comment-17871009
]
Zhi Tang edited comment on IMPALA-13274 at 8/5/24 9:49 AM:
-----------------------------------------------------------
Query that was run at the time of the crash:
{noformat}
create table fact_table(f0 int, f1 int) stored as textfile;
insert into fact_table select 1,1;
insert into fact_table select 2,2;
insert into fact_table select 3,3;
with test AS
(select *
from fact_table order by rand()
limit 10000),
train AS
(select *
from fact_table
where f0 not in (select distinct f0 from test)
order by rand() limit 200000)
SELECT * from train
union all
SELECT * from test;{noformat}
was (Author: tangzhi):
Query that was run at the time of the crash:
{noformat}
create table fact_table(f0 int, f1 int) stored as textfile;
insert into fact_table select 1,1;
insert into fact_table select 2,2;
insert into fact_table select 3,3;
with test AS
(select *
from fact_table order by rand()
limit 10000),
train AS
(select *
from fact_table
where f0 not in (select distinct f0 from test)
order by rand() limit 200000)
SELECT * from train
union all
SELECT * from test;{noformat}
> Crash in impala::RowDescriptor::TupleIsNullable(int)
> ----------------------------------------------------
>
> Key: IMPALA-13274
> URL: https://issues.apache.org/jira/browse/IMPALA-13274
> Project: IMPALA
> Issue Type: Bug
> Components: Backend
> Reporter: Zhi Tang
> Priority: Major
> Attachments: image-2024-08-05-17-48-01-975.png
>
>
> Log information:
> !image-2024-08-05-17-48-01-975.png|width=607,height=171!
--
This message was sent by Atlassian Jira
(v8.20.10#820010)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]