File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Orm/Xtensive.Orm/Sql/Compiler Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1385,7 +1385,7 @@ public virtual void Visit(SqlOrder node)
13851385 else if ( node . Position > 0 ) {
13861386 _ = context . Output . Append ( node . Position . ToString ( ) ) ;
13871387 }
1388- AppendSpaceIfNecessary ( ) ;
1388+ AppendSpace ( ) ;
13891389 translator . Translate ( context , node , NodeSection . Exit ) ;
13901390 }
13911391 }
@@ -1608,7 +1608,9 @@ protected virtual void VisitSelectFrom(SqlSelect node)
16081608 return ;
16091609 }
16101610
1611- AppendTranslated ( node , SelectSection . From ) ;
1611+ AppendSpace ( ) ;
1612+ translator . Translate ( context , node , SelectSection . From ) ;
1613+ AppendSpace ( ) ;
16121614
16131615 var joinedFrom = node . From as SqlJoinedTable ;
16141616 var linearJoinRequired = CheckFeature ( QueryFeatures . StrictJoinSyntax ) && joinedFrom != null ;
You can’t perform that action at this time.
0 commit comments