Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
c330588d
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
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看板
提交
c330588d
编写于
2月 03, 2023
作者:
wmmhello
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:error in subscribe table for taosx
上级
c576d1fa
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
7 addition
and
7 deletion
+7
-7
source/client/src/clientRawBlockWrite.c
source/client/src/clientRawBlockWrite.c
+1
-1
source/dnode/mnode/impl/src/mndStb.c
source/dnode/mnode/impl/src/mndStb.c
+2
-3
tests/system-test/7-tmq/tmq_taosx.py
tests/system-test/7-tmq/tmq_taosx.py
+2
-2
utils/test/c/tmq_taosx_ci.c
utils/test/c/tmq_taosx_ci.c
+2
-1
未找到文件。
source/client/src/clientRawBlockWrite.c
浏览文件 @
c330588d
...
...
@@ -1126,7 +1126,7 @@ static int32_t taosDeleteData(TAOS* taos, void* meta, int32_t metaLen) {
TAOS_RES
*
res
=
taos_query
(
taos
,
sql
);
SRequestObj
*
pRequest
=
(
SRequestObj
*
)
res
;
code
=
pRequest
->
code
;
if
(
code
==
TSDB_CODE_PAR_TABLE_NOT_EXIST
)
{
if
(
code
==
TSDB_CODE_PAR_TABLE_NOT_EXIST
||
code
==
TSDB_CODE_PAR_GET_META_ERROR
)
{
code
=
TSDB_CODE_SUCCESS
;
}
taos_free_result
(
res
);
...
...
source/dnode/mnode/impl/src/mndStb.c
浏览文件 @
c330588d
...
...
@@ -971,9 +971,8 @@ static int32_t mndProcessCreateStbReq(SRpcMsg *pReq) {
code
=
0
;
goto
_OVER
;
}
else
if
(
pStb
->
uid
!=
createReq
.
suid
)
{
mError
(
"stb:%s, already exist while create, input suid:%"
PRId64
" not match with exist suid:%"
PRId64
,
createReq
.
name
,
createReq
.
suid
,
pStb
->
uid
);
terrno
=
TSDB_CODE_MND_STABLE_UID_NOT_MATCH
;
mInfo
(
"stb:%s, alter table does not need to be done, because table is deleted"
,
createReq
.
name
);
code
=
0
;
goto
_OVER
;
}
else
if
(
createReq
.
tagVer
>
0
||
createReq
.
colVer
>
0
)
{
int32_t
tagDelta
=
createReq
.
tagVer
-
pStb
->
tagVer
;
...
...
tests/system-test/7-tmq/tmq_taosx.py
浏览文件 @
c330588d
...
...
@@ -43,7 +43,7 @@ class TDTestCase:
tdSql
.
execute
(
'use db_taosx'
)
tdSql
.
query
(
"show tables"
)
if
drop
:
tdSql
.
checkRows
(
1
0
)
tdSql
.
checkRows
(
1
1
)
else
:
tdSql
.
checkRows
(
16
)
tdSql
.
query
(
"select * from jt order by i"
)
...
...
@@ -74,7 +74,7 @@ class TDTestCase:
tdSql
.
execute
(
'use abc1'
)
tdSql
.
query
(
"show tables"
)
if
drop
:
tdSql
.
checkRows
(
1
0
)
tdSql
.
checkRows
(
1
1
)
else
:
tdSql
.
checkRows
(
16
)
tdSql
.
query
(
"select * from jt order by i"
)
...
...
utils/test/c/tmq_taosx_ci.c
浏览文件 @
c330588d
...
...
@@ -70,8 +70,9 @@ static void msg_process(TAOS_RES* msg) {
tmq_get_raw
(
msg
,
&
raw
);
printf
(
"write raw data type: %d
\n
"
,
raw
.
raw_type
);
int32_t
ret
=
tmq_write_raw
(
pConn
,
raw
);
ASSERT
(
ret
==
0
);
printf
(
"write raw data: %s
\n
"
,
tmq_err2str
(
ret
));
ASSERT
(
ret
==
0
);
tmq_free_raw
(
raw
);
taos_close
(
pConn
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录