Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
4a085db9
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1185
Star
22015
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
4a085db9
编写于
3月 29, 2023
作者:
X
Xiaoyu Wang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: hotfix version compatibility
上级
dfcee117
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
15 addition
and
10 deletion
+15
-10
source/client/src/clientMsgHandler.c
source/client/src/clientMsgHandler.c
+2
-2
source/dnode/mnode/impl/src/mndProfile.c
source/dnode/mnode/impl/src/mndProfile.c
+1
-1
source/util/src/tversion.c
source/util/src/tversion.c
+12
-7
未找到文件。
source/client/src/clientMsgHandler.c
浏览文件 @
4a085db9
...
@@ -76,7 +76,7 @@ int32_t processConnectRsp(void* param, SDataBuf* pMsg, int32_t code) {
...
@@ -76,7 +76,7 @@ int32_t processConnectRsp(void* param, SDataBuf* pMsg, int32_t code) {
goto
End
;
goto
End
;
}
}
if
((
code
=
taosCheckVersionCompatibleFromStr
(
version
,
connectRsp
.
sVer
,
2
))
!=
0
)
{
if
((
code
=
taosCheckVersionCompatibleFromStr
(
version
,
connectRsp
.
sVer
,
3
))
!=
0
)
{
setErrno
(
pRequest
,
code
);
setErrno
(
pRequest
,
code
);
tsem_post
(
&
pRequest
->
body
.
rspSem
);
tsem_post
(
&
pRequest
->
body
.
rspSem
);
goto
End
;
goto
End
;
...
@@ -506,7 +506,7 @@ int32_t processShowVariablesRsp(void* param, SDataBuf* pMsg, int32_t code) {
...
@@ -506,7 +506,7 @@ int32_t processShowVariablesRsp(void* param, SDataBuf* pMsg, int32_t code) {
code
=
setQueryResultFromRsp
(
&
pRequest
->
body
.
resInfo
,
pRes
,
false
,
true
);
code
=
setQueryResultFromRsp
(
&
pRequest
->
body
.
resInfo
,
pRes
,
false
,
true
);
}
}
if
(
code
!=
0
)
{
if
(
code
!=
0
)
{
taosMemoryFree
(
pRes
);
taosMemoryFree
(
pRes
);
}
}
tFreeSShowVariablesRsp
(
&
rsp
);
tFreeSShowVariablesRsp
(
&
rsp
);
...
...
source/dnode/mnode/impl/src/mndProfile.c
浏览文件 @
4a085db9
...
@@ -226,7 +226,7 @@ static int32_t mndProcessConnectReq(SRpcMsg *pReq) {
...
@@ -226,7 +226,7 @@ static int32_t mndProcessConnectReq(SRpcMsg *pReq) {
goto
_OVER
;
goto
_OVER
;
}
}
if
((
code
=
taosCheckVersionCompatibleFromStr
(
connReq
.
sVer
,
version
,
2
))
!=
0
)
{
if
((
code
=
taosCheckVersionCompatibleFromStr
(
connReq
.
sVer
,
version
,
3
))
!=
0
)
{
terrno
=
code
;
terrno
=
code
;
goto
_OVER
;
goto
_OVER
;
}
}
...
...
source/util/src/tversion.c
浏览文件 @
4a085db9
...
@@ -26,8 +26,9 @@ int32_t taosVersionStrToInt(const char *vstr, int32_t *vint) {
...
@@ -26,8 +26,9 @@ int32_t taosVersionStrToInt(const char *vstr, int32_t *vint) {
int32_t
vnum
[
4
]
=
{
0
};
int32_t
vnum
[
4
]
=
{
0
};
int32_t
len
=
strlen
(
vstr
);
int32_t
len
=
strlen
(
vstr
);
char
tmp
[
16
]
=
{
0
};
char
tmp
[
16
]
=
{
0
};
int32_t
vpos
=
0
;
for
(
int32_t
spos
=
0
,
tpos
=
0
,
vpos
=
0
;
spos
<
len
&&
vpos
<
4
;
++
spos
)
{
for
(
int32_t
spos
=
0
,
tpos
=
0
;
spos
<
len
&&
vpos
<
4
;
++
spos
)
{
if
(
vstr
[
spos
]
!=
'.'
)
{
if
(
vstr
[
spos
]
!=
'.'
)
{
tmp
[
spos
-
tpos
]
=
vstr
[
spos
];
tmp
[
spos
-
tpos
]
=
vstr
[
spos
];
}
else
{
}
else
{
...
@@ -38,6 +39,10 @@ int32_t taosVersionStrToInt(const char *vstr, int32_t *vint) {
...
@@ -38,6 +39,10 @@ int32_t taosVersionStrToInt(const char *vstr, int32_t *vint) {
}
}
}
}
if
(
'\0'
!=
tmp
[
0
]
&&
vpos
<
4
)
{
vnum
[
vpos
]
=
atoi
(
tmp
);
}
if
(
vnum
[
0
]
<=
0
)
{
if
(
vnum
[
0
]
<=
0
)
{
terrno
=
TSDB_CODE_INVALID_VERSION_STRING
;
terrno
=
TSDB_CODE_INVALID_VERSION_STRING
;
return
-
1
;
return
-
1
;
...
@@ -66,16 +71,16 @@ int32_t taosCheckVersionCompatible(int32_t clientVer, int32_t serverVer, int32_t
...
@@ -66,16 +71,16 @@ int32_t taosCheckVersionCompatible(int32_t clientVer, int32_t serverVer, int32_t
case
4
:
case
4
:
break
;
break
;
case
3
:
case
3
:
clientVer
%
=
100
;
clientVer
/
=
100
;
serverVer
%
=
100
;
serverVer
/
=
100
;
break
;
break
;
case
2
:
case
2
:
clientVer
%
=
10000
;
clientVer
/
=
10000
;
serverVer
%
=
10000
;
serverVer
/
=
10000
;
break
;
break
;
case
1
:
case
1
:
clientVer
%
=
1000000
;
clientVer
/
=
1000000
;
serverVer
%
=
1000000
;
serverVer
/
=
1000000
;
break
;
break
;
default:
default:
terrno
=
TSDB_CODE_INVALID_VERSION_NUMBER
;
terrno
=
TSDB_CODE_INVALID_VERSION_NUMBER
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录