Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
2b99aa16
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
2b99aa16
编写于
7月 26, 2021
作者:
H
Haojun Liao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[td-225]fix bug found by regression test.
上级
cbbb0593
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
32 addition
and
5 deletion
+32
-5
src/client/src/tscServer.c
src/client/src/tscServer.c
+30
-3
src/inc/taosmsg.h
src/inc/taosmsg.h
+1
-1
tests/examples/c/apitest.c
tests/examples/c/apitest.c
+1
-1
未找到文件。
src/client/src/tscServer.c
浏览文件 @
2b99aa16
...
...
@@ -2337,14 +2337,18 @@ int tscProcessSTableVgroupRsp(SSqlObj *pSql) {
SSqlCmd
*
pCmd
=
&
parent
->
cmd
;
SQueryInfo
*
pQueryInfo
=
tscGetQueryInfo
(
pCmd
);
char
fName
[
TSDB_TABLE_FNAME_LEN
]
=
{
0
};
for
(
int32_t
i
=
0
;
i
<
pStableVgroup
->
numOfTables
;
++
i
)
{
char
*
name
=
pMsg
;
pMsg
+=
TSDB_TABLE_NAME_LEN
;
pMsg
+=
TSDB_TABLE_
F
NAME_LEN
;
STableMetaInfo
*
pInfo
=
NULL
;
for
(
int32_t
j
=
0
;
j
<
pQueryInfo
->
numOfTables
;
++
j
)
{
STableMetaInfo
*
pInfo1
=
tscGetTableMetaInfoFromCmd
(
pCmd
,
j
);
if
(
strcmp
(
name
,
tNameGetTableName
(
&
pInfo1
->
name
))
!=
0
)
{
memset
(
fName
,
0
,
tListLen
(
fName
));
tNameExtractFullName
(
&
pInfo1
->
name
,
fName
);
if
(
strcmp
(
name
,
fName
)
!=
0
)
{
continue
;
}
...
...
@@ -2504,11 +2508,14 @@ int tscProcessUseDbRsp(SSqlObj *pSql) {
return
ret
;
}
//todo only invalid the buffered data that belongs to dropped databases
int
tscProcessDropDbRsp
(
SSqlObj
*
pSql
)
{
//TODO LOCK DB WHEN MODIFY IT
//pSql->pTscObj->db[0] = 0;
taosHashClear
(
tscTableMetaMap
);
taosHashClear
(
tscVgroupMap
);
taosCacheEmpty
(
tscVgroupListBuf
);
return
0
;
}
...
...
@@ -2892,6 +2899,10 @@ int32_t tscGetUdfFromNode(SSqlObj *pSql, SQueryInfo* pQueryInfo) {
return
code
;
}
static
void
freeElem
(
void
*
p
)
{
tfree
(
*
(
char
**
)
p
);
}
/**
* retrieve table meta from mnode, and then update the local table meta hashmap.
* @param pSql sql object
...
...
@@ -2921,7 +2932,23 @@ int tscRenewTableMeta(SSqlObj *pSql, int32_t tableIndex) {
size_t
len
=
strlen
(
name
);
taosHashRemove
(
tscTableMetaMap
,
name
,
len
);
return
getTableMetaFromMnode
(
pSql
,
pTableMetaInfo
,
false
);
if
(
pTableMeta
->
tableType
==
TSDB_SUPER_TABLE
)
{
void
*
pv
=
taosCacheAcquireByKey
(
tscVgroupListBuf
,
name
,
len
);
if
(
pv
!=
NULL
)
{
taosCacheRelease
(
tscVgroupListBuf
,
&
pv
,
true
);
}
}
SArray
*
pNameList
=
taosArrayInit
(
1
,
POINTER_BYTES
);
SArray
*
vgroupList
=
taosArrayInit
(
1
,
POINTER_BYTES
);
char
*
n
=
strdup
(
name
);
taosArrayPush
(
pNameList
,
&
n
);
code
=
getMultiTableMetaFromMnode
(
pSql
,
pNameList
,
vgroupList
,
NULL
,
tscTableMetaCallBack
,
true
);
taosArrayDestroyEx
(
pNameList
,
freeElem
);
taosArrayDestroyEx
(
vgroupList
,
freeElem
);
return
code
;
}
static
bool
allVgroupInfoRetrieved
(
SQueryInfo
*
pQueryInfo
)
{
...
...
src/inc/taosmsg.h
浏览文件 @
2b99aa16
...
...
@@ -809,7 +809,7 @@ typedef struct SMultiTableMeta {
int32_t
contLen
;
uint8_t
compressed
;
// denote if compressed or not
uint32_t
rawLen
;
// size before compress
uint8_t
metaClone
;
// make meta clone after retrieve meta from mnode
uint8_t
metaClone
;
// make meta clone after retrieve meta from mnode
char
meta
[];
}
SMultiTableMeta
;
...
...
tests/examples/c/apitest.c
浏览文件 @
2b99aa16
...
...
@@ -1009,7 +1009,7 @@ int main(int argc, char *argv[]) {
info
=
taos_get_client_info
(
taos
);
printf
(
"client info: %s
\n
"
,
info
);
printf
(
"************ verify s
hema
less *************
\n
"
);
printf
(
"************ verify s
chema-
less *************
\n
"
);
verify_schema_less
(
taos
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录