/ SetJpath: set and parse the json path. */ /
| 175 | /* SetJpath: set and parse the json path. */ |
| 176 | /*********************************************************************************/ |
| 177 | my_bool BJNX::SetJpath(PGLOBAL g, char* path, my_bool jb) |
| 178 | { |
| 179 | // Check Value was allocated |
| 180 | if (Value) |
| 181 | Value->SetNullable(true); |
| 182 | |
| 183 | Jpath = path; |
| 184 | |
| 185 | // Parse the json path |
| 186 | Parsed = false; |
| 187 | Nod = 0; |
| 188 | Jb = jb; |
| 189 | return ParseJpath(g); |
| 190 | } // end of SetJpath |
| 191 | |
| 192 | /*********************************************************************************/ |
| 193 | /* Analyse array processing options. */ |
no test coverage detected