Skip to content

Commit 9e0d2db

Browse files
Generate async files
1 parent f596707 commit 9e0d2db

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

src/NHibernate.Test/Async/Linq/QueryCacheableTests.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -454,9 +454,6 @@ public async Task ProjectedEntitiesAreCachableAsync()
454454
[Test]
455455
public async Task CacheHqlQueryWithFetchAndTransformerThatChangeTupleAsync()
456456
{
457-
if (!TestDialect.SupportsDuplicatedColumnAliases)
458-
Assert.Ignore("Ignored due to GH-2092");
459-
460457
Sfi.Statistics.Clear();
461458
await (Sfi.EvictQueriesAsync());
462459

src/NHibernate.Test/Async/NHSpecificTest/NH1773/Fixture.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111
using NUnit.Framework;
1212
using System.Collections.Generic;
13-
using NHibernate.Dialect;
1413

1514
namespace NHibernate.Test.NHSpecificTest.NH1773
1615
{
1716
using System.Threading.Tasks;
17+
//Also tests GH-2551 (Fails with MS SQL Ce & SQL Anywhere due to the query generating a duplicated column alias name, which these databases do not support.)
1818
[TestFixture]
1919
public class FixtureAsync : BugTestCase
2020
{
@@ -32,12 +32,6 @@ public async Task CustomHQLFunctionsShouldBeRecognizedByTheParserAsync()
3232
}
3333
}
3434

35-
protected override bool AppliesTo(Dialect.Dialect dialect)
36-
{
37-
// Fails with MS SQL Ce & SQL Anywhere due to the query generating a duplicated column alias name, which these databases do not support.
38-
return TestDialect.SupportsDuplicatedColumnAliases;
39-
}
40-
4135
protected override void OnSetUp()
4236
{
4337
using (var s = OpenSession())

0 commit comments

Comments
 (0)