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 c4b83e9 commit 07c040aCopy full SHA for 07c040a
Orm/Xtensive.Orm.MySql/Sql.Drivers.MySql/v8_0/Compiler.cs
@@ -16,9 +16,9 @@ public override void Visit(SqlQueryExpression node)
16
{
17
using (context.EnterScope(node)) {
18
var wrapLeft = node.Left is SqlSelect sL
19
- && (sL.OrderBy.Count > 0 || !sL.HasLimit || sL.Lock != SqlLockType.Empty);
+ && (sL.OrderBy.Count > 0 || sL.HasLimit || sL.Lock != SqlLockType.Empty);
20
var wrapRight = node.Left is SqlSelect sR
21
- && (sR.OrderBy.Count > 0 || !sR.HasLimit || sR.Lock != SqlLockType.Empty);
+ && (sR.OrderBy.Count > 0 || sR.HasLimit || sR.Lock != SqlLockType.Empty);
22
23
AppendTranslatedEntry(node);
24
if (wrapLeft) {
0 commit comments