You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/userguide/expectations.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -713,7 +713,7 @@ utPLSQL is capable of comparing compound data-types including:
713
713
714
714
- Attributes in nested table and array types are compared as **ordered lists of elements**. If order of attributes in nested table and array differ, expectation will fail.
715
715
716
-
- Columns in cursors are compared as **unordered list of elements** by default. If order of columns in cursor is of importance the option has to be passed to enforce column order comparison `ordered_columns` e.g.
716
+
- Columns in cursors are compared as **ordered list of elements** by default. If order of columns in cursor is not of importance the option has to be passed to enforce column order comparison ` unordered_columns` e.g.
717
717
718
718
```sql
719
719
procedure ut_refcursors1 is
@@ -725,7 +725,7 @@ utPLSQL is capable of comparing compound data-types including:
725
725
open l_actual for select1 user_id,'s' a_col,'test' username from dual;
726
726
open l_expected for select'test' username,'s' a_col,1 user_id from dual;
0 commit comments