You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2023/02/03 07:32:54 UTC

[iotdb] branch HTHou-patch-1 created (now a2cf8335d8)

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

haonan pushed a change to branch HTHou-patch-1
in repository https://gitbox.apache.org/repos/asf/iotdb.git


      at a2cf8335d8 Fix C++ client compile error

This branch includes the following new commits:

     new a2cf8335d8 Fix C++ client compile error

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 C++ client compile error

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

haonan pushed a commit to branch HTHou-patch-1
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit a2cf8335d8904651244e0ca36f40fba2ce47ea32
Author: Haonan <hh...@outlook.com>
AuthorDate: Fri Feb 3 15:32:48 2023 +0800

    Fix C++ client compile error
---
 client-cpp/src/main/Session.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/client-cpp/src/main/Session.cpp b/client-cpp/src/main/Session.cpp
index 96a7c62bbe..29968b26b4 100644
--- a/client-cpp/src/main/Session.cpp
+++ b/client-cpp/src/main/Session.cpp
@@ -793,7 +793,7 @@ string Session::getVersionString(Version::Version version) {
             return "V_0_12";
         case Version::V_0_13:
             return "V_0_13";
-        case Version::V_1_0,
+        case Version::V_1_0:
             return "V_1_0";
         default:
             return "V_0_12";