Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
b5ab7eaf
TDengine
项目概览
taosdata
/
TDengine
大约 2 年 前同步成功
通知
1192
Star
22018
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
b5ab7eaf
编写于
11月 08, 2022
作者:
D
dapan1121
提交者:
GitHub
11月 08, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #17891 from taosdata/fix/TD-19906
fix(query): add mode with selectivity rows
上级
91e2a6b9
a635e658
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
240 addition
and
13 deletion
+240
-13
source/libs/function/src/builtins.c
source/libs/function/src/builtins.c
+1
-1
source/libs/function/src/builtinsimpl.c
source/libs/function/src/builtinsimpl.c
+26
-4
tests/system-test/0-others/udfTest.py
tests/system-test/0-others/udfTest.py
+0
-2
tests/system-test/0-others/udf_cfg2.py
tests/system-test/0-others/udf_cfg2.py
+0
-2
tests/system-test/0-others/udf_create.py
tests/system-test/0-others/udf_create.py
+0
-2
tests/system-test/0-others/udf_restart_taosd.py
tests/system-test/0-others/udf_restart_taosd.py
+0
-2
tests/system-test/2-query/mode.py
tests/system-test/2-query/mode.py
+208
-0
tests/system-test/fulltest.sh
tests/system-test/fulltest.sh
+5
-0
未找到文件。
source/libs/function/src/builtins.c
浏览文件 @
b5ab7eaf
...
@@ -2734,7 +2734,7 @@ const SBuiltinFuncDefinition funcMgtBuiltins[] = {
...
@@ -2734,7 +2734,7 @@ const SBuiltinFuncDefinition funcMgtBuiltins[] = {
{
{
.
name
=
"mode"
,
.
name
=
"mode"
,
.
type
=
FUNCTION_TYPE_MODE
,
.
type
=
FUNCTION_TYPE_MODE
,
.
classification
=
FUNC_MGT_AGG_FUNC
,
.
classification
=
FUNC_MGT_AGG_FUNC
|
FUNC_MGT_SELECT_FUNC
,
.
translateFunc
=
translateMode
,
.
translateFunc
=
translateMode
,
.
getEnvFunc
=
getModeFuncEnv
,
.
getEnvFunc
=
getModeFuncEnv
,
.
initFunc
=
modeFunctionSetup
,
.
initFunc
=
modeFunctionSetup
,
...
...
source/libs/function/src/builtinsimpl.c
浏览文件 @
b5ab7eaf
...
@@ -255,8 +255,9 @@ typedef struct SUniqueInfo {
...
@@ -255,8 +255,9 @@ typedef struct SUniqueInfo {
}
SUniqueInfo
;
}
SUniqueInfo
;
typedef
struct
SModeItem
{
typedef
struct
SModeItem
{
int64_t
count
;
int64_t
count
;
char
data
[];
STuplePos
tuplePos
;
char
data
[];
}
SModeItem
;
}
SModeItem
;
typedef
struct
SModeInfo
{
typedef
struct
SModeInfo
{
...
@@ -264,6 +265,10 @@ typedef struct SModeInfo {
...
@@ -264,6 +265,10 @@ typedef struct SModeInfo {
uint8_t
colType
;
uint8_t
colType
;
int16_t
colBytes
;
int16_t
colBytes
;
SHashObj
*
pHash
;
SHashObj
*
pHash
;
STuplePos
nullTuplePos
;
bool
nullTupleSaved
;
char
pItems
[];
char
pItems
[];
}
SModeInfo
;
}
SModeInfo
;
...
@@ -5391,10 +5396,13 @@ bool modeFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResInfo) {
...
@@ -5391,10 +5396,13 @@ bool modeFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResInfo) {
}
else
{
}
else
{
pInfo
->
pHash
=
taosHashInit
(
64
,
taosGetDefaultHashFunction
(
TSDB_DATA_TYPE_BINARY
),
true
,
HASH_NO_LOCK
);
pInfo
->
pHash
=
taosHashInit
(
64
,
taosGetDefaultHashFunction
(
TSDB_DATA_TYPE_BINARY
),
true
,
HASH_NO_LOCK
);
}
}
pInfo
->
nullTupleSaved
=
false
;
pInfo
->
nullTuplePos
.
pageId
=
-
1
;
return
true
;
return
true
;
}
}
static
void
doModeAdd
(
SModeInfo
*
pInfo
,
char
*
data
)
{
static
void
doModeAdd
(
SModeInfo
*
pInfo
,
int32_t
rowIndex
,
SqlFunctionCtx
*
pCtx
,
char
*
data
)
{
int32_t
hashKeyBytes
=
IS_STR_DATA_TYPE
(
pInfo
->
colType
)
?
varDataTLen
(
data
)
:
pInfo
->
colBytes
;
int32_t
hashKeyBytes
=
IS_STR_DATA_TYPE
(
pInfo
->
colType
)
?
varDataTLen
(
data
)
:
pInfo
->
colBytes
;
SModeItem
**
pHashItem
=
taosHashGet
(
pInfo
->
pHash
,
data
,
hashKeyBytes
);
SModeItem
**
pHashItem
=
taosHashGet
(
pInfo
->
pHash
,
data
,
hashKeyBytes
);
if
(
pHashItem
==
NULL
)
{
if
(
pHashItem
==
NULL
)
{
...
@@ -5403,10 +5411,17 @@ static void doModeAdd(SModeInfo* pInfo, char* data) {
...
@@ -5403,10 +5411,17 @@ static void doModeAdd(SModeInfo* pInfo, char* data) {
memcpy
(
pItem
->
data
,
data
,
hashKeyBytes
);
memcpy
(
pItem
->
data
,
data
,
hashKeyBytes
);
pItem
->
count
+=
1
;
pItem
->
count
+=
1
;
if
(
pCtx
->
subsidiaries
.
num
>
0
)
{
pItem
->
tuplePos
=
saveTupleData
(
pCtx
,
rowIndex
,
pCtx
->
pSrcBlock
,
NULL
);
}
taosHashPut
(
pInfo
->
pHash
,
data
,
hashKeyBytes
,
&
pItem
,
sizeof
(
SModeItem
*
));
taosHashPut
(
pInfo
->
pHash
,
data
,
hashKeyBytes
,
&
pItem
,
sizeof
(
SModeItem
*
));
pInfo
->
numOfPoints
++
;
pInfo
->
numOfPoints
++
;
}
else
{
}
else
{
(
*
pHashItem
)
->
count
+=
1
;
(
*
pHashItem
)
->
count
+=
1
;
if
(
pCtx
->
subsidiaries
.
num
>
0
)
{
updateTupleData
(
pCtx
,
rowIndex
,
pCtx
->
pSrcBlock
,
&
((
*
pHashItem
)
->
tuplePos
));
}
}
}
}
}
...
@@ -5428,7 +5443,7 @@ int32_t modeFunction(SqlFunctionCtx* pCtx) {
...
@@ -5428,7 +5443,7 @@ int32_t modeFunction(SqlFunctionCtx* pCtx) {
}
}
numOfElems
++
;
numOfElems
++
;
doModeAdd
(
pInfo
,
data
);
doModeAdd
(
pInfo
,
i
,
pCtx
,
data
);
if
(
sizeof
(
SModeInfo
)
+
pInfo
->
numOfPoints
*
(
sizeof
(
SModeItem
)
+
pInfo
->
colBytes
)
>=
MODE_MAX_RESULT_SIZE
)
{
if
(
sizeof
(
SModeInfo
)
+
pInfo
->
numOfPoints
*
(
sizeof
(
SModeItem
)
+
pInfo
->
colBytes
)
>=
MODE_MAX_RESULT_SIZE
)
{
taosHashCleanup
(
pInfo
->
pHash
);
taosHashCleanup
(
pInfo
->
pHash
);
...
@@ -5436,6 +5451,11 @@ int32_t modeFunction(SqlFunctionCtx* pCtx) {
...
@@ -5436,6 +5451,11 @@ int32_t modeFunction(SqlFunctionCtx* pCtx) {
}
}
}
}
if
(
numOfElems
==
0
&&
pCtx
->
subsidiaries
.
num
>
0
&&
!
pInfo
->
nullTupleSaved
)
{
pInfo
->
nullTuplePos
=
saveTupleData
(
pCtx
,
pInput
->
startRowIndex
,
pCtx
->
pSrcBlock
,
NULL
);
pInfo
->
nullTupleSaved
=
true
;
}
SET_VAL
(
pResInfo
,
numOfElems
,
1
);
SET_VAL
(
pResInfo
,
numOfElems
,
1
);
return
TSDB_CODE_SUCCESS
;
return
TSDB_CODE_SUCCESS
;
...
@@ -5461,8 +5481,10 @@ int32_t modeFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock) {
...
@@ -5461,8 +5481,10 @@ int32_t modeFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock) {
if
(
maxCount
!=
0
)
{
if
(
maxCount
!=
0
)
{
SModeItem
*
pResItem
=
(
SModeItem
*
)(
pInfo
->
pItems
+
resIndex
*
(
sizeof
(
SModeItem
)
+
pInfo
->
colBytes
));
SModeItem
*
pResItem
=
(
SModeItem
*
)(
pInfo
->
pItems
+
resIndex
*
(
sizeof
(
SModeItem
)
+
pInfo
->
colBytes
));
colDataAppend
(
pCol
,
currentRow
,
pResItem
->
data
,
false
);
colDataAppend
(
pCol
,
currentRow
,
pResItem
->
data
,
false
);
setSelectivityValue
(
pCtx
,
pBlock
,
&
pResItem
->
tuplePos
,
currentRow
);
}
else
{
}
else
{
colDataAppendNULL
(
pCol
,
currentRow
);
colDataAppendNULL
(
pCol
,
currentRow
);
setSelectivityValue
(
pCtx
,
pBlock
,
&
pInfo
->
nullTuplePos
,
currentRow
);
}
}
taosHashCleanup
(
pInfo
->
pHash
);
taosHashCleanup
(
pInfo
->
pHash
);
...
...
tests/system-test/0-others/udfTest.py
浏览文件 @
b5ab7eaf
...
@@ -280,7 +280,6 @@ class TDTestCase:
...
@@ -280,7 +280,6 @@ class TDTestCase:
tdSql
.
error
(
"select udf1(num1) , irate(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , irate(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , sum(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , sum(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , stddev(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , stddev(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , mode(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , HYPERLOGLOG(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , HYPERLOGLOG(num1) from tb;"
)
# stable
# stable
tdSql
.
error
(
"select udf1(c1) , count(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , count(c1) from stb1;"
)
...
@@ -289,7 +288,6 @@ class TDTestCase:
...
@@ -289,7 +288,6 @@ class TDTestCase:
tdSql
.
error
(
"select udf1(c1) , irate(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , irate(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , sum(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , sum(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , stddev(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , stddev(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , mode(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , HYPERLOGLOG(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , HYPERLOGLOG(c1) from stb1;"
)
# regular table with select functions
# regular table with select functions
...
...
tests/system-test/0-others/udf_cfg2.py
浏览文件 @
b5ab7eaf
...
@@ -282,7 +282,6 @@ class TDTestCase:
...
@@ -282,7 +282,6 @@ class TDTestCase:
tdSql
.
error
(
"select udf1(num1) , irate(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , irate(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , sum(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , sum(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , stddev(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , stddev(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , mode(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , HYPERLOGLOG(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , HYPERLOGLOG(num1) from tb;"
)
# stable
# stable
tdSql
.
error
(
"select udf1(c1) , count(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , count(c1) from stb1;"
)
...
@@ -291,7 +290,6 @@ class TDTestCase:
...
@@ -291,7 +290,6 @@ class TDTestCase:
tdSql
.
error
(
"select udf1(c1) , irate(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , irate(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , sum(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , sum(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , stddev(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , stddev(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , mode(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , HYPERLOGLOG(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , HYPERLOGLOG(c1) from stb1;"
)
# regular table with select functions
# regular table with select functions
...
...
tests/system-test/0-others/udf_create.py
浏览文件 @
b5ab7eaf
...
@@ -282,7 +282,6 @@ class TDTestCase:
...
@@ -282,7 +282,6 @@ class TDTestCase:
tdSql
.
error
(
"select udf1(num1) , irate(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , irate(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , sum(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , sum(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , stddev(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , stddev(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , mode(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , HYPERLOGLOG(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , HYPERLOGLOG(num1) from tb;"
)
# stable
# stable
tdSql
.
error
(
"select udf1(c1) , count(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , count(c1) from stb1;"
)
...
@@ -291,7 +290,6 @@ class TDTestCase:
...
@@ -291,7 +290,6 @@ class TDTestCase:
tdSql
.
error
(
"select udf1(c1) , irate(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , irate(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , sum(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , sum(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , stddev(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , stddev(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , mode(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , HYPERLOGLOG(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , HYPERLOGLOG(c1) from stb1;"
)
# regular table with select functions
# regular table with select functions
...
...
tests/system-test/0-others/udf_restart_taosd.py
浏览文件 @
b5ab7eaf
...
@@ -279,7 +279,6 @@ class TDTestCase:
...
@@ -279,7 +279,6 @@ class TDTestCase:
tdSql
.
error
(
"select udf1(num1) , irate(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , irate(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , sum(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , sum(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , stddev(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , stddev(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , mode(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , HYPERLOGLOG(num1) from tb;"
)
tdSql
.
error
(
"select udf1(num1) , HYPERLOGLOG(num1) from tb;"
)
# stable
# stable
tdSql
.
error
(
"select udf1(c1) , count(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , count(c1) from stb1;"
)
...
@@ -288,7 +287,6 @@ class TDTestCase:
...
@@ -288,7 +287,6 @@ class TDTestCase:
tdSql
.
error
(
"select udf1(c1) , irate(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , irate(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , sum(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , sum(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , stddev(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , stddev(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , mode(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , HYPERLOGLOG(c1) from stb1;"
)
tdSql
.
error
(
"select udf1(c1) , HYPERLOGLOG(c1) from stb1;"
)
# regular table with select functions
# regular table with select functions
...
...
tests/system-test/2-query/mode.py
0 → 100644
浏览文件 @
b5ab7eaf
from
random
import
randint
,
random
from
numpy
import
equal
import
taos
import
sys
import
datetime
import
inspect
from
util.log
import
*
from
util.sql
import
*
from
util.cases
import
*
class
TDTestCase
:
def
init
(
self
,
conn
,
logSql
,
replicaVar
=
1
):
tdLog
.
debug
(
f
"start to excute
{
__file__
}
"
)
tdSql
.
init
(
conn
.
cursor
())
def
prepare_datas
(
self
,
dbname
=
"db"
):
tdSql
.
execute
(
f
'''create table
{
dbname
}
.stb
(ts timestamp, c1 int, c2 bigint, c3 smallint, c4 tinyint, c5 float, c6 double, c7 bool, c8 binary(16),c9 nchar(32), c10 timestamp)
tags (t1 int)
'''
)
tdSql
.
execute
(
f
'''
create table
{
dbname
}
.tb
(ts timestamp, c1 int, c2 bigint, c3 smallint, c4 tinyint, c5 float, c6 double, c7 bool, c8 binary(16),c9 nchar(32), c10 timestamp)
'''
)
for
i
in
range
(
2
):
tdSql
.
execute
(
f
'create table
{
dbname
}
.ctb
{
i
+
1
}
using
{
dbname
}
.stb tags (
{
i
+
1
}
)'
)
tdSql
.
execute
(
f
"insert into
{
dbname
}
.ctb1 values ('2020-12-11 00:00:00.000', 0, 0, 0, 0, 0, 0, 0, 'binary0', 'nchar0', now()+8a )"
)
tdSql
.
execute
(
f
"insert into
{
dbname
}
.ctb1 values ('2020-12-11 00:00:01.000', 9, -99999, -999, -99, -9.99, -99.99, 1, 'binary9', 'nchar9', now()+9a )"
)
tdSql
.
execute
(
f
"insert into
{
dbname
}
.ctb1 values ('2020-12-11 00:00:02.000', 9, -99999, -999, -99, -9.99, NULL, 1, 'binary9', 'nchar9', now()+9a )"
)
tdSql
.
execute
(
f
"insert into
{
dbname
}
.ctb1 values ('2020-12-11 00:00:03.000', 9, -99999, -999, NULL, -9.99, -99.99, 1, 'binary9', 'nchar9', now()+9a )"
)
tdSql
.
execute
(
f
"insert into
{
dbname
}
.ctb2 values ('2020-12-12 00:00:00.000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL ) "
)
tdSql
.
execute
(
f
"insert into
{
dbname
}
.ctb2 values ('2020-12-12 00:00:01.000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL ) "
)
tdSql
.
execute
(
f
"insert into
{
dbname
}
.ctb2 values ('2020-12-12 00:00:02.000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL ) "
)
tdSql
.
execute
(
f
'''insert into
{
dbname
}
.tb values
( '2020-04-21 01:01:01.000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
( '2020-10-21 01:01:01.000', 1, 11111, 111, 11, 1.11, 11.11, 1, "binary1", "nchar1", now()+1a )
( '2020-12-31 01:01:01.000', 2, 22222, 222, 22, 2.22, 22.22, 0, "binary2", "nchar2", now()+2a )
( '2021-01-01 01:01:06.000', 3, 33333, 333, 33, 3.33, 33.33, 0, "binary3", "nchar3", now()+3a )
( '2021-05-07 01:01:10.000', 4, 44444, 444, 44, 4.44, 44.44, 1, "binary4", "nchar4", now()+4a )
( '2021-07-21 01:01:01.000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
( '2021-09-30 01:01:16.000', 5, 55555, 555, 55, 5.55, 55.55, 0, "binary5", "nchar5", now()+5a )
( '2022-02-01 01:01:20.000', 6, 66666, 666, 66, 6.66, 66.66, 1, "binary6", "nchar6", now()+6a )
( '2022-10-28 01:01:26.000', 7, 00000, 000, 00, 0.00, 00.00, 1, "binary7", "nchar7", "1970-01-01 08:00:00.000" )
( '2022-12-01 01:01:30.000', 8, -88888, -888, -88, -8.88, -88.88, 0, "binary8", "nchar8", "1969-01-01 01:00:00.000" )
( '2022-12-31 01:01:36.000', 9, -99999999999999999, -999, -99, -9.99, -999999999999999999999.99, 1, "binary9", "nchar9", "1900-01-01 00:00:00.000" )
( '2023-02-21 01:01:01.000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
'''
)
def
check_mode_function
(
self
,
dbname
=
"db"
):
# normal table
tdSql
.
query
(
f
"select ts,mode(c1) from
{
dbname
}
.tb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2022
,
12
,
31
,
1
,
1
,
36
))
tdSql
.
checkData
(
0
,
1
,
9
)
tdSql
.
query
(
f
"select ts,mode(c2) from
{
dbname
}
.tb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2022
,
12
,
31
,
1
,
1
,
36
))
tdSql
.
checkData
(
0
,
1
,
-
99999999999999999
)
tdSql
.
query
(
f
"select ts,mode(c3) from
{
dbname
}
.tb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2022
,
12
,
31
,
1
,
1
,
36
))
tdSql
.
checkData
(
0
,
1
,
-
999
)
tdSql
.
query
(
f
"select ts,mode(c4) from
{
dbname
}
.tb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2022
,
12
,
31
,
1
,
1
,
36
))
tdSql
.
checkData
(
0
,
1
,
-
99
)
tdSql
.
query
(
f
"select ts,mode(c5) from
{
dbname
}
.tb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2022
,
12
,
31
,
1
,
1
,
36
))
tdSql
.
checkData
(
0
,
1
,
-
9.99
)
tdSql
.
query
(
f
"select ts,mode(c6) from
{
dbname
}
.tb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2022
,
12
,
31
,
1
,
1
,
36
))
tdSql
.
checkData
(
0
,
1
,
-
1e+21
)
tdSql
.
query
(
f
"select ts,mode(c7) from
{
dbname
}
.tb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2022
,
12
,
31
,
1
,
1
,
36
))
tdSql
.
checkData
(
0
,
1
,
True
)
tdSql
.
query
(
f
"select ts,mode(c8) from
{
dbname
}
.tb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2022
,
12
,
31
,
1
,
1
,
36
))
tdSql
.
checkData
(
0
,
1
,
'binary9'
)
tdSql
.
query
(
f
"select ts,mode(c9) from
{
dbname
}
.tb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2022
,
12
,
31
,
1
,
1
,
36
))
tdSql
.
checkData
(
0
,
1
,
'nchar9'
)
tdSql
.
query
(
f
"select ts,c3,c5,c8,mode(c1) from
{
dbname
}
.tb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2022
,
12
,
31
,
1
,
1
,
36
))
tdSql
.
checkData
(
0
,
1
,
-
999
)
tdSql
.
checkData
(
0
,
2
,
-
9.99
)
tdSql
.
checkData
(
0
,
3
,
'binary9'
)
tdSql
.
checkData
(
0
,
4
,
9
)
# super table
tdSql
.
query
(
f
"select ts,mode(c1) from
{
dbname
}
.stb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2020
,
12
,
11
,
0
,
0
,
3
))
tdSql
.
checkData
(
0
,
1
,
9
)
tdSql
.
query
(
f
"select ts,mode(c2) from
{
dbname
}
.stb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2020
,
12
,
11
,
0
,
0
,
3
))
tdSql
.
checkData
(
0
,
1
,
-
99999
)
tdSql
.
query
(
f
"select ts,mode(c3) from
{
dbname
}
.stb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2020
,
12
,
11
,
0
,
0
,
3
))
tdSql
.
checkData
(
0
,
1
,
-
999
)
tdSql
.
query
(
f
"select ts,mode(c4) from
{
dbname
}
.stb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2020
,
12
,
11
,
0
,
0
,
2
))
tdSql
.
checkData
(
0
,
1
,
-
99
)
tdSql
.
query
(
f
"select ts,mode(c5) from
{
dbname
}
.stb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2020
,
12
,
11
,
0
,
0
,
3
))
tdSql
.
checkData
(
0
,
1
,
-
9.99
)
tdSql
.
query
(
f
"select ts,mode(c6) from
{
dbname
}
.stb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2020
,
12
,
11
,
0
,
0
,
3
))
tdSql
.
checkData
(
0
,
1
,
-
99.99
)
tdSql
.
query
(
f
"select ts,mode(c7) from
{
dbname
}
.stb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2020
,
12
,
11
,
0
,
0
,
3
))
tdSql
.
checkData
(
0
,
1
,
True
)
tdSql
.
query
(
f
"select ts,mode(c8) from
{
dbname
}
.stb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2020
,
12
,
11
,
0
,
0
,
3
))
tdSql
.
checkData
(
0
,
1
,
'binary9'
)
tdSql
.
query
(
f
"select ts,mode(c9) from
{
dbname
}
.stb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2020
,
12
,
11
,
0
,
0
,
3
))
tdSql
.
checkData
(
0
,
1
,
'nchar9'
)
tdSql
.
query
(
f
"select ts,mode(c1),c3,c5,c8 from
{
dbname
}
.stb"
)
tdSql
.
checkRows
(
1
)
ts
=
tdSql
.
getData
(
0
,
0
)
tdSql
.
checkEqual
(
ts
,
datetime
.
datetime
(
2020
,
12
,
11
,
0
,
0
,
3
))
tdSql
.
checkData
(
0
,
1
,
9
)
tdSql
.
checkData
(
0
,
2
,
-
999
)
tdSql
.
checkData
(
0
,
3
,
-
9.99
)
tdSql
.
checkData
(
0
,
4
,
'binary9'
)
def
run
(
self
):
# sourcery skip: extract-duplicate-method, remove-redundant-fstring
tdSql
.
prepare
()
tdLog
.
printNoPrefix
(
"==========step1:create table =============="
)
self
.
prepare_datas
()
tdLog
.
printNoPrefix
(
"==========step2:test results =============="
)
self
.
check_mode_function
()
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
f
"
{
__file__
}
successfully executed"
)
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tests/system-test/fulltest.sh
浏览文件 @
b5ab7eaf
...
@@ -142,6 +142,8 @@ python3 ./test.py -f 2-query/max.py
...
@@ -142,6 +142,8 @@ python3 ./test.py -f 2-query/max.py
python3 ./test.py
-f
2-query/max.py
-R
python3 ./test.py
-f
2-query/max.py
-R
python3 ./test.py
-f
2-query/min.py
python3 ./test.py
-f
2-query/min.py
python3 ./test.py
-f
2-query/min.py
-R
python3 ./test.py
-f
2-query/min.py
-R
python3 ./test.py
-f
2-query/mode.py
python3 ./test.py
-f
2-query/mode.py
-R
python3 ./test.py
-f
2-query/Now.py
python3 ./test.py
-f
2-query/Now.py
python3 ./test.py
-f
2-query/Now.py
-R
python3 ./test.py
-f
2-query/Now.py
-R
python3 ./test.py
-f
2-query/percentile.py
python3 ./test.py
-f
2-query/percentile.py
...
@@ -386,6 +388,7 @@ python3 ./test.py -f 2-query/Now.py -Q 2
...
@@ -386,6 +388,7 @@ python3 ./test.py -f 2-query/Now.py -Q 2
python3 ./test.py
-f
2-query/Today.py
-Q
2
python3 ./test.py
-f
2-query/Today.py
-Q
2
python3 ./test.py
-f
2-query/max.py
-Q
2
python3 ./test.py
-f
2-query/max.py
-Q
2
python3 ./test.py
-f
2-query/min.py
-Q
2
python3 ./test.py
-f
2-query/min.py
-Q
2
python3 ./test.py
-f
2-query/mode.py
-Q
2
python3 ./test.py
-f
2-query/count.py
-Q
2
python3 ./test.py
-f
2-query/count.py
-Q
2
# python3 ./test.py -f 2-query/countAlwaysReturnValue.py -Q 2
# python3 ./test.py -f 2-query/countAlwaysReturnValue.py -Q 2
python3 ./test.py
-f
2-query/last.py
-Q
2
python3 ./test.py
-f
2-query/last.py
-Q
2
...
@@ -482,6 +485,7 @@ python3 ./test.py -f 2-query/Now.py -Q 3
...
@@ -482,6 +485,7 @@ python3 ./test.py -f 2-query/Now.py -Q 3
python3 ./test.py
-f
2-query/Today.py
-Q
3
python3 ./test.py
-f
2-query/Today.py
-Q
3
python3 ./test.py
-f
2-query/max.py
-Q
3
python3 ./test.py
-f
2-query/max.py
-Q
3
python3 ./test.py
-f
2-query/min.py
-Q
3
python3 ./test.py
-f
2-query/min.py
-Q
3
python3 ./test.py
-f
2-query/mode.py
-Q
3
python3 ./test.py
-f
2-query/count.py
-Q
3
python3 ./test.py
-f
2-query/count.py
-Q
3
# python3 ./test.py -f 2-query/countAlwaysReturnValue.py -Q 3
# python3 ./test.py -f 2-query/countAlwaysReturnValue.py -Q 3
python3 ./test.py
-f
2-query/last.py
-Q
3
python3 ./test.py
-f
2-query/last.py
-Q
3
...
@@ -580,6 +584,7 @@ python3 ./test.py -f 2-query/Now.py -Q 4
...
@@ -580,6 +584,7 @@ python3 ./test.py -f 2-query/Now.py -Q 4
python3 ./test.py
-f
2-query/Today.py
-Q
4
python3 ./test.py
-f
2-query/Today.py
-Q
4
python3 ./test.py
-f
2-query/max.py
-Q
4
python3 ./test.py
-f
2-query/max.py
-Q
4
python3 ./test.py
-f
2-query/min.py
-Q
4
python3 ./test.py
-f
2-query/min.py
-Q
4
python3 ./test.py
-f
2-query/mode.py
-Q
4
python3 ./test.py
-f
2-query/count.py
-Q
4
python3 ./test.py
-f
2-query/count.py
-Q
4
# python3 ./test.py -f 2-query/countAlwaysReturnValue.py -Q 4
# python3 ./test.py -f 2-query/countAlwaysReturnValue.py -Q 4
python3 ./test.py
-f
2-query/last.py
-Q
4
python3 ./test.py
-f
2-query/last.py
-Q
4
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录