-
-
Notifications
You must be signed in to change notification settings - Fork 233
Server crash on select * from <recursive CTE> [CORE1244] #1668
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
Comments
Modified by: Yakov Hrebtov (jake)description: Simple select from recursive CTE crashes then server when query uses asterisk. with recursive
select * => Simple select from recursive CTE crashes the server when query uses asterisk. with recursive
select * |
Commented by: @hvlad It is broken in 1.316 version of dsql\pass1.cpp AV source is in pass1_expand_select_node at line 4860 : if (!hide_using || here we have NULL context Adriano, could you look at it ? |
Commented by: @asfernandes Quick (but correct) fix without look yet why the derived table is without the context. (Pavel: note the bug was not really with Alpha1 or Beta1, but with snapshot between two versions.) |
Modified by: @asfernandesstatus: Open [ 1 ] => Resolved [ 5 ] resolution: Fixed [ 1 ] Fix Version: 2.1 Beta 1 [ 10141 ] assignee: Adriano dos Santos Fernandes [ asfernandes ] |
Commented by: @pmakowski Q/A tested ok |
Modified by: @pmakowskistatus: Resolved [ 5 ] => Closed [ 6 ] |
Modified by: @pcisarWorkflow: jira [ 12012 ] => Firebird [ 14152 ] |
Modified by: @pavel-zotovQA Status: No test |
Modified by: @pavel-zotovQA Status: No test => Done successfully |
Submitted by: Yakov Hrebtov (jake)
Is related to QA149
Simple select from recursive CTE crashes the server when query uses asterisk.
with recursive
Art_Tree as (
select A.ArticleID
from Articles A
where A.ParentID is NULL
select *
from Art_Tree
Commits: c08581d
The text was updated successfully, but these errors were encountered: