Skip to content

Commit 410d068

Browse files
committed
Depend on Npgsql 10.0.0 GA
1 parent fc14e51 commit 410d068

9 files changed

Lines changed: 13 additions & 13 deletions

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<EFCoreVersion>10.0.0</EFCoreVersion>
44
<MicrosoftExtensionsVersion>10.0.0</MicrosoftExtensionsVersion>
5-
<NpgsqlVersion>10.0.0-rc.2-ci.20251107T191940</NpgsqlVersion>
5+
<NpgsqlVersion>10.0.0</NpgsqlVersion>
66
</PropertyGroup>
77

88
<ItemGroup>

test/EFCore.PG.FunctionalTests/BuiltInDataTypesNpgsqlTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ public virtual void Can_insert_and_read_back_all_mapped_data_types()
470470
"""
471471
@p0='77'
472472
@p1='True'
473-
@p2='80' (DbType = Int16)
473+
@p2='80'
474474
@p3='0x56' (Nullable = false)
475475
@p4='g' (Nullable = false)
476476
@p5='h' (Nullable = false)

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)