@@ -71,7 +71,7 @@ class QueryPerformanceTests: XCTestCase {
7171 let filter = try KeywordSearchFilter ( expression: . init( operator: . is, value: " apple " ) )
7272 let query = try Search . query ( app. db, [ " a " ] , filters: [ filter] , page: 1 )
7373 . unwrap ( )
74- try await assertQueryPerformance ( query, expectedCost: 6800 , variation: 200 )
74+ try await assertQueryPerformance ( query, expectedCost: 6900 , variation: 200 )
7575 }
7676
7777 func test_07_Search_query_lastActicityFilter( ) async throws {
@@ -92,7 +92,7 @@ class QueryPerformanceTests: XCTestCase {
9292 let filter = try PlatformSearchFilter ( expression: . init( operator: . is, value: " macos,ios " ) )
9393 let query = try Search . query ( app. db, [ " a " ] , filters: [ filter] , page: 1 )
9494 . unwrap ( )
95- try await assertQueryPerformance ( query, expectedCost: 6800 , variation: 200 )
95+ try await assertQueryPerformance ( query, expectedCost: 6900 , variation: 200 )
9696 }
9797
9898 func test_10_Search_query_productTypeFilter( ) async throws {
@@ -152,7 +152,7 @@ class QueryPerformanceTests: XCTestCase {
152152 JOIN versions v ON v.package_id = p.id
153153 WHERE v.reference ->> 'branch' = r.default_branch
154154 """ )
155- try await assertQueryPerformance ( query, expectedCost: 69_000 , variation: 3000 )
155+ try await assertQueryPerformance ( query, expectedCost: 70_000 , variation: 3000 )
156156 }
157157
158158}
0 commit comments