Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b270d4e

Browse files
committed
Fixing conditional compilation
1 parent 9002fbc commit b270d4e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/expectations/data_values/ut_compound_data_helper.pkb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,7 @@ create or replace package body ut_compound_data_helper is
786786
l_obj json_element_t;
787787
begin
788788
$if dbms_db_version.version >= 21 $then
789-
l_obj := case when a_json_t is null then cast (null as json_element_t ) else json_element_t.parse(json_query(a_value, '$' returning clob)) end;
789+
l_obj := case when a_json_t is null then cast (null as json_element_t ) else json_element_t.parse(json_query(a_json_t, '$' returning clob)) end;
790790
$else
791791
l_obj := null;
792792
$end

0 commit comments

Comments
 (0)