[WIP] Replace incoming select statement with from statement in Binder.cs
This commit is contained in:
parent
ed7e8f411a
commit
5459722b24
@ -682,7 +682,7 @@ public sealed class Binder : DatabaseVisitor
|
||||
{
|
||||
var alias = Alias.New();
|
||||
var pc = ProjectColumns(projection.Projector, alias, projection.Select.Alias);
|
||||
projection = new ProjectionExpression(new SelectExpression(alias, pc.Columns, projection.Select, where, null, null, false, null, take, isLast), pc.Projector);
|
||||
projection = new ProjectionExpression(new SelectExpression(alias, pc.Columns, projection.Select.From, where, null, null, false, null, take, isLast), pc.Projector);
|
||||
}
|
||||
|
||||
if (isRoot)
|
||||
|
Loading…
x
Reference in New Issue
Block a user