From 64993c6b7ffbd33df3b76b87c499245781df7722 Mon Sep 17 00:00:00 2001 From: Brice Lambson Date: Mon, 17 Oct 2022 11:41:30 -0700 Subject: [PATCH] fixup! SQLite: Use infix GLOB and REGEXP operators Bad merge --- .../Query/NorthwindDbFunctionsQuerySqliteTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/EFCore.Sqlite.FunctionalTests/Query/NorthwindDbFunctionsQuerySqliteTest.cs b/test/EFCore.Sqlite.FunctionalTests/Query/NorthwindDbFunctionsQuerySqliteTest.cs index ffa450ad67f..01c358b6466 100644 --- a/test/EFCore.Sqlite.FunctionalTests/Query/NorthwindDbFunctionsQuerySqliteTest.cs +++ b/test/EFCore.Sqlite.FunctionalTests/Query/NorthwindDbFunctionsQuerySqliteTest.cs @@ -31,7 +31,7 @@ await AssertCount( """ SELECT COUNT(*) FROM "Customers" AS "c" -WHERE '*M*', "c"."ContactName" GLOB '*M*' +WHERE "c"."ContactName" GLOB '*M*' """); }