Skip to content

Alterations to json_object after parsing a JSON string are not possible #7

@fb-datax

Description

@fb-datax

After a JSON string has been parsed into a json_object, modifications (put('field','value')) are not included in the non-raw output.

Sample code:

set serveroutput on size unlimited;
declare
    v_json          json_object;
    v_json_string   varchar(32000)      := '{"data":[{"p1":["a1",8.11],"p2":["a1",8.11]},{"p1":["a1",8.11],"p2":["a1",8.11]}]}';

begin
    v_json := json_object(v_json_string);
    json_debug.output(v_json, false);
    v_json.put('newnode','somevalue');
    json_debug.output(v_json, false); /* missing newnode*/
    json_debug.output(v_json, true); /* contains newnode*/
end;
/

The lastID in the json_obejct is not set to the last root node of the parsed json.

I did fix this in my fork but I had to include some more changes like the possibility to check to current running version. If time allows it I'll try to send a proper merge request in the next few days.
Commits:
fb-datax/PLSQL-JSON@9116883
fb-datax/PLSQL-JSON@f1b36e7

Update: Proposed fix does only works for root node

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions