change all files.
This commit is contained in:
parent
5fa4d34533
commit
e37bd64792
|
@ -9,6 +9,11 @@ python3 ./test.py $1 -f insert/smallint.py
|
||||||
python3 ./test.py $1 -f insert/tinyint.py
|
python3 ./test.py $1 -f insert/tinyint.py
|
||||||
python3 ./test.py $1 -f insert/date.py
|
python3 ./test.py $1 -f insert/date.py
|
||||||
python3 ./test.py $1 -f insert/binary.py
|
python3 ./test.py $1 -f insert/binary.py
|
||||||
|
|
||||||
|
python3 ./test.py $1 -f table/column_name.py
|
||||||
|
python3 ./test.py $1 -f table/column_num.py
|
||||||
|
python3 ./test.py $1 -f table/db_table.py
|
||||||
|
|
||||||
python3 ./test.py $1 -f import_merge/importBlock1HO.py
|
python3 ./test.py $1 -f import_merge/importBlock1HO.py
|
||||||
python3 ./test.py $1 -f import_merge/importBlock1HPO.py
|
python3 ./test.py $1 -f import_merge/importBlock1HPO.py
|
||||||
python3 ./test.py $1 -f import_merge/importBlock1H.py
|
python3 ./test.py $1 -f import_merge/importBlock1H.py
|
||||||
|
|
|
@ -27,7 +27,7 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdDnodes.stop(1)
|
tdDnodes.stop(1)
|
||||||
tdDnodes.deploy(1)
|
tdDnodes.deploy(1)
|
||||||
|
@ -35,7 +35,7 @@ class TDTestCase:
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -43,19 +43,19 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than 10 rows less than %d rows will go to data file" %
|
"More than 10 rows less than %d rows will go to data file" %
|
||||||
self.rows)
|
self.maxrows)
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import %d sequential data" % (self.rows / 2))
|
tdLog.info("import %d sequential data" % (self.maxrows / 2))
|
||||||
startTime = self.startTime
|
startTime = self.startTime
|
||||||
sqlcmd = ['import into tb1 values']
|
sqlcmd = ['import into tb1 values']
|
||||||
for rid in range(1, self.rows / 2 + 1):
|
for rid in range(1, self.maxrows / 2 + 1):
|
||||||
sqlcmd.append('(%ld, %d)' % (startTime + rid, rid))
|
sqlcmd.append('(%ld, %d)' % (startTime + rid, rid))
|
||||||
tdSql.execute(" ".join(sqlcmd))
|
tdSql.execute(" ".join(sqlcmd))
|
||||||
|
|
||||||
tdLog.info("================= step3")
|
tdLog.info("================= step3")
|
||||||
tdSql.query('select * from tb1')
|
tdSql.query('select * from tb1')
|
||||||
tdSql.checkRows(self.rows / 2)
|
tdSql.checkRows(self.maxrows / 2)
|
||||||
|
|
||||||
tdLog.info("================= step4")
|
tdLog.info("================= step4")
|
||||||
tdDnodes.stop(1)
|
tdDnodes.stop(1)
|
||||||
|
@ -70,7 +70,7 @@ class TDTestCase:
|
||||||
tdLog.info("================= step7")
|
tdLog.info("================= step7")
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.query('select * from tb1 order by ts desc')
|
tdSql.query('select * from tb1 order by ts desc')
|
||||||
tdSql.checkRows(self.rows / 2 + 1)
|
tdSql.checkRows(self.maxrows / 2 + 1)
|
||||||
|
|
||||||
tdLog.info("================= step8")
|
tdLog.info("================= step8")
|
||||||
tdLog.info("import 10 data in batch before")
|
tdLog.info("import 10 data in batch before")
|
||||||
|
@ -83,7 +83,7 @@ class TDTestCase:
|
||||||
tdLog.info("================= step9")
|
tdLog.info("================= step9")
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.query('select * from tb1 order by ts desc')
|
tdSql.query('select * from tb1 order by ts desc')
|
||||||
tdSql.checkRows(self.rows / 2 + 11)
|
tdSql.checkRows(self.maxrows / 2 + 11)
|
||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
tdSql.close()
|
tdSql.close()
|
||||||
|
|
|
@ -27,7 +27,7 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxwrows = 200
|
||||||
self.rowsPerTable = 20
|
self.rowsPerTable = 20
|
||||||
|
|
||||||
tdDnodes.stop(1)
|
tdDnodes.stop(1)
|
||||||
|
@ -36,7 +36,7 @@ class TDTestCase:
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -44,7 +44,7 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than 10 rows less than %d rows will go to data file" %
|
"More than 10 rows less than %d rows will go to data file" %
|
||||||
self.rows)
|
self.maxrows)
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import %d sequential data" % self.rowsPerTable)
|
tdLog.info("import %d sequential data" % self.rowsPerTable)
|
||||||
|
|
|
@ -27,7 +27,7 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
self.rowsPerTable = 100
|
self.rowsPerTable = 100
|
||||||
|
|
||||||
tdDnodes.stop(1)
|
tdDnodes.stop(1)
|
||||||
|
@ -36,7 +36,7 @@ class TDTestCase:
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -44,7 +44,7 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than 10 rows less than %d rows will go to data file" %
|
"More than 10 rows less than %d rows will go to data file" %
|
||||||
self.rows)
|
self.maxrows)
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import %d sequential data" % self.rowsPerTable)
|
tdLog.info("import %d sequential data" % self.rowsPerTable)
|
||||||
|
|
|
@ -27,7 +27,7 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
self.rowsPerTable = 20
|
self.rowsPerTable = 20
|
||||||
|
|
||||||
tdDnodes.stop(1)
|
tdDnodes.stop(1)
|
||||||
|
@ -36,7 +36,7 @@ class TDTestCase:
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -44,7 +44,7 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than 10 rows less than %d rows will go to data file" %
|
"More than 10 rows less than %d rows will go to data file" %
|
||||||
self.rows)
|
self.maxrows)
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import %d sequential data" % self.rowsPerTable)
|
tdLog.info("import %d sequential data" % self.rowsPerTable)
|
||||||
|
|
|
@ -27,7 +27,7 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdDnodes.stop(1)
|
tdDnodes.stop(1)
|
||||||
tdDnodes.deploy(1)
|
tdDnodes.deploy(1)
|
||||||
|
@ -35,7 +35,7 @@ class TDTestCase:
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -43,7 +43,7 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than %d rows less than %d rows will go to data and last file" %
|
"More than %d rows less than %d rows will go to data and last file" %
|
||||||
(self.rows, 10 + self.rows))
|
(self.maxrows, 10 + self.maxrows))
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import 205 sequential data")
|
tdLog.info("import 205 sequential data")
|
||||||
|
|
|
@ -27,7 +27,7 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdDnodes.stop(1)
|
tdDnodes.stop(1)
|
||||||
tdDnodes.deploy(1)
|
tdDnodes.deploy(1)
|
||||||
|
@ -35,7 +35,7 @@ class TDTestCase:
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -43,7 +43,7 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than %d rows less than %d rows will go to data and last file" %
|
"More than %d rows less than %d rows will go to data and last file" %
|
||||||
(self.rows, 10 + self.rows))
|
(self.maxrows, 10 + self.maxrows))
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import 205 sequential data")
|
tdLog.info("import 205 sequential data")
|
||||||
|
|
|
@ -27,7 +27,7 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdDnodes.stop(1)
|
tdDnodes.stop(1)
|
||||||
tdDnodes.deploy(1)
|
tdDnodes.deploy(1)
|
||||||
|
@ -35,7 +35,7 @@ class TDTestCase:
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -43,7 +43,7 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than %d rows less than %d rows will go to data and last file" %
|
"More than %d rows less than %d rows will go to data and last file" %
|
||||||
(self.rows, 10 + self.rows))
|
(self.maxrows, 10 + self.maxrows))
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import 205 sequential data")
|
tdLog.info("import 205 sequential data")
|
||||||
|
|
|
@ -27,7 +27,7 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdDnodes.stop(1)
|
tdDnodes.stop(1)
|
||||||
tdDnodes.deploy(1)
|
tdDnodes.deploy(1)
|
||||||
|
@ -35,7 +35,7 @@ class TDTestCase:
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -43,7 +43,7 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than %d rows less than %d rows will go to data and last file" %
|
"More than %d rows less than %d rows will go to data and last file" %
|
||||||
(self.rows, 10 + self.rows))
|
(self.maxrows, 10 + self.maxrows))
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import 205 sequential data")
|
tdLog.info("import 205 sequential data")
|
||||||
|
|
|
@ -27,7 +27,7 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdDnodes.stop(1)
|
tdDnodes.stop(1)
|
||||||
tdDnodes.deploy(1)
|
tdDnodes.deploy(1)
|
||||||
|
@ -35,7 +35,7 @@ class TDTestCase:
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -43,7 +43,7 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than %d rows less than %d rows will go to data and last file" %
|
"More than %d rows less than %d rows will go to data and last file" %
|
||||||
(self.rows, 10 + self.rows))
|
(self.maxrows, 10 + self.maxrows))
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import 205 sequential data")
|
tdLog.info("import 205 sequential data")
|
||||||
|
|
|
@ -27,11 +27,11 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -39,7 +39,7 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than %d rows less than %d rows will go to data and last file" %
|
"More than %d rows less than %d rows will go to data and last file" %
|
||||||
(self.rows, 10 + self.rows))
|
(self.maxrows, 10 + self.maxrows))
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import 205 sequential data")
|
tdLog.info("import 205 sequential data")
|
||||||
|
|
|
@ -27,11 +27,11 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -39,7 +39,7 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than %d rows less than %d rows will go to data and last file" %
|
"More than %d rows less than %d rows will go to data and last file" %
|
||||||
(self.rows, 10 + self.rows))
|
(self.maxrows, 10 + self.maxrows))
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import 205 sequential data")
|
tdLog.info("import 205 sequential data")
|
||||||
|
|
|
@ -27,11 +27,11 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -39,7 +39,7 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than %d rows less than %d rows will go to data and last file" %
|
"More than %d rows less than %d rows will go to data and last file" %
|
||||||
(self.rows, 10 + self.rows))
|
(self.maxrows, 10 + self.maxrows))
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import 205 sequential data")
|
tdLog.info("import 205 sequential data")
|
||||||
|
|
|
@ -27,11 +27,11 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -39,7 +39,7 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than 10 rows less than %d rows will go to data file" %
|
"More than 10 rows less than %d rows will go to data file" %
|
||||||
self.rows)
|
self.maxrows)
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import 20 sequential data")
|
tdLog.info("import 20 sequential data")
|
||||||
|
|
|
@ -27,7 +27,7 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdDnodes.stop(1)
|
tdDnodes.stop(1)
|
||||||
tdDnodes.deploy(1)
|
tdDnodes.deploy(1)
|
||||||
|
@ -35,7 +35,7 @@ class TDTestCase:
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -43,19 +43,19 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than 10 rows less than %d rows will go to data file" %
|
"More than 10 rows less than %d rows will go to data file" %
|
||||||
self.rows)
|
self.maxrows)
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import %d sequential data" % (self.rows / 2))
|
tdLog.info("import %d sequential data" % (self.maxrows / 2))
|
||||||
startTime = self.startTime
|
startTime = self.startTime
|
||||||
sqlcmd = ['import into tb1 values']
|
sqlcmd = ['import into tb1 values']
|
||||||
for rid in range(1, self.rows / 2 + 1):
|
for rid in range(1, self.maxrows / 2 + 1):
|
||||||
sqlcmd.append('(%ld, %d)' % (startTime + rid, rid))
|
sqlcmd.append('(%ld, %d)' % (startTime + rid, rid))
|
||||||
tdSql.execute(" ".join(sqlcmd))
|
tdSql.execute(" ".join(sqlcmd))
|
||||||
|
|
||||||
tdLog.info("================= step3")
|
tdLog.info("================= step3")
|
||||||
tdSql.query('select * from tb1')
|
tdSql.query('select * from tb1')
|
||||||
tdSql.checkRows(self.rows / 2)
|
tdSql.checkRows(self.maxrows / 2)
|
||||||
|
|
||||||
tdLog.info("================= step4")
|
tdLog.info("================= step4")
|
||||||
tdDnodes.stop(1)
|
tdDnodes.stop(1)
|
||||||
|
@ -73,7 +73,7 @@ class TDTestCase:
|
||||||
tdLog.info("================= step9")
|
tdLog.info("================= step9")
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.query('select * from tb1 order by ts desc')
|
tdSql.query('select * from tb1 order by ts desc')
|
||||||
tdSql.checkRows(self.rows / 2)
|
tdSql.checkRows(self.maxrows / 2)
|
||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
tdSql.close()
|
tdSql.close()
|
||||||
|
|
|
@ -38,7 +38,7 @@ class TDTestCase:
|
||||||
tdLog.info("create 1 table")
|
tdLog.info("create 1 table")
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than 10 rows less than %d maxrows will go to data file" %
|
"More than 10 rows less than %d rows will go to data file" %
|
||||||
self.maxrows)
|
self.maxrows)
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
|
|
|
@ -27,11 +27,11 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -39,7 +39,7 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than 10 rows less than %d rows will go to data file" %
|
"More than 10 rows less than %d rows will go to data file" %
|
||||||
self.rows)
|
self.maxrows)
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import 20 sequential data")
|
tdLog.info("import 20 sequential data")
|
||||||
|
|
|
@ -27,11 +27,11 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
@ -39,7 +39,7 @@ class TDTestCase:
|
||||||
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
tdSql.execute('create table tb1 (ts timestamp, speed int)')
|
||||||
tdLog.info(
|
tdLog.info(
|
||||||
"More than 10 rows less than %d rows will go to data file" %
|
"More than 10 rows less than %d rows will go to data file" %
|
||||||
self.rows)
|
self.maxrows)
|
||||||
|
|
||||||
tdLog.info("================= step2")
|
tdLog.info("================= step2")
|
||||||
tdLog.info("import 20 sequential data")
|
tdLog.info("import 20 sequential data")
|
||||||
|
|
|
@ -27,11 +27,11 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
|
|
@ -27,11 +27,11 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
|
|
@ -27,11 +27,11 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
|
|
@ -27,11 +27,11 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
|
|
@ -27,11 +27,11 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
|
|
@ -27,7 +27,7 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdDnodes.stop(1)
|
tdDnodes.stop(1)
|
||||||
tdDnodes.deploy(1)
|
tdDnodes.deploy(1)
|
||||||
|
@ -35,7 +35,7 @@ class TDTestCase:
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
|
|
@ -27,7 +27,7 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdDnodes.stop(1)
|
tdDnodes.stop(1)
|
||||||
tdDnodes.deploy(1)
|
tdDnodes.deploy(1)
|
||||||
|
@ -35,7 +35,7 @@ class TDTestCase:
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
|
|
@ -27,7 +27,7 @@ class TDTestCase:
|
||||||
def run(self):
|
def run(self):
|
||||||
self.ntables = 1
|
self.ntables = 1
|
||||||
self.startTime = 1520000010000
|
self.startTime = 1520000010000
|
||||||
self.rows = 200
|
self.maxrows = 200
|
||||||
|
|
||||||
tdDnodes.stop(1)
|
tdDnodes.stop(1)
|
||||||
tdDnodes.deploy(1)
|
tdDnodes.deploy(1)
|
||||||
|
@ -35,7 +35,7 @@ class TDTestCase:
|
||||||
|
|
||||||
tdSql.execute('reset query cache')
|
tdSql.execute('reset query cache')
|
||||||
tdSql.execute('drop database if exists db')
|
tdSql.execute('drop database if exists db')
|
||||||
tdSql.execute('create database db rows %d' % self.rows)
|
tdSql.execute('create database db maxrows %d' % self.maxrows)
|
||||||
tdSql.execute('use db')
|
tdSql.execute('use db')
|
||||||
|
|
||||||
tdLog.info("================= step1")
|
tdLog.info("================= step1")
|
||||||
|
|
|
@ -34,12 +34,12 @@ python3 ./test.py $1 -f table/db_table.py
|
||||||
python3 ./test.py -s $1
|
python3 ./test.py -s $1
|
||||||
sleep 1
|
sleep 1
|
||||||
|
|
||||||
#python3 ./test.py $1 -f import_merge/importDataLastTO.py
|
python3 ./test.py $1 -f import_merge/importDataLastTO.py
|
||||||
#python3 ./test.py -s $1
|
python3 ./test.py -s $1
|
||||||
#sleep 1
|
sleep 1
|
||||||
#python3 ./test.py $1 -f import_merge/importDataLastT.py
|
python3 ./test.py $1 -f import_merge/importDataLastT.py
|
||||||
#python3 ./test.py -s $1
|
python3 ./test.py -s $1
|
||||||
#sleep 1
|
sleep 1
|
||||||
python3 ./test.py $1 -f import_merge/importDataTO.py
|
python3 ./test.py $1 -f import_merge/importDataTO.py
|
||||||
python3 ./test.py -s $1
|
python3 ./test.py -s $1
|
||||||
sleep 1
|
sleep 1
|
||||||
|
|
Loading…
Reference in New Issue