Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/userguide/advanced_data_comparison.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,9 @@ FAILURE
at "anonymous block", line 15
```
**Note**
> `join_by` matcher is much faster on performing data comparison, consider using `join_by` over unordered
> `contain` matcher is not considering order of compared data-sets. Using `unordered` makes no difference (it's default)
> Consider using `join_by( columns... )` over `unordered()` with the `equal` matcher. The `join_by` method is much faster at performing data comparison.
>
> The `contain` matcher is not considering the order of the compared data-sets. Using `unordered` makes no difference (it's default).


## Join By option
Expand Down