Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
8d932d2b
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看板
未验证
提交
8d932d2b
编写于
4月 04, 2020
作者:
S
slguan
提交者:
GitHub
4月 04, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1517 from taosdata/feature/query
[TD-98]
上级
ed596901
b9ebb7d3
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
6 addition
and
61 deletion
+6
-61
src/client/src/tscParseInsert.c
src/client/src/tscParseInsert.c
+6
-56
src/client/src/tscSql.c
src/client/src/tscSql.c
+0
-5
未找到文件。
src/client/src/tscParseInsert.c
浏览文件 @
8d932d2b
...
...
@@ -1291,7 +1291,7 @@ int tsParseInsertSql(SSqlObj *pSql) {
return
doParseInsertSql
(
pSql
,
pSql
->
sqlstr
+
index
);
}
int
tsParseSql
(
SSqlObj
*
pSql
,
bool
initalParse
)
{
int
tsParseSql
(
SSqlObj
*
pSql
,
bool
init
i
alParse
)
{
int32_t
ret
=
TSDB_CODE_SUCCESS
;
tscTrace
(
"continue parse sql: %s"
,
pSql
->
asyncTblPos
);
...
...
@@ -1301,10 +1301,11 @@ int tsParseSql(SSqlObj *pSql, bool initalParse) {
* Set the fp before parse the sql string, in case of getmetermeta failed, in which
* the error handle callback function can rightfully restore the user defined function (fp)
*/
if
(
pSql
->
fp
!=
NULL
&&
init
alParse
)
{
pSql
->
fetchFp
=
pSql
->
fp
;
if
(
initi
alParse
)
{
tscFreeSqlCmdData
(
&
pSql
->
cmd
)
;
// replace user defined callback function with multi-insert proxy function
pSql
->
fetchFp
=
pSql
->
fp
;
pSql
->
fp
=
(
void
(
*
)())
tscHandleMultivnodeInsert
;
}
...
...
@@ -1315,7 +1316,7 @@ int tsParseSql(SSqlObj *pSql, bool initalParse) {
return
ret
;
}
if
(
initalParse
)
{
if
(
init
i
alParse
)
{
tscFreeSqlCmdData
(
&
pSql
->
cmd
);
}
...
...
@@ -1449,57 +1450,6 @@ static int tscInsertDataFromFile(SSqlObj *pSql, FILE *fp, char *tmpTokenBuf) {
return
numOfRows
;
}
/* multi-vnodes insertion in sync query model
*
* modify history
* 2019.05.10 lihui
* Remove the code for importing records from files
*/
void
tscProcessMultiVnodesInsert
(
SSqlObj
*
pSql
)
{
SSqlCmd
*
pCmd
=
&
pSql
->
cmd
;
// not insert/import, return directly
if
(
pCmd
->
command
!=
TSDB_SQL_INSERT
)
{
return
;
}
// SSqlCmd may have been released
if
(
pCmd
->
pDataBlocks
==
NULL
)
{
return
;
}
STableDataBlocks
*
pDataBlock
=
NULL
;
STableMetaInfo
*
pTableMetaInfo
=
tscGetTableMetaInfoFromCmd
(
pCmd
,
pCmd
->
clauseIndex
,
0
);
assert
(
pCmd
->
numOfClause
==
1
);
int32_t
code
=
TSDB_CODE_SUCCESS
;
/* the first block has been sent to server in processSQL function */
assert
(
pTableMetaInfo
->
vnodeIndex
>=
1
&&
pCmd
->
pDataBlocks
!=
NULL
);
if
(
pTableMetaInfo
->
vnodeIndex
<
pCmd
->
pDataBlocks
->
nSize
)
{
SDataBlockList
*
pDataBlocks
=
pCmd
->
pDataBlocks
;
for
(
int32_t
i
=
pTableMetaInfo
->
vnodeIndex
;
i
<
pDataBlocks
->
nSize
;
++
i
)
{
pDataBlock
=
pDataBlocks
->
pData
[
i
];
if
(
pDataBlock
==
NULL
)
{
continue
;
}
if
((
code
=
tscCopyDataBlockToPayload
(
pSql
,
pDataBlock
))
!=
TSDB_CODE_SUCCESS
)
{
tscTrace
(
"%p build submit data block failed, vnodeIdx:%d, total:%d"
,
pSql
,
pTableMetaInfo
->
vnodeIndex
,
pDataBlocks
->
nSize
);
continue
;
}
tscProcessSql
(
pSql
);
}
}
// all data have been submit to vnode, release data blocks
pCmd
->
pDataBlocks
=
tscDestroyBlockArrayList
(
pCmd
->
pDataBlocks
);
}
// multi-vnodes insertion in sync query model
void
tscProcessMultiVnodesInsertFromFile
(
SSqlObj
*
pSql
)
{
SSqlCmd
*
pCmd
=
&
pSql
->
cmd
;
...
...
src/client/src/tscSql.c
浏览文件 @
8d932d2b
...
...
@@ -297,11 +297,6 @@ int taos_query(TAOS *taos, const char *sqlstr) {
// wait for the callback function to post the semaphore
sem_wait
(
&
pSql
->
rspSem
);
if
(
pSql
->
res
.
code
!=
TSDB_CODE_SUCCESS
)
{
tscFreeSqlCmdData
(
&
pSql
->
cmd
);
}
return
pSql
->
res
.
code
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录