Skip to content

Commit 74055e1

Browse files
committed
Update to SQLitePCLRaw 1.1.15
Part of #29429
1 parent 4bd499b commit 74055e1

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

build/dependencies.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
<NewtonsoftJsonPackageVersion>11.0.2</NewtonsoftJsonPackageVersion>
3636
<OracleManagedDataAccessPackageVersion>12.2.1100</OracleManagedDataAccessPackageVersion>
3737
<RemotionLinqPackageVersion>2.2.0</RemotionLinqPackageVersion>
38-
<SQLitePCLRawBundleGreenPackageVersion>1.1.12</SQLitePCLRawBundleGreenPackageVersion>
39-
<SQLitePCLRawBundleSqlcipherPackageVersion>1.1.12</SQLitePCLRawBundleSqlcipherPackageVersion>
40-
<SQLitePCLRawCorePackageVersion>1.1.12</SQLitePCLRawCorePackageVersion>
38+
<SQLitePCLRawBundleGreenPackageVersion>1.1.15</SQLitePCLRawBundleGreenPackageVersion>
39+
<SQLitePCLRawBundleSqlcipherPackageVersion>1.1.14</SQLitePCLRawBundleSqlcipherPackageVersion>
40+
<SQLitePCLRawCorePackageVersion>1.1.14</SQLitePCLRawCorePackageVersion>
4141
<StyleCopAnalyzersPackageVersion>1.0.0</StyleCopAnalyzersPackageVersion>
4242
<SystemCollectionsImmutablePackageVersion>1.5.0</SystemCollectionsImmutablePackageVersion>
4343
<SystemComponentModelAnnotationsPackageVersion>4.5.0</SystemComponentModelAnnotationsPackageVersion>

test/EFCore.Sqlite.FunctionalTests/Query/SimpleQuerySqliteTest.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using Microsoft.EntityFrameworkCore.TestUtilities;
5+
using Microsoft.EntityFrameworkCore.TestUtilities.Xunit;
56
using Xunit.Abstractions;
67

78
namespace Microsoft.EntityFrameworkCore.Query
@@ -684,6 +685,12 @@ public override void Select_datetime_millisecond_component()
684685
}
685686
#endif
686687

688+
[ConditionalFact(Skip = "Issue#21541")]
689+
public override void Project_single_element_from_collection_with_multiple_OrderBys_Take_and_FirstOrDefault_2()
690+
{
691+
base.Project_single_element_from_collection_with_multiple_OrderBys_Take_and_FirstOrDefault_2();
692+
}
693+
687694
private void AssertSql(params string[] expected)
688695
=> Fixture.TestSqlLoggerFactory.AssertBaseline(expected);
689696
}

test/EFCore.Sqlite.FunctionalTests/Scaffolding/SqliteDatabaseModelFactoryTest.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -304,10 +304,10 @@ RandomProperty randomType
304304
{
305305
var columns = dbModel.Tables.Single().Columns;
306306

307-
Assert.Equal("integer", columns.Single(c => c.Name == "IntegerProperty").StoreType);
308-
Assert.Equal("real", columns.Single(c => c.Name == "RealProperty").StoreType);
309-
Assert.Equal("text", columns.Single(c => c.Name == "TextProperty").StoreType);
310-
Assert.Equal("blob", columns.Single(c => c.Name == "BlobProperty").StoreType);
307+
Assert.Equal("integer", columns.Single(c => c.Name == "IntegerProperty").StoreType, ignoreCase: true);
308+
Assert.Equal("real", columns.Single(c => c.Name == "RealProperty").StoreType, ignoreCase: true);
309+
Assert.Equal("text", columns.Single(c => c.Name == "TextProperty").StoreType, ignoreCase: true);
310+
Assert.Equal("blob", columns.Single(c => c.Name == "BlobProperty").StoreType, ignoreCase: true);
311311
Assert.Equal("randomType", columns.Single(c => c.Name == "RandomProperty").StoreType);
312312
},
313313
@"DROP TABLE StoreType;");

0 commit comments

Comments
 (0)