Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix reference error in PostgresEventStore for MetadataMatcher with IN…
… Operations. The removed value reference leads to wrong values for the IN operation. Example: ``` (new MetadataMatcher()) ->withMetadataMatch( 'event_name', Operator::IN(), [ 'Event-1', 'Event-2' ], FieldType::MESSAGE_PROPERTY() ) ``` Results to: ``` $values = [ 'metadata_0_0' => 'Event-1', 'metadata_0_1' => 'Event-1' ] ``` The Second values is replaced by the value reference with the first one.
- Loading branch information