⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ndb_bug26793.test

📁 视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
💻 TEST
字号:
-- source include/have_ndb.inc--disable_warningsDROP TABLE IF EXISTS t1;--enable_warningsCREATE TABLE `test` (`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,`t` VARCHAR( 10 ) NOT NULL) ENGINE = ndbcluster;# Add user1@localhost with a specific password# and connect as that userGRANT USAGE ON *.* TO user1@localhost IDENTIFIED BY 'pass';connect (user1,localhost,user1,pass,*NO-ONE*);# Run the query 100 timesdisable_query_log;disable_result_log;let $i= 100;while ($i){select count(*) from information_schema.tables union all select count(*) from information_schema.tables union all select count(*) from information_schema.tables;dec $i;}enable_query_log;enable_result_log;disconnect user1;# Switch back to the default connection and cleanupconnection default;DROP TABLE `test`.`test`;drop user user1@localhost;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -