[WIP] Version bump

develop
Matija Koželj 2 years ago
parent d28beb5ae2
commit 259534c423

@ -349,7 +349,7 @@ public sealed class Binder : DatabaseVisitor
var alias = Alias.New();
var pc = ProjectColumns(projection.Projector, alias, projection.Select.Alias);
return new ProjectionExpression(new SelectExpression(alias, pc.Columns, projection.Select.From, where), pc.Projector);
return new ProjectionExpression(new SelectExpression(alias, pc.Columns, projection.Select, where), pc.Projector);
}
private ProjectionExpression VisitSequence(Expression source) => ConvertToSequence(Visit(source));
@ -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.From, where, null, null, false, null, take, isLast), pc.Projector);
projection = new ProjectionExpression(new SelectExpression(alias, pc.Columns, projection.Select, where, null, null, false, null, take, isLast), pc.Projector);
}
if (isRoot)

Loading…
Cancel
Save