You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ta...@apache.org on 2021/03/29 08:42:46 UTC

[iotdb] branch fix_show_remote_timeseries_serialization created (now 51815f8)

This is an automated email from the ASF dual-hosted git repository.

tanxinyu pushed a change to branch fix_show_remote_timeseries_serialization
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


      at 51815f8  fix

This branch includes the following new commits:

     new 51815f8  fix

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[iotdb] 01/01: fix

Posted by ta...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tanxinyu pushed a commit to branch fix_show_remote_timeseries_serialization
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 51815f875d6109e0c7ed1e22d8da6c243d7e083d
Author: LebronAl <TX...@gmail.com>
AuthorDate: Mon Mar 29 16:41:59 2021 +0800

    fix
---
 .../java/org/apache/iotdb/db/query/dataset/ShowTimeSeriesResult.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/query/dataset/ShowTimeSeriesResult.java b/server/src/main/java/org/apache/iotdb/db/query/dataset/ShowTimeSeriesResult.java
index d1fec90..e202d58 100644
--- a/server/src/main/java/org/apache/iotdb/db/query/dataset/ShowTimeSeriesResult.java
+++ b/server/src/main/java/org/apache/iotdb/db/query/dataset/ShowTimeSeriesResult.java
@@ -107,7 +107,7 @@ public class ShowTimeSeriesResult extends ShowResult {
       throws IOException {
     ReadWriteIOUtils.write(param != null, outputStream);
     if (param != null) {
-      ReadWriteIOUtils.write(tags.size(), outputStream);
+      ReadWriteIOUtils.write(param.size(), outputStream);
       for (Entry<String, String> entry : param.entrySet()) {
         ReadWriteIOUtils.write(entry.getKey(), outputStream);
         ReadWriteIOUtils.write(entry.getValue(), outputStream);