Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
LemonLiTree committed Dec 15, 2023
1 parent 81f9039 commit 737d3cb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions be/src/util/jsonb_document.h
Original file line number Diff line number Diff line change
Expand Up @@ -1573,8 +1573,9 @@ inline bool JsonbPath::parse_member(Stream* stream, JsonbPath* path) {
stream->skip(1);
stream->add_leg_len();
stream->set_has_escapes(true);
if (stream->exhausted()) { return false;
}
if (stream->exhausted()) {
return false;
}
continue;
} else if (stream->peek() == DOUBLE_QUOTE) {
if (left_quotation_marks == nullptr) {
Expand Down

0 comments on commit 737d3cb

Please sign in to comment.