Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
ff25ab6b
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看板
提交
ff25ab6b
编写于
6月 17, 2020
作者:
B
Bomin Zhang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix TD-645, TD-660
上级
d1417b88
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
28 addition
and
9 deletion
+28
-9
src/cq/src/cqMain.c
src/cq/src/cqMain.c
+20
-1
src/inc/taos.h
src/inc/taos.h
+1
-1
tests/script/general/parser/alter.sim
tests/script/general/parser/alter.sim
+7
-7
未找到文件。
src/cq/src/cqMain.c
浏览文件 @
ff25ab6b
...
...
@@ -256,11 +256,30 @@ static void cqProcessStreamRes(void *param, TAOS_RES *tres, TAOS_ROW row) {
SDataRow
trow
=
(
SDataRow
)
pBlk
->
data
;
tdInitDataRow
(
trow
,
pSchema
);
union
{
char
buf
[
sizeof
(
int64_t
)];
tstr
str
;
}
nullVal
;
for
(
int32_t
i
=
0
;
i
<
pSchema
->
numOfCols
;
i
++
)
{
STColumn
*
c
=
pSchema
->
columns
+
i
;
char
*
val
=
(
char
*
)
row
[
i
];
if
(
IS_VAR_DATA_TYPE
(
c
->
type
))
{
val
-=
sizeof
(
VarDataLenT
);
if
(
val
==
NULL
)
{
val
=
nullVal
.
buf
;
if
(
c
->
type
==
TSDB_DATA_TYPE_BINARY
)
{
setNull
(
nullVal
.
str
.
data
,
TSDB_DATA_TYPE_BINARY
,
1
);
nullVal
.
str
.
len
=
1
;
}
else
{
setNull
(
nullVal
.
str
.
data
,
TSDB_DATA_TYPE_NCHAR
,
4
);
nullVal
.
str
.
len
=
4
;
}
}
else
{
val
-=
sizeof
(
VarDataLenT
);
}
}
else
if
(
val
==
NULL
)
{
val
=
nullVal
.
buf
;
setNull
(
val
,
c
->
type
,
c
->
bytes
);
}
tdAppendColVal
(
trow
,
val
,
c
->
type
,
c
->
bytes
,
c
->
offset
);
}
...
...
src/inc/taos.h
浏览文件 @
ff25ab6b
...
...
@@ -55,7 +55,7 @@ typedef enum {
typedef
struct
taosField
{
char
name
[
65
];
uint8_t
type
;
short
bytes
;
uint16_t
bytes
;
}
TAOS_FIELD
;
#ifdef _TD_GO_DLL_
...
...
tests/script/general/parser/alter.sim
浏览文件 @
ff25ab6b
...
...
@@ -137,7 +137,7 @@ sleep 6000
sql insert into tb1 values (now, 2, 'taos')
sleep 3000
sql select * from strm
if $rows !=
1
then
if $rows !=
2
then
return -1
endi
if $data04 != 1 then
...
...
@@ -148,7 +148,7 @@ sleep 6000
sql insert into tb1 values (now, 3, 'taos', 3);
sleep 3000
sql select * from strm
if $rows !=
1
then
if $rows !=
3
then
return -1
endi
if $data04 != 1 then
...
...
@@ -188,9 +188,9 @@ sql create table tb using mt tags(1)
sleep 3000
sql insert into tb values ('2018-11-01 16:30:00.000', 1, 'insert', 1)
sql alter table mt drop column c3
# the below query should be deleted after bug fix
sql insert into tb values ('2018-11-01 16:29:59.000', 1, 'insert')
sql
_error
import into tb values ('2018-11-01 16:29:59.000', 1, 'import')
sql import into tb values ('2018-11-01 16:29:59.000', 1, 'import')
sql select * from tb order by ts desc
if $data01 != 1 then
return -1
...
...
@@ -203,13 +203,13 @@ sql select * from tb order by ts desc
if $data03 != NULL then
return -1
endi
# the query below should be deleted after bug fix
sql reset query cache
sql insert into tb values ('2018-11-01 16:29:58.000', 2, 'import', 3)
sql
_error
import into tb values ('2018-11-01 16:29:58.000', 2, 'import', 3)
sql import into tb values ('2018-11-01 16:29:58.000', 2, 'import', 3)
sql import into tb values ('2018-11-01 16:39:58.000', 2, 'import', 3)
sql select * from tb order by ts desc
if $rows !=
2
then
if $rows !=
4
then
return -1
endi
if $data03 != 3 then
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录