feat : first test data is ok

This commit is contained in:
Alex Duan 2024-09-10 10:15:32 +08:00
parent 4e05c9e79a
commit 954c465949
1 changed files with 10 additions and 3 deletions

View File

@ -243,8 +243,15 @@ def doTest(dataType, typeName, algo, resultFile):
def main():
# test types
dataTypes = [
'{"type": "bool", "name": "bc", "max": 1, "min": 0, "count":10, "compress":"@COMPRESS"}',
'{"type": "tinyint", "name": "ti", "max": 100, "min": 0, "count":10, "compress":"@COMPRESS"}'
'{"type": "bool", "count":100, "min": 0, "max": 1, "compress":"@COMPRESS"}',
'{"type": "tinyint", "count":100, "min": 0, "max": 100, "compress":"@COMPRESS"}',
'{"type": "smallint", "count":100, "min": 0, "max": 1000, "compress":"@COMPRESS"}',
'{"type": "int", "count":100, "min": 0, "max": 100000, "compress":"@COMPRESS"}',
'{"type": "bigint", "count":100, "min": 0, "max": 1000000, "compress":"@COMPRESS"}',
'{"type": "float", "count":100, "min": 0, "max": 1000, "compress":"@COMPRESS"}',
'{"type": "double", "count":100, "min": 0, "max": 1000, "compress":"@COMPRESS"}',
'{"type": "binary", "count":100, "len": 64, "compress":"@COMPRESS"}',
'{"type": "nchar", "count":100, "len": 64, "compress":"@COMPRESS"}'
]
# test compress method
@ -273,7 +280,7 @@ def main():
continue
# do test
doTest(dataType, typeName, algo, resultFile)
appendFileContext(resultFile, " \n")
if __name__ == "__main__":
print("welcome use TDengine compress rate test tools.\n")