delete_systable.py 3.2 KB
Newer Older
G
Ganlin Zhao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111

###################################################################
#           Copyright (c) 2016 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 random
import string

from numpy import logspace
from util import constant
from util.log import *
from util.cases import *
from util.sql import *
from util.common import *
from util.sqlset import TDSetSql

info_schema_db = "information_schema"
perf_schema_db = "performance_schema"

info_schema_tables = [
    "ins_dnodes",
    "ins_mnodes",
    "ins_modules",
    "ins_qnodes",
    "ins_snodes",
    "ins_cluster",
    "ins_databases",
    "ins_functions",
    "ins_indexes",
    "ins_stables",
    "ins_tables",
    "ins_tags",
    "ins_columns",
    "ins_users",
    "ins_grants",
    "ins_vgroups",
    "ins_configs",
    "ins_dnode_variables",
    "ins_topics",
    "ins_subscriptions",
    "ins_streams",
    "ins_streams_tasks",
    "ins_vnodes",
    "ins_user_privileges"
]

perf_schema_tables = [
    "perf_connections",
    "perf_queries",
    "perf_consumers",
    "perf_trans",
    "perf_apps"
]

class TDTestCase:
    def init(self, conn, logSql, replicaVar=1):
        self.replicaVar = int(replicaVar)
        tdLog.debug("start to execute %s" % __file__)
        tdSql.init(conn.cursor())

    def delete_systb(self):
        tdSql.execute(f'use {info_schema_db}')
        for i in info_schema_tables:
            tdSql.error(f'delete from {i}')
            tdSql.error(f'delete from {info_schema_db}.{i}')
            tdSql.error(f'delete from {i} where ts >= 0')
            tdSql.error(f'delete from {info_schema_db}.{i} where ts >= 0')

        tdSql.execute(f'use {perf_schema_db}')
        for i in perf_schema_tables:
            tdSql.error(f'delete from {i}')
            tdSql.error(f'delete from {perf_schema_db}.{i}')
            tdSql.error(f'delete from {i} where ts >= 0')
            tdSql.error(f'delete from {perf_schema_db}.{i} where ts >= 0')

    def drop_systb(self):
        tdSql.execute(f'use {info_schema_db}')
        for i in info_schema_tables:
            tdSql.error(f'drop table {i}')
            tdSql.error(f'drop {info_schema_db}.{i}')
        tdSql.error(f'drop database {info_schema_db}')

        tdSql.execute(f'use {perf_schema_db}')
        for i in perf_schema_tables:
            tdSql.error(f'drop table {i}')
            tdSql.error(f'drop table {perf_schema_db}.{i}')
        tdSql.error(f'drop database {perf_schema_db}')

    def delete_from_systb(self):
        self.delete_systb()
        self.drop_systb()
    def run(self):
        self.delete_from_systb()
        tdDnodes.stoptaosd(1)
        tdDnodes.starttaosd(1)
        self.delete_from_systb()
    def stop(self):
        tdSql.close()
        tdLog.success("%s successfully executed" % __file__)

tdCases.addWindows(__file__, TDTestCase())
tdCases.addLinux(__file__, TDTestCase())