We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 888902e commit da1c957Copy full SHA for da1c957
1 file changed
Orm/Xtensive.Orm/Sql/Compiler/SqlCompiler.cs
@@ -1385,7 +1385,7 @@ public virtual void Visit(SqlOrder node)
1385
else if (node.Position > 0) {
1386
_ = context.Output.Append(node.Position.ToString());
1387
}
1388
- AppendSpaceIfNecessary();
+ AppendSpace();
1389
translator.Translate(context, node, NodeSection.Exit);
1390
1391
@@ -1608,7 +1608,9 @@ protected virtual void VisitSelectFrom(SqlSelect node)
1608
return;
1609
1610
1611
- AppendTranslated(node, SelectSection.From);
1612
+ translator.Translate(context, node, SelectSection.From);
1613
1614
1615
var joinedFrom = node.From as SqlJoinedTable;
1616
var linearJoinRequired = CheckFeature(QueryFeatures.StrictJoinSyntax) && joinedFrom != null;
0 commit comments