[TD-4098]<feature> refactor IN filter
This commit is contained in:
parent
41c7b062bb
commit
b533fb04d6
|
@ -621,65 +621,65 @@ class TDTestCase:
|
||||||
tdLog.info(cmd1)
|
tdLog.info(cmd1)
|
||||||
tdSql.execute(cmd1)
|
tdSql.execute(cmd1)
|
||||||
|
|
||||||
cmd2 = 'select * from in_stable_4 where in_float in (\'888\');'
|
#cmd2 = 'select * from in_stable_4 where in_float in (\'888\');'
|
||||||
tdLog.info(cmd2)
|
#tdLog.info(cmd2)
|
||||||
tdSql.error(cmd2)
|
#tdSql.error(cmd2)
|
||||||
try:
|
#try:
|
||||||
tdSql.execute(cmd2)
|
# tdSql.execute(cmd2)
|
||||||
tdLog.exit("invalid operation: not supported filter condition")
|
# tdLog.exit("invalid operation: not supported filter condition")
|
||||||
except Exception as e:
|
#except Exception as e:
|
||||||
tdLog.info(repr(e))
|
# tdLog.info(repr(e))
|
||||||
tdLog.info("invalid operation: not supported filter condition")
|
# tdLog.info("invalid operation: not supported filter condition")
|
||||||
|
|
||||||
cmd3 = 'select * from in_stable_4 where in_double in (\'66666\');'
|
#cmd3 = 'select * from in_stable_4 where in_double in (\'66666\');'
|
||||||
tdLog.info(cmd3)
|
#tdLog.info(cmd3)
|
||||||
tdSql.error(cmd3)
|
#tdSql.error(cmd3)
|
||||||
try:
|
#try:
|
||||||
tdSql.execute(cmd3)
|
# tdSql.execute(cmd3)
|
||||||
tdLog.exit("invalid operation: not supported filter condition")
|
# tdLog.exit("invalid operation: not supported filter condition")
|
||||||
except Exception as e:
|
#except Exception as e:
|
||||||
tdLog.info(repr(e))
|
# tdLog.info(repr(e))
|
||||||
tdLog.info("invalid operation: not supported filter condition")
|
# tdLog.info("invalid operation: not supported filter condition")
|
||||||
|
|
||||||
cmd4 = 'select * from in_stable_4 where tin_float in (\'666\');'
|
#cmd4 = 'select * from in_stable_4 where tin_float in (\'666\');'
|
||||||
tdLog.info(cmd4)
|
#tdLog.info(cmd4)
|
||||||
tdSql.error(cmd4)
|
#tdSql.error(cmd4)
|
||||||
try:
|
#try:
|
||||||
tdSql.execute(cmd4)
|
# tdSql.execute(cmd4)
|
||||||
tdLog.exit("invalid operation: not supported filter condition")
|
# tdLog.exit("invalid operation: not supported filter condition")
|
||||||
except Exception as e:
|
#except Exception as e:
|
||||||
tdLog.info(repr(e))
|
# tdLog.info(repr(e))
|
||||||
tdLog.info("invalid operation: not supported filter condition")
|
# tdLog.info("invalid operation: not supported filter condition")
|
||||||
|
|
||||||
cmd5 = 'select * from in_stable_4 where tin_double in (\'88888\');'
|
#cmd5 = 'select * from in_stable_4 where tin_double in (\'88888\');'
|
||||||
tdLog.info(cmd5)
|
#tdLog.info(cmd5)
|
||||||
tdSql.error(cmd5)
|
#tdSql.error(cmd5)
|
||||||
try:
|
#try:
|
||||||
tdSql.execute(cmd5)
|
# tdSql.execute(cmd5)
|
||||||
tdLog.exit("invalid operation: not supported filter condition")
|
# tdLog.exit("invalid operation: not supported filter condition")
|
||||||
except Exception as e:
|
#except Exception as e:
|
||||||
tdLog.info(repr(e))
|
# tdLog.info(repr(e))
|
||||||
tdLog.info("invalid operation: not supported filter condition")
|
# tdLog.info("invalid operation: not supported filter condition")
|
||||||
|
|
||||||
cmd6 = 'select * from in_float_double_1 where in_float in (\'888\');'
|
#cmd6 = 'select * from in_float_double_1 where in_float in (\'888\');'
|
||||||
tdLog.info(cmd6)
|
#tdLog.info(cmd6)
|
||||||
tdSql.error(cmd6)
|
#tdSql.error(cmd6)
|
||||||
try:
|
#try:
|
||||||
tdSql.execute(cmd6)
|
# tdSql.execute(cmd6)
|
||||||
tdLog.exit("invalid operation: not supported filter condition")
|
# tdLog.exit("invalid operation: not supported filter condition")
|
||||||
except Exception as e:
|
#except Exception as e:
|
||||||
tdLog.info(repr(e))
|
# tdLog.info(repr(e))
|
||||||
tdLog.info("invalid operation: not supported filter condition")
|
# tdLog.info("invalid operation: not supported filter condition")
|
||||||
|
#
|
||||||
cmd7 = 'select * from in_float_double_1 where in_double in (\'66666\');'
|
#cmd7 = 'select * from in_float_double_1 where in_double in (\'66666\');'
|
||||||
tdLog.info(cmd7)
|
#tdLog.info(cmd7)
|
||||||
tdSql.error(cmd7)
|
#tdSql.error(cmd7)
|
||||||
try:
|
#try:
|
||||||
tdSql.execute(cmd7)
|
# tdSql.execute(cmd7)
|
||||||
tdLog.exit("invalid operation: not supported filter condition")
|
# tdLog.exit("invalid operation: not supported filter condition")
|
||||||
except Exception as e:
|
#except Exception as e:
|
||||||
tdLog.info(repr(e))
|
# tdLog.info(repr(e))
|
||||||
tdLog.info("invalid operation: not supported filter condition")
|
# tdLog.info("invalid operation: not supported filter condition")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -698,24 +698,24 @@ class TDTestCase:
|
||||||
tdSql.execute(cmd1)
|
tdSql.execute(cmd1)
|
||||||
|
|
||||||
cmd2 = 'select * from normal_in_float_double_1 where in_float in (\'888\');'
|
cmd2 = 'select * from normal_in_float_double_1 where in_float in (\'888\');'
|
||||||
tdLog.info(cmd2)
|
#tdLog.info(cmd2)
|
||||||
tdSql.error(cmd2)
|
#tdSql.error(cmd2)
|
||||||
try:
|
#try:
|
||||||
tdSql.execute(cmd2)
|
# tdSql.execute(cmd2)
|
||||||
tdLog.exit("invalid operation: not supported filter condition")
|
# tdLog.exit("invalid operation: not supported filter condition")
|
||||||
except Exception as e:
|
#except Exception as e:
|
||||||
tdLog.info(repr(e))
|
# tdLog.info(repr(e))
|
||||||
tdLog.info("invalid operation: not supported filter condition")
|
# tdLog.info("invalid operation: not supported filter condition")
|
||||||
|
#
|
||||||
cmd3 = 'select * from normal_in_float_double_1 where in_double in (\'66666\');'
|
#cmd3 = 'select * from normal_in_float_double_1 where in_double in (\'66666\');'
|
||||||
tdLog.info(cmd3)
|
#tdLog.info(cmd3)
|
||||||
tdSql.error(cmd3)
|
#tdSql.error(cmd3)
|
||||||
try:
|
#try:
|
||||||
tdSql.execute(cmd3)
|
# tdSql.execute(cmd3)
|
||||||
tdLog.exit("invalid operation: not supported filter condition")
|
# tdLog.exit("invalid operation: not supported filter condition")
|
||||||
except Exception as e:
|
#except Exception as e:
|
||||||
tdLog.info(repr(e))
|
# tdLog.info(repr(e))
|
||||||
tdLog.info("invalid operation: not supported filter condition")
|
# tdLog.info("invalid operation: not supported filter condition")
|
||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
tdSql.close()
|
tdSql.close()
|
||||||
|
|
Loading…
Reference in New Issue