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
create type boolean_array as boolean array[] @angoca
create or replace assert_equal_boolean_array (
in actual_boolean_array boolean_array,
in expected_boolean_array boolean_array
)
set max_expected = cardinality(expected_boolean_array);
set max_actual = cardinality(actual_boolean_array);
if (actual_boolean_array[i] <> expected_boolean_array[i]) then
There should be these assertions to compare two arrays and two associative arrays.
The text was updated successfully, but these errors were encountered: