Skip to content

Commit 673084b

Browse files
committed
Port SupportsRowValueConstructorSyntaxInInList values
1 parent 3e78b69 commit 673084b

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

src/NHibernate/Dialect/MySQL57Dialect.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,8 @@ public MySQL57Dialect()
1616

1717
/// <inheritdoc />
1818
public override bool SupportsDateTimeScale => true;
19+
20+
/// <inheritdoc />
21+
public override bool SupportsRowValueConstructorSyntaxInInList => true;
1922
}
2023
}

src/NHibernate/Dialect/Oracle9iDialect.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,8 @@ public override CaseFragment CreateCaseFragment()
5656

5757
/// <inheritdoc />
5858
public override bool SupportsDateTimeScale => true;
59+
60+
/// <inheritdoc />
61+
public override bool SupportsRowValueConstructorSyntaxInInList => true;
5962
}
6063
}

src/NHibernate/Dialect/PostgreSQL82Dialect.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,8 @@ public override string GetDropSequenceString(string sequenceName)
2727
{
2828
return string.Concat("drop sequence if exists ", sequenceName);
2929
}
30+
31+
/// <inheritdoc />
32+
public override bool SupportsRowValueConstructorSyntaxInInList => true;
3033
}
31-
}
34+
}

0 commit comments

Comments
 (0)