We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b3fe8c commit 27648a2Copy full SHA for 27648a2
tests/integration/Core/Repository/SearchService/RemoteIdIndexingTest.php
@@ -55,15 +55,9 @@ public function testIndexingRemoteId(Criterion $criterion): void
55
56
$contentId = self::$contentIdByRemoteIdIndex[$remoteId];
57
58
- // ensure correct collation for comparison
+ // apply explicit collation
59
$collationFixedCriterion = new Criterion\RemoteId([
60
- new Criterion\LogicalAnd([
61
- new Criterion\Comparison(
62
- 'remote_id',
63
- Criterion\Operator::EQ,
64
- $remoteId . " COLLATE utf8mb4_unicode_ci"
65
- )
66
- ])
+ $remoteId . ' COLLATE utf8mb4_unicode_ci',
67
]);
68
69
// test searching using both Content & Location remote IDs for both Content items
0 commit comments