Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
d2460ac7
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看板
未验证
提交
d2460ac7
编写于
3月 15, 2022
作者:
S
shenglian-zhou
提交者:
GitHub
3月 15, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #10756 from taosdata/feature/TD-5902
[TD-5902]<enhance>: Support rcf3339 format timestamp in tag
上级
60a8ad5f
f0f5ef41
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
111 addition
and
0 deletion
+111
-0
tests/develop-test/2-query/TD-5902.py
tests/develop-test/2-query/TD-5902.py
+110
-0
tests/parallel_test/cases.task
tests/parallel_test/cases.task
+1
-0
未找到文件。
tests/develop-test/2-query/TD-5902.py
0 → 100644
浏览文件 @
d2460ac7
###################################################################
# Copyright (c) 2021 by TAOS Technologies, Inc.
# All rights reserved.
#
# This file is proprietary and confidential to TAOS Technologies.
# No part of this file may be reproduced, stored, transmitted,
# disclosed or used in any form or by any means other than as
# expressly provided by the written permission from Jianhui Tao
#
###################################################################
# -*- coding: utf-8 -*-
import
sys
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
class
TDTestCase
:
def
caseDescription
(
self
):
'''
case1<ganlin zhao>: [TD-5902] [Improvement] Support rcf3339 format timestamp in tag
'''
return
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
self
.
_conn
=
conn
def
run
(
self
):
print
(
"running {}"
.
format
(
__file__
))
tdSql
.
execute
(
"drop database if exists db"
)
tdSql
.
execute
(
"create database if not exists db"
)
tdSql
.
execute
(
'use db'
)
tdSql
.
execute
(
'create stable stb(ts timestamp , c0 int) tags (t0 timestamp)'
)
#create using stb tags
tdSql
.
execute
(
'create table ctb1 using stb tags("2020-02-02T02:00:00")'
)
tdSql
.
query
(
'select t0 from ctb1'
);
res
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
str
(
res
),
"2020-02-02 02:00:00"
)
tdSql
.
execute
(
'create table ctb2 using stb tags("2020-02-02T02:00:00+0700")'
)
tdSql
.
query
(
'select t0 from ctb2'
);
res
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
str
(
res
),
"2020-02-02 03:00:00"
)
tdSql
.
execute
(
'create table ctb3 using stb tags("2020-02-02T02:00:00+07:00")'
)
tdSql
.
query
(
'select t0 from ctb3'
);
res
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
str
(
res
),
"2020-02-02 03:00:00"
)
tdSql
.
execute
(
'create table ctb4 using stb tags("2020-02-02T02:00:00-0800")'
)
tdSql
.
query
(
'select t0 from ctb4'
);
res
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
str
(
res
),
"2020-02-02 18:00:00"
)
tdSql
.
execute
(
'create table ctb5 using stb tags("2020-02-02T02:00:00-08:00")'
)
tdSql
.
query
(
'select t0 from ctb5'
);
res
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
str
(
res
),
"2020-02-02 18:00:00"
)
tdSql
.
execute
(
'create table ctb6 using stb tags("2020-02-02T02:00:00Z")'
)
tdSql
.
query
(
'select t0 from ctb6'
);
res
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
str
(
res
),
"2020-02-02 10:00:00"
)
#insert using stb tags
tdSql
.
execute
(
'insert into ctb7 using stb tags("2020-02-02T02:00:00") values (now, 1)'
)
tdSql
.
query
(
'select t0 from ctb7'
);
res
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
str
(
res
),
"2020-02-02 02:00:00"
)
tdSql
.
execute
(
'insert into ctb8 using stb tags("2020-02-02T02:00:00+0700") values (now, 1)'
)
tdSql
.
query
(
'select t0 from ctb8'
);
res
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
str
(
res
),
"2020-02-02 03:00:00"
)
tdSql
.
execute
(
'insert into ctb9 using stb tags("2020-02-02T02:00:00+07:00") values (now, 1)'
)
tdSql
.
query
(
'select t0 from ctb9'
);
res
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
str
(
res
),
"2020-02-02 03:00:00"
)
tdSql
.
execute
(
'insert into ctb10 using stb tags("2020-02-02T02:00:00-0800") values (now, 1)'
)
tdSql
.
query
(
'select t0 from ctb10'
);
res
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
str
(
res
),
"2020-02-02 18:00:00"
)
tdSql
.
execute
(
'insert into ctb11 using stb tags("2020-02-02T02:00:00-08:00") values (now, 1)'
)
tdSql
.
query
(
'select t0 from ctb11'
);
res
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
str
(
res
),
"2020-02-02 18:00:00"
)
tdSql
.
execute
(
'insert into ctb12 using stb tags("2020-02-02T02:00:00Z") values (now, 1)'
)
tdSql
.
query
(
'select t0 from ctb12'
);
res
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
str
(
res
),
"2020-02-02 10:00:00"
)
tdSql
.
execute
(
'drop database db'
)
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
tests/parallel_test/cases.task
浏览文件 @
d2460ac7
...
...
@@ -788,6 +788,7 @@
3,,pytest,python3 test.py -f tag_lite/binary.py
3,,pytest,python3 test.py -f query/filterAllIntTypes.py
3,,develop-test,python3 ./test.py -f 2-query/ts_hidden_column.py
3,,develop-test,python3 ./test.py -f 2-query/TD-5902.py
3,,script,eval sh -c \"if [ `uname -m` != aarch64 ]; then ./test.sh -f general/compute/scalar_triangle.sim; fi\"
3,,script,./test.sh -f general/compute/scalar_str_concat_len.sim
3,,develop-test,python3 ./test.py -f 2-query/function_tail.py
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录