1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-09 14:21:03 +03:00

Report unknown JSONB element type when parsing JSONB into JsonNode.

FossilOrigin-Name: 1f4d3268257bda234c66c3767451b3d39d7b4c7c73a779ad396d9dfc5315905c
This commit is contained in:
drh
2023-10-07 09:13:59 +00:00
parent 11aa2adca3
commit 522e880bc2
3 changed files with 8 additions and 9 deletions

View File

@@ -3528,8 +3528,7 @@ static int jsonParseValueFromBlob(JsonParse *pParse, u32 i){
break;
}
default: {
pParse->nErr++;
break;
return -1;
}
}
return i+x+sz;