We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45c9edb commit b289e4bCopy full SHA for b289e4b
Orm/Xtensive.Orm/Sql/Compiler/SqlCompiler.cs
@@ -345,6 +345,18 @@ public virtual void Visit(SqlBinary node)
345
return;
346
}
347
348
+ if (node.NodeType == SqlNodeType.RawConcat) {
349
+ AppendSpace();
350
+ translator.Translate(context, node, NodeSection.Entry);
351
+ node.Left.AcceptVisitor(this);
352
353
+ translator.Translate(context.Output, node.NodeType);
354
+ node.Right.AcceptVisitor(this);
355
+ translator.Translate(context, node, NodeSection.Exit);
356
+
357
+ return;
358
+ }
359
360
using (context.EnterScope(node)) {
361
AppendTranslatedEntry(node);
362
node.Left.AcceptVisitor(this);
0 commit comments