Skip to content

Commit 5551839

Browse files
Generate async files
1 parent a863710 commit 5551839

File tree

1 file changed

+1
-7
lines changed
  • src/NHibernate.Test/Async/NHSpecificTest/GH3530

1 file changed

+1
-7
lines changed

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

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,9 @@ protected override void CreateSchema()
5959
var table = GetQualifiedName(catalog, schema, "LocaleEntity");
6060

6161
sb.Append($"{Dialect.CreateTableString} {table} (");
62-
sb.Append("Id ");
63-
64-
if (Dialect.HasDataTypeInIdentityColumn)
65-
{
66-
sb.Append($"{guidType}");
67-
}
68-
sb.Append(" ").Append(Dialect.GetIdentityColumnString(DbType.Guid)).Append(", ");
6962

7063
// Generate columns
64+
sb.Append($"Id {guidType}, ");
7165
sb.Append($"IntegerValue {stringType}, ");
7266
sb.Append($"DateTimeValue {stringType}, ");
7367
sb.Append($"DoubleValue {stringType}, ");

0 commit comments

Comments
 (0)