Skip to content

Commit 1215688

Browse files
Add a comment about a possible workaround for batching
1 parent 9684af1 commit 1215688

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/NHibernate.Test/Ado/GenericBatchingBatcherFixture.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ protected override bool AppliesTo(Dialect.Dialect dialect)
3030
!(dialect is Oracle8iDialect) &&
3131
!(dialect is MsSqlCeDialect) &&
3232
!(dialect is HanaDialectBase) &&
33+
// A workaround exists for SQL Anywhere, see https://stackoverflow.com/a/32860293/1178314
34+
// It would imply some tweaking in the generic batcher. The same workaround could
35+
// be used for enabling future support.
3336
!(dialect is SybaseSQLAnywhere10Dialect);
3437
}
3538

src/NHibernate.Test/Async/Ado/GenericBatchingBatcherFixture.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ protected override bool AppliesTo(Dialect.Dialect dialect)
4343
!(dialect is Oracle8iDialect) &&
4444
!(dialect is MsSqlCeDialect) &&
4545
!(dialect is HanaDialectBase) &&
46+
// A workaround exists for SQL Anywhere, see https://stackoverflow.com/a/32860293/1178314
47+
// It would imply some tweaking in the generic batcher. The same workaround could
48+
// be used for enabling future support.
4649
!(dialect is SybaseSQLAnywhere10Dialect);
4750
}
4851

0 commit comments

Comments
 (0)