Skip to content

Commit 90c63b0

Browse files
committed
SQL baseline changes
1 parent dc09158 commit 90c63b0

7 files changed

+11
-11
lines changed

test/EFCore.PG.FunctionalTests/BulkUpdates/TPCFiltersInheritanceBulkUpdatesNpgsqlTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public override async Task Update_derived_property_on_derived_type(bool async)
136136

137137
AssertExecuteUpdateSql(
138138
"""
139-
@p='0' (DbType = Int16)
139+
@p='0'
140140
141141
UPDATE "Kiwi" AS k
142142
SET "FoundOn" = @p
@@ -174,7 +174,7 @@ public override async Task Update_base_and_derived_types(bool async)
174174
AssertExecuteUpdateSql(
175175
"""
176176
@p='Kiwi'
177-
@p0='0' (DbType = Int16)
177+
@p0='0'
178178
179179
UPDATE "Kiwi" AS k
180180
SET "Name" = @p,

test/EFCore.PG.FunctionalTests/BulkUpdates/TPCInheritanceBulkUpdatesNpgsqlTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public override async Task Update_derived_property_on_derived_type(bool async)
135135

136136
AssertExecuteUpdateSql(
137137
"""
138-
@p='0' (DbType = Int16)
138+
@p='0'
139139
140140
UPDATE "Kiwi" AS k
141141
SET "FoundOn" = @p
@@ -172,7 +172,7 @@ public override async Task Update_base_and_derived_types(bool async)
172172
AssertExecuteUpdateSql(
173173
"""
174174
@p='Kiwi'
175-
@p0='0' (DbType = Int16)
175+
@p0='0'
176176
177177
UPDATE "Kiwi" AS k
178178
SET "Name" = @p,

test/EFCore.PG.FunctionalTests/BulkUpdates/TPHFiltersInheritanceBulkUpdatesNpgsqlTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public override async Task Update_derived_property_on_derived_type(bool async)
173173

174174
AssertExecuteUpdateSql(
175175
"""
176-
@p='0' (DbType = Int16)
176+
@p='0'
177177
178178
UPDATE "Animals" AS a
179179
SET "FoundOn" = @p
@@ -188,7 +188,7 @@ public override async Task Update_base_and_derived_types(bool async)
188188
AssertExecuteUpdateSql(
189189
"""
190190
@p='Kiwi'
191-
@p0='0' (DbType = Int16)
191+
@p0='0'
192192
193193
UPDATE "Animals" AS a
194194
SET "Name" = @p,

test/EFCore.PG.FunctionalTests/BulkUpdates/TPHInheritanceBulkUpdatesNpgsqlTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ public override async Task Update_derived_property_on_derived_type(bool async)
183183

184184
AssertExecuteUpdateSql(
185185
"""
186-
@p='0' (DbType = Int16)
186+
@p='0'
187187
188188
UPDATE "Animals" AS a
189189
SET "FoundOn" = @p
@@ -198,7 +198,7 @@ public override async Task Update_base_and_derived_types(bool async)
198198
AssertExecuteUpdateSql(
199199
"""
200200
@p='Kiwi'
201-
@p0='0' (DbType = Int16)
201+
@p0='0'
202202
203203
UPDATE "Animals" AS a
204204
SET "Name" = @p,

test/EFCore.PG.FunctionalTests/BulkUpdates/TPTFiltersInheritanceBulkUpdatesNpgsqlTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public override async Task Update_derived_property_on_derived_type(bool async)
155155

156156
AssertExecuteUpdateSql(
157157
"""
158-
@p='0' (DbType = Int16)
158+
@p='0'
159159
160160
UPDATE "Kiwi" AS k
161161
SET "FoundOn" = @p

test/EFCore.PG.FunctionalTests/BulkUpdates/TPTInheritanceBulkUpdatesNpgsqlTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public override async Task Update_derived_property_on_derived_type(bool async)
140140

141141
AssertExecuteUpdateSql(
142142
"""
143-
@p='0' (DbType = Int16)
143+
@p='0'
144144
145145
UPDATE "Kiwi" AS k
146146
SET "FoundOn" = @p

test/EFCore.PG.FunctionalTests/Query/Translations/ByteArrayTranslationsNpgsqlTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public override async Task Contains_with_parameter()
6464

6565
AssertSql(
6666
"""
67-
@someByte='1' (DbType = Int16)
67+
@someByte='1'
6868
6969
SELECT b."Id", b."Bool", b."Byte", b."ByteArray", b."DateOnly", b."DateTime", b."DateTimeOffset", b."Decimal", b."Double", b."Enum", b."FlagsEnum", b."Float", b."Guid", b."Int", b."Long", b."Short", b."String", b."TimeOnly", b."TimeSpan"
7070
FROM "BasicTypesEntities" AS b

0 commit comments

Comments
 (0)