-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Query: Add support for TPC #27961
Query: Add support for TPC #27961
Conversation
src/EFCore.Relational/Query/RelationalSqlTranslatingExpressionVisitor.cs
Outdated
Show resolved
Hide resolved
...l/Query/RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.cs
Outdated
Show resolved
Hide resolved
src/EFCore.Relational/Query/RelationalSqlTranslatingExpressionVisitor.cs
Outdated
Show resolved
Hide resolved
Part of #3170
select1._projection.Select(p => | ||
new ProjectionExpression(new ConcreteColumnExpression(p, tableReferenceExpression), p.Alias))); | ||
subSelectExpressions.Enqueue(selectExpression); | ||
count -= 2; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this can go below 0, we need to reset the count after we perform each full pass of "unionization"
general observation: given the (current) complex logic in building the union structure, we should add some tests with deep inheritance hierarchies. No need for complex queries on those just make sure that This can be done is a separate pr. |
Part of #3170