Skip to content

Commit

Permalink
Merge pull request #871 from fengzeroz/v2.2
Browse files Browse the repository at this point in the history
fix(ekuiper): float/double precision
  • Loading branch information
fengzeroz authored Oct 28, 2022
2 parents 77ce24a + 1bca0ac commit 3773949
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions plugins/ekuiper/json_rw.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,10 @@ int json_encode_read_resp_tags(void *json_object, void *param)
}

neu_json_elem_t tag_elem = {
.name = json_tag.name,
.t = json_tag.t,
.v = json_tag.value,
.name = json_tag.name,
.t = json_tag.t,
.v = json_tag.value,
.precision = trans_data->tags[i].value.precision,
};

ret = neu_json_encode_field((0 != json_tag.error) ? errors_object
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.6
2.2.7

0 comments on commit 3773949

Please sign in to comment.