8000 Support native JSON data type of Oracle Database 21c by lwasylow · Pull Request #1181 · utPLSQL/utPLSQL · GitHub
[go: up one dir, main page]

Skip to content

Support native JSON data type of Oracle Database 21c #1181

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Feb 6, 2022
Merged
Prev Previous commit
Next Next commit
Fixing conditional compilation
  • Loading branch information
lwasylow committed Feb 1, 2022
commit b270d4e02745ca3455c4b1db2523161d683b369c
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ create or replace package body ut_compound_data_helper is
l_obj json_element_t;
begin
$if dbms_db_version.version >= 21 $then
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;
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;
$else
l_obj := null;
$end
Expand Down
0