From 31c05eddfdb2859d5d1dbfe7a1e2a1be19131fc3 Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Wed, 27 Jan 2016 00:16:41 +0100 Subject: [PATCH] frontend/query: Add the DATA type to TIMESERIES replies. This was lost in 9a96acd759c31211aa512e174339a9c178c4eb83. --- src/frontend/query.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontend/query.c b/src/frontend/query.c index 2e28324..f8d6a1f 100644 --- a/src/frontend/query.c +++ b/src/frontend/query.c @@ -249,6 +249,8 @@ exec_timeseries(sdb_ast_timeseries_t *ts, sdb_strbuf_t *buf, sdb_strbuf_t *errbu if (status >= 0) { series = sdb_plugin_fetch_timeseries(st.type, st.id, &opts); if (series) { + uint32_t res_type = htonl(SDB_CONNECTION_TIMESERIES); + sdb_strbuf_memcpy(buf, &res_type, sizeof(res_type)); sdb_timeseries_tojson(series, buf); sdb_timeseries_destroy(series); } -- 2.30.2