Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug: lateral subquery with CTE panic #19161

Closed
chenzl25 opened this issue Oct 29, 2024 · 0 comments · Fixed by #19162
Closed

bug: lateral subquery with CTE panic #19161

chenzl25 opened this issue Oct 29, 2024 · 0 comments · Fixed by #19162
Labels
type/bug Something isn't working
Milestone

Comments

@chenzl25
Copy link
Contributor

Describe the bug

create table t1(x int, y int);
create table t2(x int, y int);

select * from t1, lateral (
    with cte as (select * from t2 where t2.y = t1.y)  select x from cte
);

Error message/log

No response

To Reproduce

No response

Expected behavior

No response

How did you deploy RisingWave?

No response

The version of RisingWave

No response

Additional context

No response

@chenzl25 chenzl25 added the type/bug Something isn't working label Oct 29, 2024
@chenzl25 chenzl25 changed the title bug: lateral subquery with CTE bug: lateral subquery with CTE panic Oct 29, 2024
@github-actions github-actions bot added this to the release-2.2 milestone Oct 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type/bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant