Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fe4d85 commit 63bc825Copy full SHA for 63bc825
1 file changed
test/ut3_user/expectations/test_expectations_cursor.pkb
@@ -2802,6 +2802,8 @@ Check the query and data for errors.';
2802
l_expected_data(1).col4 := 2016;
2803
l_expected_data(1).col5 := -1;
2804
2805
+ --Select on package level nested table types supported only since Oracle 12
2806
+ $if dbms_db_version.version >= 12 $then
2807
open l_expected for
2808
select *
2809
from table (l_expected_data);
@@ -2826,6 +2828,7 @@ Check the query and data for errors.';
2826
2828
l_actual_message := ut3_tester_helper.main_helper.get_failed_expectations(1);
2827
2829
2830
ut.expect(l_actual_message).to_be_like(l_expected_message);
2831
+ $end
2832
end;
2833
2834
0 commit comments