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

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


The following commit(s) were added to refs/heads/master by this push:
     new 5602d0ea51 Fix C++ client compile error (#8973)
5602d0ea51 is described below

commit 5602d0ea51780000301930ba9b52a7bea66995c4
Author: Haonan <[email protected]>
AuthorDate: Fri Feb 3 17:20:49 2023 +0800

    Fix C++ client compile error (#8973)
---
 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";

Reply via email to