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 883c997 commit 303f785Copy full SHA for 303f785
src/NHibernate.Test/Async/NHSpecificTest/GH3530/Fixture.cs
@@ -50,13 +50,12 @@ protected override void OnTearDown()
50
51
protected override void CreateSchema()
52
{
53
- // Let the SchemaExporter drop and create tables if needed.
54
- base.CreateSchema();
55
-
56
CreateTable("Integer");
57
CreateTable("DateTime");
58
CreateTable("Double");
59
CreateTable("Decimal");
+
+ base.CreateSchema();
60
}
61
62
/// <summary>
@@ -95,6 +94,10 @@ private void CreateTable(string name)
95
94
cmd.ExecuteNonQuery();
96
97
+ catch (Exception ex)
98
+ {
99
+ Assert.Warn($"Creating the schema failed, assuming it already exists. {ex}");
100
+ }
101
finally
102
103
Sfi.ConnectionProvider.CloseConnection(cn);
0 commit comments