Skip to content

Commit

Permalink
Update be/src/util/jsonb_document.h
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
yiguolei and github-actions[bot] authored Dec 14, 2023
1 parent 9a619b6 commit 81f9039
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion be/src/util/jsonb_document.h
Original file line number Diff line number Diff line change
Expand Up @@ -1573,7 +1573,8 @@ 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 81f9039

Please sign in to comment.