You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15405 lines
914 KiB

  1. .
  2. . It is intended that the 3 <engine>__datadict.test files are named this way to be
  3. . sure they are - in a *full run* of the suite - the first tests done for each
  4. . storage engine. Using two _ and the order of processing in mysql-test-run.pl
  5. . ensures this in an easy way.
  6. .
  7. . If needed a restart could be implemented later between the storage engines if
  8. . values changes in the result depending from the position where the
  9. . *__datadict.test are started. This can be a result of showing e.g. maximum
  10. . values of the number of rows of tables.
  11. .
  12. . This .result file has been checked OK with Linux 5.0.48,
  13. . build tree ChangeSet@1.2477.6.3, 2007-07-30
  14. . except that the not fixed Bug#30020 causes a difference.
  15. .
  16. --------------------------------------------------------------------------------
  17. FIXME: There are subtests that are switched off due to known bugs:
  18. ------------------------------------------------------------------
  19. SELECT 1 AS "have_bug_11589";
  20. have_bug_11589
  21. 1
  22. SELECT 1 AS "have_bug_30689";
  23. have_bug_30689
  24. 1
  25. There are some statements where the ps-protocol is switched off.
  26. This may come from the bug listed below, ir from other problems.
  27. Bug#11589: mysqltest, --ps-protocol, strange output, float/double/real with zerofill
  28. --------------------------------------------------------------------------------
  29. Selects on INFORMATION_SCHEMA.VIEWS present incomplete
  30. content for the column VIEW_DEFINITION in cases where
  31. the view selects(=is based) on an INFORMATION_SCHEMA table.
  32. ---> VIEWS vu and vu1
  33. Bug#30689 Wrong content in I_S.VIEWS.VIEW_DEFINITION if VIEW is based on I_S
  34. --------------------------------------------------------------------------------
  35. SET @NO_REFRESH = IF( '' = '', 0, 1);
  36. DROP DATABASE IF EXISTS test1;
  37. CREATE DATABASE test1;
  38. USE test;
  39. drop table if exists tb1 ;
  40. create table tb1 (
  41. f1 char(0),
  42. f2 char(0) binary,
  43. f3 char(0) ascii,
  44. f4 tinytext unicode,
  45. f5 text,
  46. f6 mediumtext,
  47. f7 longtext,
  48. f8 tinyblob,
  49. f9 blob,
  50. f10 mediumblob,
  51. f11 longblob,
  52. f12 binary,
  53. f13 tinyint,
  54. f14 tinyint unsigned,
  55. f15 tinyint zerofill,
  56. f16 tinyint unsigned zerofill,
  57. f17 smallint,
  58. f18 smallint unsigned,
  59. f19 smallint zerofill,
  60. f20 smallint unsigned zerofill,
  61. f21 mediumint,
  62. f22 mediumint unsigned,
  63. f23 mediumint zerofill,
  64. f24 mediumint unsigned zerofill,
  65. f25 int,
  66. f26 int unsigned,
  67. f27 int zerofill,
  68. f28 int unsigned zerofill,
  69. f29 bigint,
  70. f30 bigint unsigned,
  71. f31 bigint zerofill,
  72. f32 bigint unsigned zerofill,
  73. f33 decimal,
  74. f34 decimal unsigned,
  75. f35 decimal zerofill,
  76. f36 decimal unsigned zerofill not null DEFAULT 9.9,
  77. f37 decimal (0) not null DEFAULT 9.9,
  78. f38 decimal (64) not null DEFAULT 9.9,
  79. f39 decimal (0) unsigned not null DEFAULT 9.9,
  80. f40 decimal (64) unsigned not null DEFAULT 9.9,
  81. f41 decimal (0) zerofill not null DEFAULT 9.9,
  82. f42 decimal (64) zerofill not null DEFAULT 9.9,
  83. f43 decimal (0) unsigned zerofill not null DEFAULT 9.9,
  84. f44 decimal (64) unsigned zerofill not null DEFAULT 9.9,
  85. f45 decimal (0,0) not null DEFAULT 9.9,
  86. f46 decimal (63,30) not null DEFAULT 9.9,
  87. f47 decimal (0,0) unsigned not null DEFAULT 9.9,
  88. f48 decimal (63,30) unsigned not null DEFAULT 9.9,
  89. f49 decimal (0,0) zerofill not null DEFAULT 9.9,
  90. f50 decimal (63,30) zerofill not null DEFAULT 9.9,
  91. f51 decimal (0,0) unsigned zerofill not null DEFAULT 9.9,
  92. f52 decimal (63,30) unsigned zerofill not null DEFAULT 9.9,
  93. f53 numeric not null DEFAULT 99,
  94. f54 numeric unsigned not null DEFAULT 99,
  95. f55 numeric zerofill not null DEFAULT 99,
  96. f56 numeric unsigned zerofill not null DEFAULT 99,
  97. f57 numeric (0) not null DEFAULT 99,
  98. f58 numeric (64) not null DEFAULT 99
  99. ) engine = innodb;
  100. Warnings:
  101. Note 1265 Data truncated for column 'f36' at row 1
  102. Note 1265 Data truncated for column 'f37' at row 1
  103. Note 1265 Data truncated for column 'f38' at row 1
  104. Note 1265 Data truncated for column 'f39' at row 1
  105. Note 1265 Data truncated for column 'f40' at row 1
  106. Note 1265 Data truncated for column 'f41' at row 1
  107. Note 1265 Data truncated for column 'f42' at row 1
  108. Note 1265 Data truncated for column 'f43' at row 1
  109. Note 1265 Data truncated for column 'f44' at row 1
  110. Note 1265 Data truncated for column 'f45' at row 1
  111. Note 1265 Data truncated for column 'f47' at row 1
  112. Note 1265 Data truncated for column 'f49' at row 1
  113. Note 1265 Data truncated for column 'f51' at row 1
  114. load data infile 'MYSQL_TEST_DIR/suite/funcs_1/data/innodb_tb1.txt' into table tb1 ;
  115. drop table if exists tb2 ;
  116. create table tb2 (
  117. f59 numeric (0) unsigned,
  118. f60 numeric (64) unsigned,
  119. f61 numeric (0) zerofill,
  120. f62 numeric (64) zerofill,
  121. f63 numeric (0) unsigned zerofill,
  122. f64 numeric (64) unsigned zerofill,
  123. f65 numeric (0,0),
  124. f66 numeric (63,30),
  125. f67 numeric (0,0) unsigned,
  126. f68 numeric (63,30) unsigned,
  127. f69 numeric (0,0) zerofill,
  128. f70 numeric (63,30) zerofill,
  129. f71 numeric (0,0) unsigned zerofill,
  130. f72 numeric (63,30) unsigned zerofill,
  131. f73 real,
  132. f74 real unsigned,
  133. f75 real zerofill,
  134. f76 real unsigned zerofill,
  135. f77 double default 7.7,
  136. f78 double unsigned default 7.7,
  137. f79 double zerofill default 7.7,
  138. f80 double unsigned zerofill default 8.8,
  139. f81 float not null default 8.8,
  140. f82 float unsigned not null default 8.8,
  141. f83 float zerofill not null default 8.8,
  142. f84 float unsigned zerofill not null default 8.8,
  143. f85 float(0) not null default 8.8,
  144. f86 float(23) not null default 8.8,
  145. f87 float(0) unsigned not null default 8.8,
  146. f88 float(23) unsigned not null default 8.8,
  147. f89 float(0) zerofill not null default 8.8,
  148. f90 float(23) zerofill not null default 8.8,
  149. f91 float(0) unsigned zerofill not null default 8.8,
  150. f92 float(23) unsigned zerofill not null default 8.8,
  151. f93 float(24) not null default 8.8,
  152. f94 float(53) not null default 8.8,
  153. f95 float(24) unsigned not null default 8.8,
  154. f96 float(53) unsigned not null default 8.8,
  155. f97 float(24) zerofill not null default 8.8,
  156. f98 float(53) zerofill not null default 8.8,
  157. f99 float(24) unsigned zerofill not null default 8.8,
  158. f100 float(53) unsigned zerofill not null default 8.8,
  159. f101 date not null default '2000-01-01',
  160. f102 time not null default 20,
  161. f103 datetime not null default '2/2/2',
  162. f104 timestamp not null default 20001231235959,
  163. f105 year not null default 2000,
  164. f106 year(3) not null default 2000,
  165. f107 year(4) not null default 2000,
  166. f108 enum("1enum","2enum") not null default "1enum",
  167. f109 set("1set","2set") not null default "1set"
  168. ) engine = innodb;
  169. load data infile 'MYSQL_TEST_DIR/suite/funcs_1/data/innodb_tb2.txt' into table tb2 ;
  170. drop table if exists tb3 ;
  171. create table tb3 (
  172. f118 char not null DEFAULT 'a',
  173. f119 char binary not null DEFAULT b'101',
  174. f120 char ascii not null DEFAULT b'101',
  175. f121 tinytext,
  176. f122 text,
  177. f123 mediumtext,
  178. f124 longtext unicode,
  179. f125 tinyblob,
  180. f126 blob,
  181. f127 mediumblob,
  182. f128 longblob,
  183. f129 binary not null DEFAULT b'101',
  184. f130 tinyint not null DEFAULT 99,
  185. f131 tinyint unsigned not null DEFAULT 99,
  186. f132 tinyint zerofill not null DEFAULT 99,
  187. f133 tinyint unsigned zerofill not null DEFAULT 99,
  188. f134 smallint not null DEFAULT 999,
  189. f135 smallint unsigned not null DEFAULT 999,
  190. f136 smallint zerofill not null DEFAULT 999,
  191. f137 smallint unsigned zerofill not null DEFAULT 999,
  192. f138 mediumint not null DEFAULT 9999,
  193. f139 mediumint unsigned not null DEFAULT 9999,
  194. f140 mediumint zerofill not null DEFAULT 9999,
  195. f141 mediumint unsigned zerofill not null DEFAULT 9999,
  196. f142 int not null DEFAULT 99999,
  197. f143 int unsigned not null DEFAULT 99999,
  198. f144 int zerofill not null DEFAULT 99999,
  199. f145 int unsigned zerofill not null DEFAULT 99999,
  200. f146 bigint not null DEFAULT 999999,
  201. f147 bigint unsigned not null DEFAULT 999999,
  202. f148 bigint zerofill not null DEFAULT 999999,
  203. f149 bigint unsigned zerofill not null DEFAULT 999999,
  204. f150 decimal not null DEFAULT 999.999,
  205. f151 decimal unsigned not null DEFAULT 999.17,
  206. f152 decimal zerofill not null DEFAULT 999.999,
  207. f153 decimal unsigned zerofill,
  208. f154 decimal (0),
  209. f155 decimal (64),
  210. f156 decimal (0) unsigned,
  211. f157 decimal (64) unsigned,
  212. f158 decimal (0) zerofill,
  213. f159 decimal (64) zerofill,
  214. f160 decimal (0) unsigned zerofill,
  215. f161 decimal (64) unsigned zerofill,
  216. f162 decimal (0,0),
  217. f163 decimal (63,30),
  218. f164 decimal (0,0) unsigned,
  219. f165 decimal (63,30) unsigned,
  220. f166 decimal (0,0) zerofill,
  221. f167 decimal (63,30) zerofill,
  222. f168 decimal (0,0) unsigned zerofill,
  223. f169 decimal (63,30) unsigned zerofill,
  224. f170 numeric,
  225. f171 numeric unsigned,
  226. f172 numeric zerofill,
  227. f173 numeric unsigned zerofill,
  228. f174 numeric (0),
  229. f175 numeric (64)
  230. ) engine = innodb;
  231. Warnings:
  232. Note 1265 Data truncated for column 'f150' at row 1
  233. Note 1265 Data truncated for column 'f151' at row 1
  234. Note 1265 Data truncated for column 'f152' at row 1
  235. load data infile 'MYSQL_TEST_DIR/suite/funcs_1/data/innodb_tb3.txt' into table tb3 ;
  236. drop table if exists tb4;
  237. create table tb4 (
  238. f176 numeric (0) unsigned not null DEFAULT 9,
  239. f177 numeric (64) unsigned not null DEFAULT 9,
  240. f178 numeric (0) zerofill not null DEFAULT 9,
  241. f179 numeric (64) zerofill not null DEFAULT 9,
  242. f180 numeric (0) unsigned zerofill not null DEFAULT 9,
  243. f181 numeric (64) unsigned zerofill not null DEFAULT 9,
  244. f182 numeric (0,0) not null DEFAULT 9,
  245. f183 numeric (63,30) not null DEFAULT 9,
  246. f184 numeric (0,0) unsigned not null DEFAULT 9,
  247. f185 numeric (63,30) unsigned not null DEFAULT 9,
  248. f186 numeric (0,0) zerofill not null DEFAULT 9,
  249. f187 numeric (63,30) zerofill not null DEFAULT 9,
  250. f188 numeric (0,0) unsigned zerofill not null DEFAULT 9,
  251. f189 numeric (63,30) unsigned zerofill not null DEFAULT 9,
  252. f190 real not null DEFAULT 88.8,
  253. f191 real unsigned not null DEFAULT 88.8,
  254. f192 real zerofill not null DEFAULT 88.8,
  255. f193 real unsigned zerofill not null DEFAULT 88.8,
  256. f194 double not null DEFAULT 55.5,
  257. f195 double unsigned not null DEFAULT 55.5,
  258. f196 double zerofill not null DEFAULT 55.5,
  259. f197 double unsigned zerofill not null DEFAULT 55.5,
  260. f198 float,
  261. f199 float unsigned,
  262. f200 float zerofill,
  263. f201 float unsigned zerofill,
  264. f202 float(0),
  265. f203 float(23),
  266. f204 float(0) unsigned,
  267. f205 float(23) unsigned,
  268. f206 float(0) zerofill,
  269. f207 float(23) zerofill,
  270. f208 float(0) unsigned zerofill,
  271. f209 float(23) unsigned zerofill,
  272. f210 float(24),
  273. f211 float(53),
  274. f212 float(24) unsigned,
  275. f213 float(53) unsigned,
  276. f214 float(24) zerofill,
  277. f215 float(53) zerofill,
  278. f216 float(24) unsigned zerofill,
  279. f217 float(53) unsigned zerofill,
  280. f218 date,
  281. f219 time,
  282. f220 datetime,
  283. f221 timestamp,
  284. f222 year,
  285. f223 year(3),
  286. f224 year(4),
  287. f225 enum("1enum","2enum"),
  288. f226 set("1set","2set"),
  289. f235 char(0) unicode,
  290. f236 char(90),
  291. f237 char(255) ascii,
  292. f238 varchar(0),
  293. f239 varchar(20000) binary,
  294. f240 varchar(2000) unicode,
  295. f241 char(100) unicode
  296. ) engine = innodb;
  297. load data infile 'MYSQL_TEST_DIR/suite/funcs_1/data/innodb_tb4.txt' into table tb4 ;
  298. USE test1;
  299. drop table if exists tb2 ;
  300. create table tb2 (
  301. f59 numeric (0) unsigned,
  302. f60 numeric (64) unsigned,
  303. f61 numeric (0) zerofill,
  304. f62 numeric (64) zerofill,
  305. f63 numeric (0) unsigned zerofill,
  306. f64 numeric (64) unsigned zerofill,
  307. f65 numeric (0,0),
  308. f66 numeric (63,30),
  309. f67 numeric (0,0) unsigned,
  310. f68 numeric (63,30) unsigned,
  311. f69 numeric (0,0) zerofill,
  312. f70 numeric (63,30) zerofill,
  313. f71 numeric (0,0) unsigned zerofill,
  314. f72 numeric (63,30) unsigned zerofill,
  315. f73 real,
  316. f74 real unsigned,
  317. f75 real zerofill,
  318. f76 real unsigned zerofill,
  319. f77 double default 7.7,
  320. f78 double unsigned default 7.7,
  321. f79 double zerofill default 7.7,
  322. f80 double unsigned zerofill default 8.8,
  323. f81 float not null default 8.8,
  324. f82 float unsigned not null default 8.8,
  325. f83 float zerofill not null default 8.8,
  326. f84 float unsigned zerofill not null default 8.8,
  327. f85 float(0) not null default 8.8,
  328. f86 float(23) not null default 8.8,
  329. f87 float(0) unsigned not null default 8.8,
  330. f88 float(23) unsigned not null default 8.8,
  331. f89 float(0) zerofill not null default 8.8,
  332. f90 float(23) zerofill not null default 8.8,
  333. f91 float(0) unsigned zerofill not null default 8.8,
  334. f92 float(23) unsigned zerofill not null default 8.8,
  335. f93 float(24) not null default 8.8,
  336. f94 float(53) not null default 8.8,
  337. f95 float(24) unsigned not null default 8.8,
  338. f96 float(53) unsigned not null default 8.8,
  339. f97 float(24) zerofill not null default 8.8,
  340. f98 float(53) zerofill not null default 8.8,
  341. f99 float(24) unsigned zerofill not null default 8.8,
  342. f100 float(53) unsigned zerofill not null default 8.8,
  343. f101 date not null default '2000-01-01',
  344. f102 time not null default 20,
  345. f103 datetime not null default '2/2/2',
  346. f104 timestamp not null default 20001231235959,
  347. f105 year not null default 2000,
  348. f106 year(3) not null default 2000,
  349. f107 year(4) not null default 2000,
  350. f108 enum("1enum","2enum") not null default "1enum",
  351. f109 set("1set","2set") not null default "1set"
  352. ) engine = innodb;
  353. load data infile 'MYSQL_TEST_DIR/suite/funcs_1/data/innodb_tb2.txt' into table tb2 ;
  354. USE test;
  355. USE test;
  356. DROP TABLE IF EXISTS t1, t2, t4, t10, t11;
  357. CREATE TABLE t1 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = innodb;
  358. CREATE TABLE t2 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = innodb;
  359. CREATE TABLE t4 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = innodb;
  360. CREATE TABLE t10 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = innodb;
  361. CREATE TABLE t11 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = innodb;
  362. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t1;
  363. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t2;
  364. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t4;
  365. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t10;
  366. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t11;
  367. drop TABLE if exists t3;
  368. CREATE TABLE t3 (f1 char(20), f2 char(20), f3 integer) ENGINE = innodb;
  369. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t3.txt' INTO TABLE t3;
  370. drop database if exists test4;
  371. CREATE database test4;
  372. use test4;
  373. CREATE TABLE t6 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = innodb;
  374. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t6;
  375. use test;
  376. drop TABLE if exists t7, t8;
  377. CREATE TABLE t7 (f1 char(20), f2 char(25), f3 date, f4 int) ENGINE = innodb;
  378. CREATE TABLE t8 (f1 char(20), f2 char(25), f3 date, f4 int) ENGINE = innodb;
  379. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t7.txt' INTO TABLE t7;
  380. Warnings:
  381. Warning 1265 Data truncated for column 'f3' at row 1
  382. Warning 1265 Data truncated for column 'f3' at row 2
  383. Warning 1265 Data truncated for column 'f3' at row 3
  384. Warning 1265 Data truncated for column 'f3' at row 4
  385. Warning 1265 Data truncated for column 'f3' at row 5
  386. Warning 1265 Data truncated for column 'f3' at row 6
  387. Warning 1265 Data truncated for column 'f3' at row 7
  388. Warning 1265 Data truncated for column 'f3' at row 8
  389. Warning 1265 Data truncated for column 'f3' at row 9
  390. Warning 1265 Data truncated for column 'f3' at row 10
  391. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t7.txt' INTO TABLE t8;
  392. Warnings:
  393. Warning 1265 Data truncated for column 'f3' at row 1
  394. Warning 1265 Data truncated for column 'f3' at row 2
  395. Warning 1265 Data truncated for column 'f3' at row 3
  396. Warning 1265 Data truncated for column 'f3' at row 4
  397. Warning 1265 Data truncated for column 'f3' at row 5
  398. Warning 1265 Data truncated for column 'f3' at row 6
  399. Warning 1265 Data truncated for column 'f3' at row 7
  400. Warning 1265 Data truncated for column 'f3' at row 8
  401. Warning 1265 Data truncated for column 'f3' at row 9
  402. Warning 1265 Data truncated for column 'f3' at row 10
  403. drop TABLE if exists t9;
  404. CREATE TABLE t9 (f1 int, f2 char(25), f3 int) ENGINE = innodb;
  405. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t9.txt' INTO TABLE t9;
  406. use information_schema;
  407. root@localhost information_schema
  408. Testcase 3.2.1.1:
  409. --------------------------------------------------------------------------------
  410. DROP DATABASE IF EXISTS db_datadict;
  411. CREATE DATABASE db_datadict;
  412. USE db_datadict;
  413. CREATE VIEW v1 AS SELECT * FROM information_schema.tables;
  414. CREATE OR REPLACE VIEW db_datadict.vu1 as
  415. SELECT grantee AS u
  416. FROM information_schema.user_privileges;
  417. CREATE OR REPLACE VIEW db_datadict.vu as
  418. SELECT DISTINCT u,
  419. SUBSTRING( u, LENGTH(SUBSTRING_INDEX(u,_utf8'@',1))+3 )
  420. AS server,
  421. SUBSTRING( u, LENGTH(SUBSTRING_INDEX(u,_utf8'@',1))+3,
  422. LENGTH( SUBSTRING( u,
  423. LENGTH( SUBSTRING_INDEX(u, _utf8'@',1)) +3 )) - 1 )
  424. AS Server_Clean
  425. FROM db_datadict.vu1;
  426. SELECT * FROM db_datadict.vu order by u;
  427. u server Server_Clean
  428. 'root'@'127.0.0.1' 127.0.0.1' 127.0.0.1
  429. 'root'@'<SERVER_NAME>' <SERVER_NAME>' <SERVER_NAME>
  430. 'root'@'localhost' localhost' localhost
  431. CREATE PROCEDURE db_datadict.sp_1()
  432. BEGIN
  433. SELECT * FROM db_datadict.v1;
  434. END//
  435. USE information_schema;
  436. SHOW tables;
  437. Tables_in_information_schema
  438. CHARACTER_SETS
  439. COLLATIONS
  440. COLLATION_CHARACTER_SET_APPLICABILITY
  441. COLUMNS
  442. COLUMN_PRIVILEGES
  443. ENGINES
  444. EVENTS
  445. FILES
  446. GLOBAL_STATUS
  447. GLOBAL_VARIABLES
  448. KEY_COLUMN_USAGE
  449. PARTITIONS
  450. PLUGINS
  451. PROCESSLIST
  452. PROFILING
  453. REFERENTIAL_CONSTRAINTS
  454. ROUTINES
  455. SCHEMATA
  456. SCHEMA_PRIVILEGES
  457. SESSION_STATUS
  458. SESSION_VARIABLES
  459. STATISTICS
  460. TABLES
  461. TABLE_CONSTRAINTS
  462. TABLE_PRIVILEGES
  463. TRIGGERS
  464. USER_PRIVILEGES
  465. VIEWS
  466. select * from schemata ORDER BY 2 DESC, 1 ASC;
  467. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  468. NULL test4 latin1 latin1_swedish_ci NULL
  469. NULL test1 latin1 latin1_swedish_ci NULL
  470. NULL test latin1 latin1_swedish_ci NULL
  471. NULL mysql latin1 latin1_swedish_ci NULL
  472. NULL information_schema utf8 utf8_general_ci NULL
  473. NULL db_datadict latin1 latin1_swedish_ci NULL
  474. SELECT * FROM tables
  475. WHERE table_schema = 'information_schema';
  476. TABLE_CATALOG NULL
  477. TABLE_SCHEMA information_schema
  478. TABLE_NAME CHARACTER_SETS
  479. TABLE_TYPE SYSTEM VIEW
  480. ENGINE MEMORY
  481. VERSION 10
  482. ROW_FORMAT Fixed
  483. TABLE_ROWS NULL
  484. AVG_ROW_LENGTH #ARL#
  485. DATA_LENGTH #DL#
  486. MAX_DATA_LENGTH #MDL#
  487. INDEX_LENGTH #IL#
  488. DATA_FREE #DF#
  489. AUTO_INCREMENT NULL
  490. CREATE_TIME YYYY-MM-DD hh:mm:ss
  491. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  492. CHECK_TIME YYYY-MM-DD hh:mm:ss
  493. TABLE_COLLATION utf8_general_ci
  494. CHECKSUM NULL
  495. CREATE_OPTIONS #CO#
  496. TABLE_COMMENT
  497. TABLE_CATALOG NULL
  498. TABLE_SCHEMA information_schema
  499. TABLE_NAME COLLATIONS
  500. TABLE_TYPE SYSTEM VIEW
  501. ENGINE MEMORY
  502. VERSION 10
  503. ROW_FORMAT Fixed
  504. TABLE_ROWS NULL
  505. AVG_ROW_LENGTH #ARL#
  506. DATA_LENGTH #DL#
  507. MAX_DATA_LENGTH #MDL#
  508. INDEX_LENGTH #IL#
  509. DATA_FREE #DF#
  510. AUTO_INCREMENT NULL
  511. CREATE_TIME YYYY-MM-DD hh:mm:ss
  512. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  513. CHECK_TIME YYYY-MM-DD hh:mm:ss
  514. TABLE_COLLATION utf8_general_ci
  515. CHECKSUM NULL
  516. CREATE_OPTIONS #CO#
  517. TABLE_COMMENT
  518. TABLE_CATALOG NULL
  519. TABLE_SCHEMA information_schema
  520. TABLE_NAME COLLATION_CHARACTER_SET_APPLICABILITY
  521. TABLE_TYPE SYSTEM VIEW
  522. ENGINE MEMORY
  523. VERSION 10
  524. ROW_FORMAT Fixed
  525. TABLE_ROWS NULL
  526. AVG_ROW_LENGTH #ARL#
  527. DATA_LENGTH #DL#
  528. MAX_DATA_LENGTH #MDL#
  529. INDEX_LENGTH #IL#
  530. DATA_FREE #DF#
  531. AUTO_INCREMENT NULL
  532. CREATE_TIME YYYY-MM-DD hh:mm:ss
  533. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  534. CHECK_TIME YYYY-MM-DD hh:mm:ss
  535. TABLE_COLLATION utf8_general_ci
  536. CHECKSUM NULL
  537. CREATE_OPTIONS #CO#
  538. TABLE_COMMENT
  539. TABLE_CATALOG NULL
  540. TABLE_SCHEMA information_schema
  541. TABLE_NAME COLUMNS
  542. TABLE_TYPE SYSTEM VIEW
  543. ENGINE MyISAM
  544. VERSION 10
  545. ROW_FORMAT Dynamic
  546. TABLE_ROWS NULL
  547. AVG_ROW_LENGTH #ARL#
  548. DATA_LENGTH #DL#
  549. MAX_DATA_LENGTH #MDL#
  550. INDEX_LENGTH #IL#
  551. DATA_FREE #DF#
  552. AUTO_INCREMENT NULL
  553. CREATE_TIME YYYY-MM-DD hh:mm:ss
  554. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  555. CHECK_TIME YYYY-MM-DD hh:mm:ss
  556. TABLE_COLLATION utf8_general_ci
  557. CHECKSUM NULL
  558. CREATE_OPTIONS #CO#
  559. TABLE_COMMENT
  560. TABLE_CATALOG NULL
  561. TABLE_SCHEMA information_schema
  562. TABLE_NAME COLUMN_PRIVILEGES
  563. TABLE_TYPE SYSTEM VIEW
  564. ENGINE MEMORY
  565. VERSION 10
  566. ROW_FORMAT Fixed
  567. TABLE_ROWS NULL
  568. AVG_ROW_LENGTH #ARL#
  569. DATA_LENGTH #DL#
  570. MAX_DATA_LENGTH #MDL#
  571. INDEX_LENGTH #IL#
  572. DATA_FREE #DF#
  573. AUTO_INCREMENT NULL
  574. CREATE_TIME YYYY-MM-DD hh:mm:ss
  575. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  576. CHECK_TIME YYYY-MM-DD hh:mm:ss
  577. TABLE_COLLATION utf8_general_ci
  578. CHECKSUM NULL
  579. CREATE_OPTIONS #CO#
  580. TABLE_COMMENT
  581. TABLE_CATALOG NULL
  582. TABLE_SCHEMA information_schema
  583. TABLE_NAME ENGINES
  584. TABLE_TYPE SYSTEM VIEW
  585. ENGINE MEMORY
  586. VERSION 10
  587. ROW_FORMAT Fixed
  588. TABLE_ROWS NULL
  589. AVG_ROW_LENGTH #ARL#
  590. DATA_LENGTH #DL#
  591. MAX_DATA_LENGTH #MDL#
  592. INDEX_LENGTH #IL#
  593. DATA_FREE #DF#
  594. AUTO_INCREMENT NULL
  595. CREATE_TIME YYYY-MM-DD hh:mm:ss
  596. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  597. CHECK_TIME YYYY-MM-DD hh:mm:ss
  598. TABLE_COLLATION utf8_general_ci
  599. CHECKSUM NULL
  600. CREATE_OPTIONS #CO#
  601. TABLE_COMMENT
  602. TABLE_CATALOG NULL
  603. TABLE_SCHEMA information_schema
  604. TABLE_NAME EVENTS
  605. TABLE_TYPE SYSTEM VIEW
  606. ENGINE MyISAM
  607. VERSION 10
  608. ROW_FORMAT Dynamic
  609. TABLE_ROWS NULL
  610. AVG_ROW_LENGTH #ARL#
  611. DATA_LENGTH #DL#
  612. MAX_DATA_LENGTH #MDL#
  613. INDEX_LENGTH #IL#
  614. DATA_FREE #DF#
  615. AUTO_INCREMENT NULL
  616. CREATE_TIME YYYY-MM-DD hh:mm:ss
  617. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  618. CHECK_TIME YYYY-MM-DD hh:mm:ss
  619. TABLE_COLLATION utf8_general_ci
  620. CHECKSUM NULL
  621. CREATE_OPTIONS #CO#
  622. TABLE_COMMENT
  623. TABLE_CATALOG NULL
  624. TABLE_SCHEMA information_schema
  625. TABLE_NAME FILES
  626. TABLE_TYPE SYSTEM VIEW
  627. ENGINE MEMORY
  628. VERSION 10
  629. ROW_FORMAT Fixed
  630. TABLE_ROWS NULL
  631. AVG_ROW_LENGTH #ARL#
  632. DATA_LENGTH #DL#
  633. MAX_DATA_LENGTH #MDL#
  634. INDEX_LENGTH #IL#
  635. DATA_FREE #DF#
  636. AUTO_INCREMENT NULL
  637. CREATE_TIME YYYY-MM-DD hh:mm:ss
  638. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  639. CHECK_TIME YYYY-MM-DD hh:mm:ss
  640. TABLE_COLLATION utf8_general_ci
  641. CHECKSUM NULL
  642. CREATE_OPTIONS #CO#
  643. TABLE_COMMENT
  644. TABLE_CATALOG NULL
  645. TABLE_SCHEMA information_schema
  646. TABLE_NAME GLOBAL_STATUS
  647. TABLE_TYPE SYSTEM VIEW
  648. ENGINE MEMORY
  649. VERSION 10
  650. ROW_FORMAT Fixed
  651. TABLE_ROWS NULL
  652. AVG_ROW_LENGTH #ARL#
  653. DATA_LENGTH #DL#
  654. MAX_DATA_LENGTH #MDL#
  655. INDEX_LENGTH #IL#
  656. DATA_FREE #DF#
  657. AUTO_INCREMENT NULL
  658. CREATE_TIME YYYY-MM-DD hh:mm:ss
  659. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  660. CHECK_TIME YYYY-MM-DD hh:mm:ss
  661. TABLE_COLLATION utf8_general_ci
  662. CHECKSUM NULL
  663. CREATE_OPTIONS #CO#
  664. TABLE_COMMENT
  665. TABLE_CATALOG NULL
  666. TABLE_SCHEMA information_schema
  667. TABLE_NAME GLOBAL_VARIABLES
  668. TABLE_TYPE SYSTEM VIEW
  669. ENGINE MEMORY
  670. VERSION 10
  671. ROW_FORMAT Fixed
  672. TABLE_ROWS NULL
  673. AVG_ROW_LENGTH #ARL#
  674. DATA_LENGTH #DL#
  675. MAX_DATA_LENGTH #MDL#
  676. INDEX_LENGTH #IL#
  677. DATA_FREE #DF#
  678. AUTO_INCREMENT NULL
  679. CREATE_TIME YYYY-MM-DD hh:mm:ss
  680. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  681. CHECK_TIME YYYY-MM-DD hh:mm:ss
  682. TABLE_COLLATION utf8_general_ci
  683. CHECKSUM NULL
  684. CREATE_OPTIONS #CO#
  685. TABLE_COMMENT
  686. TABLE_CATALOG NULL
  687. TABLE_SCHEMA information_schema
  688. TABLE_NAME KEY_COLUMN_USAGE
  689. TABLE_TYPE SYSTEM VIEW
  690. ENGINE MEMORY
  691. VERSION 10
  692. ROW_FORMAT Fixed
  693. TABLE_ROWS NULL
  694. AVG_ROW_LENGTH #ARL#
  695. DATA_LENGTH #DL#
  696. MAX_DATA_LENGTH #MDL#
  697. INDEX_LENGTH #IL#
  698. DATA_FREE #DF#
  699. AUTO_INCREMENT NULL
  700. CREATE_TIME YYYY-MM-DD hh:mm:ss
  701. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  702. CHECK_TIME YYYY-MM-DD hh:mm:ss
  703. TABLE_COLLATION utf8_general_ci
  704. CHECKSUM NULL
  705. CREATE_OPTIONS #CO#
  706. TABLE_COMMENT
  707. TABLE_CATALOG NULL
  708. TABLE_SCHEMA information_schema
  709. TABLE_NAME PARTITIONS
  710. TABLE_TYPE SYSTEM VIEW
  711. ENGINE MyISAM
  712. VERSION 10
  713. ROW_FORMAT Dynamic
  714. TABLE_ROWS NULL
  715. AVG_ROW_LENGTH #ARL#
  716. DATA_LENGTH #DL#
  717. MAX_DATA_LENGTH #MDL#
  718. INDEX_LENGTH #IL#
  719. DATA_FREE #DF#
  720. AUTO_INCREMENT NULL
  721. CREATE_TIME YYYY-MM-DD hh:mm:ss
  722. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  723. CHECK_TIME YYYY-MM-DD hh:mm:ss
  724. TABLE_COLLATION utf8_general_ci
  725. CHECKSUM NULL
  726. CREATE_OPTIONS #CO#
  727. TABLE_COMMENT
  728. TABLE_CATALOG NULL
  729. TABLE_SCHEMA information_schema
  730. TABLE_NAME PLUGINS
  731. TABLE_TYPE SYSTEM VIEW
  732. ENGINE MyISAM
  733. VERSION 10
  734. ROW_FORMAT Dynamic
  735. TABLE_ROWS NULL
  736. AVG_ROW_LENGTH #ARL#
  737. DATA_LENGTH #DL#
  738. MAX_DATA_LENGTH #MDL#
  739. INDEX_LENGTH #IL#
  740. DATA_FREE #DF#
  741. AUTO_INCREMENT NULL
  742. CREATE_TIME YYYY-MM-DD hh:mm:ss
  743. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  744. CHECK_TIME YYYY-MM-DD hh:mm:ss
  745. TABLE_COLLATION utf8_general_ci
  746. CHECKSUM NULL
  747. CREATE_OPTIONS #CO#
  748. TABLE_COMMENT
  749. TABLE_CATALOG NULL
  750. TABLE_SCHEMA information_schema
  751. TABLE_NAME PROCESSLIST
  752. TABLE_TYPE SYSTEM VIEW
  753. ENGINE MyISAM
  754. VERSION 10
  755. ROW_FORMAT Dynamic
  756. TABLE_ROWS NULL
  757. AVG_ROW_LENGTH #ARL#
  758. DATA_LENGTH #DL#
  759. MAX_DATA_LENGTH #MDL#
  760. INDEX_LENGTH #IL#
  761. DATA_FREE #DF#
  762. AUTO_INCREMENT NULL
  763. CREATE_TIME YYYY-MM-DD hh:mm:ss
  764. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  765. CHECK_TIME YYYY-MM-DD hh:mm:ss
  766. TABLE_COLLATION utf8_general_ci
  767. CHECKSUM NULL
  768. CREATE_OPTIONS #CO#
  769. TABLE_COMMENT
  770. TABLE_CATALOG NULL
  771. TABLE_SCHEMA information_schema
  772. TABLE_NAME PROFILING
  773. TABLE_TYPE SYSTEM VIEW
  774. ENGINE MEMORY
  775. VERSION 10
  776. ROW_FORMAT Fixed
  777. TABLE_ROWS NULL
  778. AVG_ROW_LENGTH #ARL#
  779. DATA_LENGTH #DL#
  780. MAX_DATA_LENGTH #MDL#
  781. INDEX_LENGTH #IL#
  782. DATA_FREE #DF#
  783. AUTO_INCREMENT NULL
  784. CREATE_TIME YYYY-MM-DD hh:mm:ss
  785. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  786. CHECK_TIME YYYY-MM-DD hh:mm:ss
  787. TABLE_COLLATION utf8_general_ci
  788. CHECKSUM NULL
  789. CREATE_OPTIONS #CO#
  790. TABLE_COMMENT
  791. TABLE_CATALOG NULL
  792. TABLE_SCHEMA information_schema
  793. TABLE_NAME REFERENTIAL_CONSTRAINTS
  794. TABLE_TYPE SYSTEM VIEW
  795. ENGINE MEMORY
  796. VERSION 10
  797. ROW_FORMAT Fixed
  798. TABLE_ROWS NULL
  799. AVG_ROW_LENGTH #ARL#
  800. DATA_LENGTH #DL#
  801. MAX_DATA_LENGTH #MDL#
  802. INDEX_LENGTH #IL#
  803. DATA_FREE #DF#
  804. AUTO_INCREMENT NULL
  805. CREATE_TIME YYYY-MM-DD hh:mm:ss
  806. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  807. CHECK_TIME YYYY-MM-DD hh:mm:ss
  808. TABLE_COLLATION utf8_general_ci
  809. CHECKSUM NULL
  810. CREATE_OPTIONS #CO#
  811. TABLE_COMMENT
  812. TABLE_CATALOG NULL
  813. TABLE_SCHEMA information_schema
  814. TABLE_NAME ROUTINES
  815. TABLE_TYPE SYSTEM VIEW
  816. ENGINE MyISAM
  817. VERSION 10
  818. ROW_FORMAT Dynamic
  819. TABLE_ROWS NULL
  820. AVG_ROW_LENGTH #ARL#
  821. DATA_LENGTH #DL#
  822. MAX_DATA_LENGTH #MDL#
  823. INDEX_LENGTH #IL#
  824. DATA_FREE #DF#
  825. AUTO_INCREMENT NULL
  826. CREATE_TIME YYYY-MM-DD hh:mm:ss
  827. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  828. CHECK_TIME YYYY-MM-DD hh:mm:ss
  829. TABLE_COLLATION utf8_general_ci
  830. CHECKSUM NULL
  831. CREATE_OPTIONS #CO#
  832. TABLE_COMMENT
  833. TABLE_CATALOG NULL
  834. TABLE_SCHEMA information_schema
  835. TABLE_NAME SCHEMATA
  836. TABLE_TYPE SYSTEM VIEW
  837. ENGINE MEMORY
  838. VERSION 10
  839. ROW_FORMAT Fixed
  840. TABLE_ROWS NULL
  841. AVG_ROW_LENGTH #ARL#
  842. DATA_LENGTH #DL#
  843. MAX_DATA_LENGTH #MDL#
  844. INDEX_LENGTH #IL#
  845. DATA_FREE #DF#
  846. AUTO_INCREMENT NULL
  847. CREATE_TIME YYYY-MM-DD hh:mm:ss
  848. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  849. CHECK_TIME YYYY-MM-DD hh:mm:ss
  850. TABLE_COLLATION utf8_general_ci
  851. CHECKSUM NULL
  852. CREATE_OPTIONS #CO#
  853. TABLE_COMMENT
  854. TABLE_CATALOG NULL
  855. TABLE_SCHEMA information_schema
  856. TABLE_NAME SCHEMA_PRIVILEGES
  857. TABLE_TYPE SYSTEM VIEW
  858. ENGINE MEMORY
  859. VERSION 10
  860. ROW_FORMAT Fixed
  861. TABLE_ROWS NULL
  862. AVG_ROW_LENGTH #ARL#
  863. DATA_LENGTH #DL#
  864. MAX_DATA_LENGTH #MDL#
  865. INDEX_LENGTH #IL#
  866. DATA_FREE #DF#
  867. AUTO_INCREMENT NULL
  868. CREATE_TIME YYYY-MM-DD hh:mm:ss
  869. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  870. CHECK_TIME YYYY-MM-DD hh:mm:ss
  871. TABLE_COLLATION utf8_general_ci
  872. CHECKSUM NULL
  873. CREATE_OPTIONS #CO#
  874. TABLE_COMMENT
  875. TABLE_CATALOG NULL
  876. TABLE_SCHEMA information_schema
  877. TABLE_NAME SESSION_STATUS
  878. TABLE_TYPE SYSTEM VIEW
  879. ENGINE MEMORY
  880. VERSION 10
  881. ROW_FORMAT Fixed
  882. TABLE_ROWS NULL
  883. AVG_ROW_LENGTH #ARL#
  884. DATA_LENGTH #DL#
  885. MAX_DATA_LENGTH #MDL#
  886. INDEX_LENGTH #IL#
  887. DATA_FREE #DF#
  888. AUTO_INCREMENT NULL
  889. CREATE_TIME YYYY-MM-DD hh:mm:ss
  890. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  891. CHECK_TIME YYYY-MM-DD hh:mm:ss
  892. TABLE_COLLATION utf8_general_ci
  893. CHECKSUM NULL
  894. CREATE_OPTIONS #CO#
  895. TABLE_COMMENT
  896. TABLE_CATALOG NULL
  897. TABLE_SCHEMA information_schema
  898. TABLE_NAME SESSION_VARIABLES
  899. TABLE_TYPE SYSTEM VIEW
  900. ENGINE MEMORY
  901. VERSION 10
  902. ROW_FORMAT Fixed
  903. TABLE_ROWS NULL
  904. AVG_ROW_LENGTH #ARL#
  905. DATA_LENGTH #DL#
  906. MAX_DATA_LENGTH #MDL#
  907. INDEX_LENGTH #IL#
  908. DATA_FREE #DF#
  909. AUTO_INCREMENT NULL
  910. CREATE_TIME YYYY-MM-DD hh:mm:ss
  911. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  912. CHECK_TIME YYYY-MM-DD hh:mm:ss
  913. TABLE_COLLATION utf8_general_ci
  914. CHECKSUM NULL
  915. CREATE_OPTIONS #CO#
  916. TABLE_COMMENT
  917. TABLE_CATALOG NULL
  918. TABLE_SCHEMA information_schema
  919. TABLE_NAME STATISTICS
  920. TABLE_TYPE SYSTEM VIEW
  921. ENGINE MEMORY
  922. VERSION 10
  923. ROW_FORMAT Fixed
  924. TABLE_ROWS NULL
  925. AVG_ROW_LENGTH #ARL#
  926. DATA_LENGTH #DL#
  927. MAX_DATA_LENGTH #MDL#
  928. INDEX_LENGTH #IL#
  929. DATA_FREE #DF#
  930. AUTO_INCREMENT NULL
  931. CREATE_TIME YYYY-MM-DD hh:mm:ss
  932. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  933. CHECK_TIME YYYY-MM-DD hh:mm:ss
  934. TABLE_COLLATION utf8_general_ci
  935. CHECKSUM NULL
  936. CREATE_OPTIONS #CO#
  937. TABLE_COMMENT
  938. TABLE_CATALOG NULL
  939. TABLE_SCHEMA information_schema
  940. TABLE_NAME TABLES
  941. TABLE_TYPE SYSTEM VIEW
  942. ENGINE MEMORY
  943. VERSION 10
  944. ROW_FORMAT Fixed
  945. TABLE_ROWS NULL
  946. AVG_ROW_LENGTH #ARL#
  947. DATA_LENGTH #DL#
  948. MAX_DATA_LENGTH #MDL#
  949. INDEX_LENGTH #IL#
  950. DATA_FREE #DF#
  951. AUTO_INCREMENT NULL
  952. CREATE_TIME YYYY-MM-DD hh:mm:ss
  953. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  954. CHECK_TIME YYYY-MM-DD hh:mm:ss
  955. TABLE_COLLATION utf8_general_ci
  956. CHECKSUM NULL
  957. CREATE_OPTIONS #CO#
  958. TABLE_COMMENT
  959. TABLE_CATALOG NULL
  960. TABLE_SCHEMA information_schema
  961. TABLE_NAME TABLE_CONSTRAINTS
  962. TABLE_TYPE SYSTEM VIEW
  963. ENGINE MEMORY
  964. VERSION 10
  965. ROW_FORMAT Fixed
  966. TABLE_ROWS NULL
  967. AVG_ROW_LENGTH #ARL#
  968. DATA_LENGTH #DL#
  969. MAX_DATA_LENGTH #MDL#
  970. INDEX_LENGTH #IL#
  971. DATA_FREE #DF#
  972. AUTO_INCREMENT NULL
  973. CREATE_TIME YYYY-MM-DD hh:mm:ss
  974. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  975. CHECK_TIME YYYY-MM-DD hh:mm:ss
  976. TABLE_COLLATION utf8_general_ci
  977. CHECKSUM NULL
  978. CREATE_OPTIONS #CO#
  979. TABLE_COMMENT
  980. TABLE_CATALOG NULL
  981. TABLE_SCHEMA information_schema
  982. TABLE_NAME TABLE_PRIVILEGES
  983. TABLE_TYPE SYSTEM VIEW
  984. ENGINE MEMORY
  985. VERSION 10
  986. ROW_FORMAT Fixed
  987. TABLE_ROWS NULL
  988. AVG_ROW_LENGTH #ARL#
  989. DATA_LENGTH #DL#
  990. MAX_DATA_LENGTH #MDL#
  991. INDEX_LENGTH #IL#
  992. DATA_FREE #DF#
  993. AUTO_INCREMENT NULL
  994. CREATE_TIME YYYY-MM-DD hh:mm:ss
  995. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  996. CHECK_TIME YYYY-MM-DD hh:mm:ss
  997. TABLE_COLLATION utf8_general_ci
  998. CHECKSUM NULL
  999. CREATE_OPTIONS #CO#
  1000. TABLE_COMMENT
  1001. TABLE_CATALOG NULL
  1002. TABLE_SCHEMA information_schema
  1003. TABLE_NAME TRIGGERS
  1004. TABLE_TYPE SYSTEM VIEW
  1005. ENGINE MyISAM
  1006. VERSION 10
  1007. ROW_FORMAT Dynamic
  1008. TABLE_ROWS NULL
  1009. AVG_ROW_LENGTH #ARL#
  1010. DATA_LENGTH #DL#
  1011. MAX_DATA_LENGTH #MDL#
  1012. INDEX_LENGTH #IL#
  1013. DATA_FREE #DF#
  1014. AUTO_INCREMENT NULL
  1015. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1016. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1017. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1018. TABLE_COLLATION utf8_general_ci
  1019. CHECKSUM NULL
  1020. CREATE_OPTIONS #CO#
  1021. TABLE_COMMENT
  1022. TABLE_CATALOG NULL
  1023. TABLE_SCHEMA information_schema
  1024. TABLE_NAME USER_PRIVILEGES
  1025. TABLE_TYPE SYSTEM VIEW
  1026. ENGINE MEMORY
  1027. VERSION 10
  1028. ROW_FORMAT Fixed
  1029. TABLE_ROWS NULL
  1030. AVG_ROW_LENGTH #ARL#
  1031. DATA_LENGTH #DL#
  1032. MAX_DATA_LENGTH #MDL#
  1033. INDEX_LENGTH #IL#
  1034. DATA_FREE #DF#
  1035. AUTO_INCREMENT NULL
  1036. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1037. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1038. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1039. TABLE_COLLATION utf8_general_ci
  1040. CHECKSUM NULL
  1041. CREATE_OPTIONS #CO#
  1042. TABLE_COMMENT
  1043. TABLE_CATALOG NULL
  1044. TABLE_SCHEMA information_schema
  1045. TABLE_NAME VIEWS
  1046. TABLE_TYPE SYSTEM VIEW
  1047. ENGINE MyISAM
  1048. VERSION 10
  1049. ROW_FORMAT Dynamic
  1050. TABLE_ROWS NULL
  1051. AVG_ROW_LENGTH #ARL#
  1052. DATA_LENGTH #DL#
  1053. MAX_DATA_LENGTH #MDL#
  1054. INDEX_LENGTH #IL#
  1055. DATA_FREE #DF#
  1056. AUTO_INCREMENT NULL
  1057. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1058. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1059. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1060. TABLE_COLLATION utf8_general_ci
  1061. CHECKSUM NULL
  1062. CREATE_OPTIONS #CO#
  1063. TABLE_COMMENT
  1064. SELECT * FROM tables
  1065. WHERE NOT( table_schema = 'information_schema')
  1066. AND NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
  1067. TABLE_CATALOG NULL
  1068. TABLE_SCHEMA db_datadict
  1069. TABLE_NAME v1
  1070. TABLE_TYPE VIEW
  1071. ENGINE NULL
  1072. VERSION NULL
  1073. ROW_FORMAT NULL
  1074. TABLE_ROWS NULL
  1075. AVG_ROW_LENGTH #ARL#
  1076. DATA_LENGTH #DL#
  1077. MAX_DATA_LENGTH #MDL#
  1078. INDEX_LENGTH #IL#
  1079. DATA_FREE #DF#
  1080. AUTO_INCREMENT NULL
  1081. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1082. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1083. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1084. TABLE_COLLATION NULL
  1085. CHECKSUM NULL
  1086. CREATE_OPTIONS NULL
  1087. TABLE_COMMENT VIEW
  1088. TABLE_CATALOG NULL
  1089. TABLE_SCHEMA db_datadict
  1090. TABLE_NAME vu
  1091. TABLE_TYPE VIEW
  1092. ENGINE NULL
  1093. VERSION NULL
  1094. ROW_FORMAT NULL
  1095. TABLE_ROWS NULL
  1096. AVG_ROW_LENGTH #ARL#
  1097. DATA_LENGTH #DL#
  1098. MAX_DATA_LENGTH #MDL#
  1099. INDEX_LENGTH #IL#
  1100. DATA_FREE #DF#
  1101. AUTO_INCREMENT NULL
  1102. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1103. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1104. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1105. TABLE_COLLATION NULL
  1106. CHECKSUM NULL
  1107. CREATE_OPTIONS NULL
  1108. TABLE_COMMENT VIEW
  1109. TABLE_CATALOG NULL
  1110. TABLE_SCHEMA db_datadict
  1111. TABLE_NAME vu1
  1112. TABLE_TYPE VIEW
  1113. ENGINE NULL
  1114. VERSION NULL
  1115. ROW_FORMAT NULL
  1116. TABLE_ROWS NULL
  1117. AVG_ROW_LENGTH #ARL#
  1118. DATA_LENGTH #DL#
  1119. MAX_DATA_LENGTH #MDL#
  1120. INDEX_LENGTH #IL#
  1121. DATA_FREE #DF#
  1122. AUTO_INCREMENT NULL
  1123. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1124. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1125. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1126. TABLE_COLLATION NULL
  1127. CHECKSUM NULL
  1128. CREATE_OPTIONS NULL
  1129. TABLE_COMMENT VIEW
  1130. TABLE_CATALOG NULL
  1131. TABLE_SCHEMA mysql
  1132. TABLE_NAME columns_priv
  1133. TABLE_TYPE BASE TABLE
  1134. ENGINE MyISAM
  1135. VERSION 10
  1136. ROW_FORMAT Fixed
  1137. TABLE_ROWS 0
  1138. AVG_ROW_LENGTH #ARL#
  1139. DATA_LENGTH #DL#
  1140. MAX_DATA_LENGTH #MDL#
  1141. INDEX_LENGTH #IL#
  1142. DATA_FREE #DF#
  1143. AUTO_INCREMENT NULL
  1144. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1145. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1146. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1147. TABLE_COLLATION utf8_bin
  1148. CHECKSUM NULL
  1149. CREATE_OPTIONS
  1150. TABLE_COMMENT Column privileges
  1151. TABLE_CATALOG NULL
  1152. TABLE_SCHEMA mysql
  1153. TABLE_NAME db
  1154. TABLE_TYPE BASE TABLE
  1155. ENGINE MyISAM
  1156. VERSION 10
  1157. ROW_FORMAT Fixed
  1158. TABLE_ROWS 2
  1159. AVG_ROW_LENGTH #ARL#
  1160. DATA_LENGTH #DL#
  1161. MAX_DATA_LENGTH #MDL#
  1162. INDEX_LENGTH #IL#
  1163. DATA_FREE #DF#
  1164. AUTO_INCREMENT NULL
  1165. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1166. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1167. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1168. TABLE_COLLATION utf8_bin
  1169. CHECKSUM NULL
  1170. CREATE_OPTIONS
  1171. TABLE_COMMENT Database privileges
  1172. TABLE_CATALOG NULL
  1173. TABLE_SCHEMA mysql
  1174. TABLE_NAME event
  1175. TABLE_TYPE BASE TABLE
  1176. ENGINE MyISAM
  1177. VERSION 10
  1178. ROW_FORMAT Dynamic
  1179. TABLE_ROWS 0
  1180. AVG_ROW_LENGTH #ARL#
  1181. DATA_LENGTH #DL#
  1182. MAX_DATA_LENGTH #MDL#
  1183. INDEX_LENGTH #IL#
  1184. DATA_FREE #DF#
  1185. AUTO_INCREMENT NULL
  1186. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1187. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1188. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1189. TABLE_COLLATION utf8_general_ci
  1190. CHECKSUM NULL
  1191. CREATE_OPTIONS
  1192. TABLE_COMMENT Events
  1193. TABLE_CATALOG NULL
  1194. TABLE_SCHEMA mysql
  1195. TABLE_NAME func
  1196. TABLE_TYPE BASE TABLE
  1197. ENGINE MyISAM
  1198. VERSION 10
  1199. ROW_FORMAT Fixed
  1200. TABLE_ROWS 0
  1201. AVG_ROW_LENGTH #ARL#
  1202. DATA_LENGTH #DL#
  1203. MAX_DATA_LENGTH #MDL#
  1204. INDEX_LENGTH #IL#
  1205. DATA_FREE #DF#
  1206. AUTO_INCREMENT NULL
  1207. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1208. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1209. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1210. TABLE_COLLATION utf8_bin
  1211. CHECKSUM NULL
  1212. CREATE_OPTIONS
  1213. TABLE_COMMENT User defined functions
  1214. TABLE_CATALOG NULL
  1215. TABLE_SCHEMA mysql
  1216. TABLE_NAME general_log
  1217. TABLE_TYPE BASE TABLE
  1218. ENGINE CSV
  1219. VERSION 10
  1220. ROW_FORMAT Dynamic
  1221. TABLE_ROWS 1
  1222. AVG_ROW_LENGTH #ARL#
  1223. DATA_LENGTH #DL#
  1224. MAX_DATA_LENGTH #MDL#
  1225. INDEX_LENGTH #IL#
  1226. DATA_FREE #DF#
  1227. AUTO_INCREMENT NULL
  1228. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1229. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1230. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1231. TABLE_COLLATION utf8_general_ci
  1232. CHECKSUM NULL
  1233. CREATE_OPTIONS
  1234. TABLE_COMMENT General log
  1235. TABLE_CATALOG NULL
  1236. TABLE_SCHEMA mysql
  1237. TABLE_NAME host
  1238. TABLE_TYPE BASE TABLE
  1239. ENGINE MyISAM
  1240. VERSION 10
  1241. ROW_FORMAT Fixed
  1242. TABLE_ROWS 0
  1243. AVG_ROW_LENGTH #ARL#
  1244. DATA_LENGTH #DL#
  1245. MAX_DATA_LENGTH #MDL#
  1246. INDEX_LENGTH #IL#
  1247. DATA_FREE #DF#
  1248. AUTO_INCREMENT NULL
  1249. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1250. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1251. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1252. TABLE_COLLATION utf8_bin
  1253. CHECKSUM NULL
  1254. CREATE_OPTIONS
  1255. TABLE_COMMENT Host privileges; Merged with database privileges
  1256. TABLE_CATALOG NULL
  1257. TABLE_SCHEMA mysql
  1258. TABLE_NAME ndb_binlog_index
  1259. TABLE_TYPE BASE TABLE
  1260. ENGINE MyISAM
  1261. VERSION 10
  1262. ROW_FORMAT Dynamic
  1263. TABLE_ROWS 0
  1264. AVG_ROW_LENGTH #ARL#
  1265. DATA_LENGTH #DL#
  1266. MAX_DATA_LENGTH #MDL#
  1267. INDEX_LENGTH #IL#
  1268. DATA_FREE #DF#
  1269. AUTO_INCREMENT NULL
  1270. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1271. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1272. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1273. TABLE_COLLATION latin1_swedish_ci
  1274. CHECKSUM NULL
  1275. CREATE_OPTIONS
  1276. TABLE_COMMENT
  1277. TABLE_CATALOG NULL
  1278. TABLE_SCHEMA mysql
  1279. TABLE_NAME plugin
  1280. TABLE_TYPE BASE TABLE
  1281. ENGINE MyISAM
  1282. VERSION 10
  1283. ROW_FORMAT Fixed
  1284. TABLE_ROWS 0
  1285. AVG_ROW_LENGTH #ARL#
  1286. DATA_LENGTH #DL#
  1287. MAX_DATA_LENGTH #MDL#
  1288. INDEX_LENGTH #IL#
  1289. DATA_FREE #DF#
  1290. AUTO_INCREMENT NULL
  1291. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1292. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1293. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1294. TABLE_COLLATION utf8_bin
  1295. CHECKSUM NULL
  1296. CREATE_OPTIONS
  1297. TABLE_COMMENT MySQL plugins
  1298. TABLE_CATALOG NULL
  1299. TABLE_SCHEMA mysql
  1300. TABLE_NAME proc
  1301. TABLE_TYPE BASE TABLE
  1302. ENGINE MyISAM
  1303. VERSION 10
  1304. ROW_FORMAT Dynamic
  1305. TABLE_ROWS 1
  1306. AVG_ROW_LENGTH #ARL#
  1307. DATA_LENGTH #DL#
  1308. MAX_DATA_LENGTH #MDL#
  1309. INDEX_LENGTH #IL#
  1310. DATA_FREE #DF#
  1311. AUTO_INCREMENT NULL
  1312. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1313. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1314. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1315. TABLE_COLLATION utf8_general_ci
  1316. CHECKSUM NULL
  1317. CREATE_OPTIONS
  1318. TABLE_COMMENT Stored Procedures
  1319. TABLE_CATALOG NULL
  1320. TABLE_SCHEMA mysql
  1321. TABLE_NAME procs_priv
  1322. TABLE_TYPE BASE TABLE
  1323. ENGINE MyISAM
  1324. VERSION 10
  1325. ROW_FORMAT Fixed
  1326. TABLE_ROWS 0
  1327. AVG_ROW_LENGTH #ARL#
  1328. DATA_LENGTH #DL#
  1329. MAX_DATA_LENGTH #MDL#
  1330. INDEX_LENGTH #IL#
  1331. DATA_FREE #DF#
  1332. AUTO_INCREMENT NULL
  1333. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1334. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1335. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1336. TABLE_COLLATION utf8_bin
  1337. CHECKSUM NULL
  1338. CREATE_OPTIONS
  1339. TABLE_COMMENT Procedure privileges
  1340. TABLE_CATALOG NULL
  1341. TABLE_SCHEMA mysql
  1342. TABLE_NAME servers
  1343. TABLE_TYPE BASE TABLE
  1344. ENGINE MyISAM
  1345. VERSION 10
  1346. ROW_FORMAT Fixed
  1347. TABLE_ROWS 0
  1348. AVG_ROW_LENGTH #ARL#
  1349. DATA_LENGTH #DL#
  1350. MAX_DATA_LENGTH #MDL#
  1351. INDEX_LENGTH #IL#
  1352. DATA_FREE #DF#
  1353. AUTO_INCREMENT NULL
  1354. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1355. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1356. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1357. TABLE_COLLATION utf8_general_ci
  1358. CHECKSUM NULL
  1359. CREATE_OPTIONS
  1360. TABLE_COMMENT MySQL Foreign Servers table
  1361. TABLE_CATALOG NULL
  1362. TABLE_SCHEMA mysql
  1363. TABLE_NAME slow_log
  1364. TABLE_TYPE BASE TABLE
  1365. ENGINE CSV
  1366. VERSION 10
  1367. ROW_FORMAT Dynamic
  1368. TABLE_ROWS 2
  1369. AVG_ROW_LENGTH #ARL#
  1370. DATA_LENGTH #DL#
  1371. MAX_DATA_LENGTH #MDL#
  1372. INDEX_LENGTH #IL#
  1373. DATA_FREE #DF#
  1374. AUTO_INCREMENT NULL
  1375. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1376. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1377. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1378. TABLE_COLLATION utf8_general_ci
  1379. CHECKSUM NULL
  1380. CREATE_OPTIONS
  1381. TABLE_COMMENT Slow log
  1382. TABLE_CATALOG NULL
  1383. TABLE_SCHEMA mysql
  1384. TABLE_NAME tables_priv
  1385. TABLE_TYPE BASE TABLE
  1386. ENGINE MyISAM
  1387. VERSION 10
  1388. ROW_FORMAT Fixed
  1389. TABLE_ROWS 0
  1390. AVG_ROW_LENGTH #ARL#
  1391. DATA_LENGTH #DL#
  1392. MAX_DATA_LENGTH #MDL#
  1393. INDEX_LENGTH #IL#
  1394. DATA_FREE #DF#
  1395. AUTO_INCREMENT NULL
  1396. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1397. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1398. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1399. TABLE_COLLATION utf8_bin
  1400. CHECKSUM NULL
  1401. CREATE_OPTIONS
  1402. TABLE_COMMENT Table privileges
  1403. TABLE_CATALOG NULL
  1404. TABLE_SCHEMA mysql
  1405. TABLE_NAME time_zone
  1406. TABLE_TYPE BASE TABLE
  1407. ENGINE MyISAM
  1408. VERSION 10
  1409. ROW_FORMAT Fixed
  1410. TABLE_ROWS 5
  1411. AVG_ROW_LENGTH #ARL#
  1412. DATA_LENGTH #DL#
  1413. MAX_DATA_LENGTH #MDL#
  1414. INDEX_LENGTH #IL#
  1415. DATA_FREE #DF#
  1416. AUTO_INCREMENT 6
  1417. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1418. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1419. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1420. TABLE_COLLATION utf8_general_ci
  1421. CHECKSUM NULL
  1422. CREATE_OPTIONS
  1423. TABLE_COMMENT Time zones
  1424. TABLE_CATALOG NULL
  1425. TABLE_SCHEMA mysql
  1426. TABLE_NAME time_zone_leap_second
  1427. TABLE_TYPE BASE TABLE
  1428. ENGINE MyISAM
  1429. VERSION 10
  1430. ROW_FORMAT Fixed
  1431. TABLE_ROWS 22
  1432. AVG_ROW_LENGTH #ARL#
  1433. DATA_LENGTH #DL#
  1434. MAX_DATA_LENGTH #MDL#
  1435. INDEX_LENGTH #IL#
  1436. DATA_FREE #DF#
  1437. AUTO_INCREMENT NULL
  1438. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1439. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1440. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1441. TABLE_COLLATION utf8_general_ci
  1442. CHECKSUM NULL
  1443. CREATE_OPTIONS
  1444. TABLE_COMMENT Leap seconds information for time zones
  1445. TABLE_CATALOG NULL
  1446. TABLE_SCHEMA mysql
  1447. TABLE_NAME time_zone_name
  1448. TABLE_TYPE BASE TABLE
  1449. ENGINE MyISAM
  1450. VERSION 10
  1451. ROW_FORMAT Fixed
  1452. TABLE_ROWS 6
  1453. AVG_ROW_LENGTH #ARL#
  1454. DATA_LENGTH #DL#
  1455. MAX_DATA_LENGTH #MDL#
  1456. INDEX_LENGTH #IL#
  1457. DATA_FREE #DF#
  1458. AUTO_INCREMENT NULL
  1459. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1460. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1461. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1462. TABLE_COLLATION utf8_general_ci
  1463. CHECKSUM NULL
  1464. CREATE_OPTIONS
  1465. TABLE_COMMENT Time zone names
  1466. TABLE_CATALOG NULL
  1467. TABLE_SCHEMA mysql
  1468. TABLE_NAME time_zone_transition
  1469. TABLE_TYPE BASE TABLE
  1470. ENGINE MyISAM
  1471. VERSION 10
  1472. ROW_FORMAT Fixed
  1473. TABLE_ROWS 393
  1474. AVG_ROW_LENGTH #ARL#
  1475. DATA_LENGTH #DL#
  1476. MAX_DATA_LENGTH #MDL#
  1477. INDEX_LENGTH #IL#
  1478. DATA_FREE #DF#
  1479. AUTO_INCREMENT NULL
  1480. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1481. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1482. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1483. TABLE_COLLATION utf8_general_ci
  1484. CHECKSUM NULL
  1485. CREATE_OPTIONS
  1486. TABLE_COMMENT Time zone transitions
  1487. TABLE_CATALOG NULL
  1488. TABLE_SCHEMA mysql
  1489. TABLE_NAME time_zone_transition_type
  1490. TABLE_TYPE BASE TABLE
  1491. ENGINE MyISAM
  1492. VERSION 10
  1493. ROW_FORMAT Fixed
  1494. TABLE_ROWS 31
  1495. AVG_ROW_LENGTH #ARL#
  1496. DATA_LENGTH #DL#
  1497. MAX_DATA_LENGTH #MDL#
  1498. INDEX_LENGTH #IL#
  1499. DATA_FREE #DF#
  1500. AUTO_INCREMENT NULL
  1501. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1502. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1503. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1504. TABLE_COLLATION utf8_general_ci
  1505. CHECKSUM NULL
  1506. CREATE_OPTIONS
  1507. TABLE_COMMENT Time zone transition types
  1508. TABLE_CATALOG NULL
  1509. TABLE_SCHEMA mysql
  1510. TABLE_NAME user
  1511. TABLE_TYPE BASE TABLE
  1512. ENGINE MyISAM
  1513. VERSION 10
  1514. ROW_FORMAT Dynamic
  1515. TABLE_ROWS 3
  1516. AVG_ROW_LENGTH #ARL#
  1517. DATA_LENGTH #DL#
  1518. MAX_DATA_LENGTH #MDL#
  1519. INDEX_LENGTH #IL#
  1520. DATA_FREE #DF#
  1521. AUTO_INCREMENT NULL
  1522. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1523. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1524. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1525. TABLE_COLLATION utf8_bin
  1526. CHECKSUM NULL
  1527. CREATE_OPTIONS
  1528. TABLE_COMMENT Users and global privileges
  1529. TABLE_CATALOG NULL
  1530. TABLE_SCHEMA test
  1531. TABLE_NAME t1
  1532. TABLE_TYPE BASE TABLE
  1533. ENGINE InnoDB
  1534. VERSION 10
  1535. ROW_FORMAT Compact
  1536. TABLE_ROWS 10
  1537. AVG_ROW_LENGTH #ARL#
  1538. DATA_LENGTH #DL#
  1539. MAX_DATA_LENGTH #MDL#
  1540. INDEX_LENGTH #IL#
  1541. DATA_FREE #DF#
  1542. AUTO_INCREMENT NULL
  1543. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1544. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1545. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1546. TABLE_COLLATION latin1_swedish_ci
  1547. CHECKSUM NULL
  1548. CREATE_OPTIONS
  1549. TABLE_COMMENT
  1550. TABLE_CATALOG NULL
  1551. TABLE_SCHEMA test
  1552. TABLE_NAME t10
  1553. TABLE_TYPE BASE TABLE
  1554. ENGINE InnoDB
  1555. VERSION 10
  1556. ROW_FORMAT Compact
  1557. TABLE_ROWS 10
  1558. AVG_ROW_LENGTH #ARL#
  1559. DATA_LENGTH #DL#
  1560. MAX_DATA_LENGTH #MDL#
  1561. INDEX_LENGTH #IL#
  1562. DATA_FREE #DF#
  1563. AUTO_INCREMENT NULL
  1564. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1565. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1566. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1567. TABLE_COLLATION latin1_swedish_ci
  1568. CHECKSUM NULL
  1569. CREATE_OPTIONS
  1570. TABLE_COMMENT
  1571. TABLE_CATALOG NULL
  1572. TABLE_SCHEMA test
  1573. TABLE_NAME t11
  1574. TABLE_TYPE BASE TABLE
  1575. ENGINE InnoDB
  1576. VERSION 10
  1577. ROW_FORMAT Compact
  1578. TABLE_ROWS 10
  1579. AVG_ROW_LENGTH #ARL#
  1580. DATA_LENGTH #DL#
  1581. MAX_DATA_LENGTH #MDL#
  1582. INDEX_LENGTH #IL#
  1583. DATA_FREE #DF#
  1584. AUTO_INCREMENT NULL
  1585. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1586. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1587. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1588. TABLE_COLLATION latin1_swedish_ci
  1589. CHECKSUM NULL
  1590. CREATE_OPTIONS
  1591. TABLE_COMMENT
  1592. TABLE_CATALOG NULL
  1593. TABLE_SCHEMA test
  1594. TABLE_NAME t2
  1595. TABLE_TYPE BASE TABLE
  1596. ENGINE InnoDB
  1597. VERSION 10
  1598. ROW_FORMAT Compact
  1599. TABLE_ROWS 10
  1600. AVG_ROW_LENGTH #ARL#
  1601. DATA_LENGTH #DL#
  1602. MAX_DATA_LENGTH #MDL#
  1603. INDEX_LENGTH #IL#
  1604. DATA_FREE #DF#
  1605. AUTO_INCREMENT NULL
  1606. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1607. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1608. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1609. TABLE_COLLATION latin1_swedish_ci
  1610. CHECKSUM NULL
  1611. CREATE_OPTIONS
  1612. TABLE_COMMENT
  1613. TABLE_CATALOG NULL
  1614. TABLE_SCHEMA test
  1615. TABLE_NAME t3
  1616. TABLE_TYPE BASE TABLE
  1617. ENGINE InnoDB
  1618. VERSION 10
  1619. ROW_FORMAT Compact
  1620. TABLE_ROWS 10
  1621. AVG_ROW_LENGTH #ARL#
  1622. DATA_LENGTH #DL#
  1623. MAX_DATA_LENGTH #MDL#
  1624. INDEX_LENGTH #IL#
  1625. DATA_FREE #DF#
  1626. AUTO_INCREMENT NULL
  1627. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1628. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1629. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1630. TABLE_COLLATION latin1_swedish_ci
  1631. CHECKSUM NULL
  1632. CREATE_OPTIONS
  1633. TABLE_COMMENT
  1634. TABLE_CATALOG NULL
  1635. TABLE_SCHEMA test
  1636. TABLE_NAME t4
  1637. TABLE_TYPE BASE TABLE
  1638. ENGINE InnoDB
  1639. VERSION 10
  1640. ROW_FORMAT Compact
  1641. TABLE_ROWS 10
  1642. AVG_ROW_LENGTH #ARL#
  1643. DATA_LENGTH #DL#
  1644. MAX_DATA_LENGTH #MDL#
  1645. INDEX_LENGTH #IL#
  1646. DATA_FREE #DF#
  1647. AUTO_INCREMENT NULL
  1648. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1649. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1650. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1651. TABLE_COLLATION latin1_swedish_ci
  1652. CHECKSUM NULL
  1653. CREATE_OPTIONS
  1654. TABLE_COMMENT
  1655. TABLE_CATALOG NULL
  1656. TABLE_SCHEMA test
  1657. TABLE_NAME t7
  1658. TABLE_TYPE BASE TABLE
  1659. ENGINE InnoDB
  1660. VERSION 10
  1661. ROW_FORMAT Compact
  1662. TABLE_ROWS 10
  1663. AVG_ROW_LENGTH #ARL#
  1664. DATA_LENGTH #DL#
  1665. MAX_DATA_LENGTH #MDL#
  1666. INDEX_LENGTH #IL#
  1667. DATA_FREE #DF#
  1668. AUTO_INCREMENT NULL
  1669. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1670. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1671. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1672. TABLE_COLLATION latin1_swedish_ci
  1673. CHECKSUM NULL
  1674. CREATE_OPTIONS
  1675. TABLE_COMMENT
  1676. TABLE_CATALOG NULL
  1677. TABLE_SCHEMA test
  1678. TABLE_NAME t8
  1679. TABLE_TYPE BASE TABLE
  1680. ENGINE InnoDB
  1681. VERSION 10
  1682. ROW_FORMAT Compact
  1683. TABLE_ROWS 10
  1684. AVG_ROW_LENGTH #ARL#
  1685. DATA_LENGTH #DL#
  1686. MAX_DATA_LENGTH #MDL#
  1687. INDEX_LENGTH #IL#
  1688. DATA_FREE #DF#
  1689. AUTO_INCREMENT NULL
  1690. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1691. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1692. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1693. TABLE_COLLATION latin1_swedish_ci
  1694. CHECKSUM NULL
  1695. CREATE_OPTIONS
  1696. TABLE_COMMENT
  1697. TABLE_CATALOG NULL
  1698. TABLE_SCHEMA test
  1699. TABLE_NAME t9
  1700. TABLE_TYPE BASE TABLE
  1701. ENGINE InnoDB
  1702. VERSION 10
  1703. ROW_FORMAT Compact
  1704. TABLE_ROWS 10
  1705. AVG_ROW_LENGTH #ARL#
  1706. DATA_LENGTH #DL#
  1707. MAX_DATA_LENGTH #MDL#
  1708. INDEX_LENGTH #IL#
  1709. DATA_FREE #DF#
  1710. AUTO_INCREMENT NULL
  1711. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1712. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1713. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1714. TABLE_COLLATION latin1_swedish_ci
  1715. CHECKSUM NULL
  1716. CREATE_OPTIONS
  1717. TABLE_COMMENT
  1718. TABLE_CATALOG NULL
  1719. TABLE_SCHEMA test
  1720. TABLE_NAME tb1
  1721. TABLE_TYPE BASE TABLE
  1722. ENGINE InnoDB
  1723. VERSION 10
  1724. ROW_FORMAT Compact
  1725. TABLE_ROWS 10
  1726. AVG_ROW_LENGTH #ARL#
  1727. DATA_LENGTH #DL#
  1728. MAX_DATA_LENGTH #MDL#
  1729. INDEX_LENGTH #IL#
  1730. DATA_FREE #DF#
  1731. AUTO_INCREMENT NULL
  1732. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1733. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1734. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1735. TABLE_COLLATION latin1_swedish_ci
  1736. CHECKSUM NULL
  1737. CREATE_OPTIONS
  1738. TABLE_COMMENT
  1739. TABLE_CATALOG NULL
  1740. TABLE_SCHEMA test
  1741. TABLE_NAME tb2
  1742. TABLE_TYPE BASE TABLE
  1743. ENGINE InnoDB
  1744. VERSION 10
  1745. ROW_FORMAT Compact
  1746. TABLE_ROWS 10
  1747. AVG_ROW_LENGTH #ARL#
  1748. DATA_LENGTH #DL#
  1749. MAX_DATA_LENGTH #MDL#
  1750. INDEX_LENGTH #IL#
  1751. DATA_FREE #DF#
  1752. AUTO_INCREMENT NULL
  1753. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1754. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1755. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1756. TABLE_COLLATION latin1_swedish_ci
  1757. CHECKSUM NULL
  1758. CREATE_OPTIONS
  1759. TABLE_COMMENT
  1760. TABLE_CATALOG NULL
  1761. TABLE_SCHEMA test
  1762. TABLE_NAME tb3
  1763. TABLE_TYPE BASE TABLE
  1764. ENGINE InnoDB
  1765. VERSION 10
  1766. ROW_FORMAT Compact
  1767. TABLE_ROWS 10
  1768. AVG_ROW_LENGTH #ARL#
  1769. DATA_LENGTH #DL#
  1770. MAX_DATA_LENGTH #MDL#
  1771. INDEX_LENGTH #IL#
  1772. DATA_FREE #DF#
  1773. AUTO_INCREMENT NULL
  1774. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1775. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1776. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1777. TABLE_COLLATION latin1_swedish_ci
  1778. CHECKSUM NULL
  1779. CREATE_OPTIONS
  1780. TABLE_COMMENT
  1781. TABLE_CATALOG NULL
  1782. TABLE_SCHEMA test
  1783. TABLE_NAME tb4
  1784. TABLE_TYPE BASE TABLE
  1785. ENGINE InnoDB
  1786. VERSION 10
  1787. ROW_FORMAT Compact
  1788. TABLE_ROWS 10
  1789. AVG_ROW_LENGTH #ARL#
  1790. DATA_LENGTH #DL#
  1791. MAX_DATA_LENGTH #MDL#
  1792. INDEX_LENGTH #IL#
  1793. DATA_FREE #DF#
  1794. AUTO_INCREMENT NULL
  1795. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1796. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1797. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1798. TABLE_COLLATION latin1_swedish_ci
  1799. CHECKSUM NULL
  1800. CREATE_OPTIONS
  1801. TABLE_COMMENT
  1802. TABLE_CATALOG NULL
  1803. TABLE_SCHEMA test1
  1804. TABLE_NAME tb2
  1805. TABLE_TYPE BASE TABLE
  1806. ENGINE InnoDB
  1807. VERSION 10
  1808. ROW_FORMAT Compact
  1809. TABLE_ROWS 10
  1810. AVG_ROW_LENGTH #ARL#
  1811. DATA_LENGTH #DL#
  1812. MAX_DATA_LENGTH #MDL#
  1813. INDEX_LENGTH #IL#
  1814. DATA_FREE #DF#
  1815. AUTO_INCREMENT NULL
  1816. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1817. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1818. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1819. TABLE_COLLATION latin1_swedish_ci
  1820. CHECKSUM NULL
  1821. CREATE_OPTIONS
  1822. TABLE_COMMENT
  1823. TABLE_CATALOG NULL
  1824. TABLE_SCHEMA test4
  1825. TABLE_NAME t6
  1826. TABLE_TYPE BASE TABLE
  1827. ENGINE InnoDB
  1828. VERSION 10
  1829. ROW_FORMAT Compact
  1830. TABLE_ROWS 10
  1831. AVG_ROW_LENGTH #ARL#
  1832. DATA_LENGTH #DL#
  1833. MAX_DATA_LENGTH #MDL#
  1834. INDEX_LENGTH #IL#
  1835. DATA_FREE #DF#
  1836. AUTO_INCREMENT NULL
  1837. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1838. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1839. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1840. TABLE_COLLATION latin1_swedish_ci
  1841. CHECKSUM NULL
  1842. CREATE_OPTIONS
  1843. TABLE_COMMENT
  1844. select s.catalog_name, s.schema_name, s.default_character_set_name,
  1845. t.table_type, t.engine
  1846. from schemata s inner join tables t
  1847. ORDER BY s.schema_name, s.default_character_set_name, table_type, engine;
  1848. catalog_name schema_name default_character_set_name table_type engine
  1849. NULL db_datadict latin1 BASE TABLE CSV
  1850. NULL db_datadict latin1 BASE TABLE CSV
  1851. NULL db_datadict latin1 BASE TABLE InnoDB
  1852. NULL db_datadict latin1 BASE TABLE InnoDB
  1853. NULL db_datadict latin1 BASE TABLE InnoDB
  1854. NULL db_datadict latin1 BASE TABLE InnoDB
  1855. NULL db_datadict latin1 BASE TABLE InnoDB
  1856. NULL db_datadict latin1 BASE TABLE InnoDB
  1857. NULL db_datadict latin1 BASE TABLE InnoDB
  1858. NULL db_datadict latin1 BASE TABLE InnoDB
  1859. NULL db_datadict latin1 BASE TABLE InnoDB
  1860. NULL db_datadict latin1 BASE TABLE InnoDB
  1861. NULL db_datadict latin1 BASE TABLE InnoDB
  1862. NULL db_datadict latin1 BASE TABLE InnoDB
  1863. NULL db_datadict latin1 BASE TABLE InnoDB
  1864. NULL db_datadict latin1 BASE TABLE InnoDB
  1865. NULL db_datadict latin1 BASE TABLE InnoDB
  1866. NULL db_datadict latin1 BASE TABLE MyISAM
  1867. NULL db_datadict latin1 BASE TABLE MyISAM
  1868. NULL db_datadict latin1 BASE TABLE MyISAM
  1869. NULL db_datadict latin1 BASE TABLE MyISAM
  1870. NULL db_datadict latin1 BASE TABLE MyISAM
  1871. NULL db_datadict latin1 BASE TABLE MyISAM
  1872. NULL db_datadict latin1 BASE TABLE MyISAM
  1873. NULL db_datadict latin1 BASE TABLE MyISAM
  1874. NULL db_datadict latin1 BASE TABLE MyISAM
  1875. NULL db_datadict latin1 BASE TABLE MyISAM
  1876. NULL db_datadict latin1 BASE TABLE MyISAM
  1877. NULL db_datadict latin1 BASE TABLE MyISAM
  1878. NULL db_datadict latin1 BASE TABLE MyISAM
  1879. NULL db_datadict latin1 BASE TABLE MyISAM
  1880. NULL db_datadict latin1 BASE TABLE MyISAM
  1881. NULL db_datadict latin1 BASE TABLE MyISAM
  1882. NULL db_datadict latin1 BASE TABLE MyISAM
  1883. NULL db_datadict latin1 BASE TABLE MyISAM
  1884. NULL db_datadict latin1 BASE TABLE MyISAM
  1885. NULL db_datadict latin1 BASE TABLE MyISAM
  1886. NULL db_datadict latin1 BASE TABLE MyISAM
  1887. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1888. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1889. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1890. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1891. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1892. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1893. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1894. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1895. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1896. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1897. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1898. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1899. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1900. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1901. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1902. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1903. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1904. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1905. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1906. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1907. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1908. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1909. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1910. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1911. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1912. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1913. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1914. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1915. NULL db_datadict latin1 VIEW NULL
  1916. NULL db_datadict latin1 VIEW NULL
  1917. NULL db_datadict latin1 VIEW NULL
  1918. NULL information_schema utf8 BASE TABLE CSV
  1919. NULL information_schema utf8 BASE TABLE CSV
  1920. NULL information_schema utf8 BASE TABLE InnoDB
  1921. NULL information_schema utf8 BASE TABLE InnoDB
  1922. NULL information_schema utf8 BASE TABLE InnoDB
  1923. NULL information_schema utf8 BASE TABLE InnoDB
  1924. NULL information_schema utf8 BASE TABLE InnoDB
  1925. NULL information_schema utf8 BASE TABLE InnoDB
  1926. NULL information_schema utf8 BASE TABLE InnoDB
  1927. NULL information_schema utf8 BASE TABLE InnoDB
  1928. NULL information_schema utf8 BASE TABLE InnoDB
  1929. NULL information_schema utf8 BASE TABLE InnoDB
  1930. NULL information_schema utf8 BASE TABLE InnoDB
  1931. NULL information_schema utf8 BASE TABLE InnoDB
  1932. NULL information_schema utf8 BASE TABLE InnoDB
  1933. NULL information_schema utf8 BASE TABLE InnoDB
  1934. NULL information_schema utf8 BASE TABLE InnoDB
  1935. NULL information_schema utf8 BASE TABLE MyISAM
  1936. NULL information_schema utf8 BASE TABLE MyISAM
  1937. NULL information_schema utf8 BASE TABLE MyISAM
  1938. NULL information_schema utf8 BASE TABLE MyISAM
  1939. NULL information_schema utf8 BASE TABLE MyISAM
  1940. NULL information_schema utf8 BASE TABLE MyISAM
  1941. NULL information_schema utf8 BASE TABLE MyISAM
  1942. NULL information_schema utf8 BASE TABLE MyISAM
  1943. NULL information_schema utf8 BASE TABLE MyISAM
  1944. NULL information_schema utf8 BASE TABLE MyISAM
  1945. NULL information_schema utf8 BASE TABLE MyISAM
  1946. NULL information_schema utf8 BASE TABLE MyISAM
  1947. NULL information_schema utf8 BASE TABLE MyISAM
  1948. NULL information_schema utf8 BASE TABLE MyISAM
  1949. NULL information_schema utf8 BASE TABLE MyISAM
  1950. NULL information_schema utf8 BASE TABLE MyISAM
  1951. NULL information_schema utf8 BASE TABLE MyISAM
  1952. NULL information_schema utf8 BASE TABLE MyISAM
  1953. NULL information_schema utf8 BASE TABLE MyISAM
  1954. NULL information_schema utf8 BASE TABLE MyISAM
  1955. NULL information_schema utf8 BASE TABLE MyISAM
  1956. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1957. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1958. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1959. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1960. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1961. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1962. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1963. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1964. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1965. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1966. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1967. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1968. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1969. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1970. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1971. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1972. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1973. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1974. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1975. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1976. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1977. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1978. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1979. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1980. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1981. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1982. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1983. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1984. NULL information_schema utf8 VIEW NULL
  1985. NULL information_schema utf8 VIEW NULL
  1986. NULL information_schema utf8 VIEW NULL
  1987. NULL mysql latin1 BASE TABLE CSV
  1988. NULL mysql latin1 BASE TABLE CSV
  1989. NULL mysql latin1 BASE TABLE InnoDB
  1990. NULL mysql latin1 BASE TABLE InnoDB
  1991. NULL mysql latin1 BASE TABLE InnoDB
  1992. NULL mysql latin1 BASE TABLE InnoDB
  1993. NULL mysql latin1 BASE TABLE InnoDB
  1994. NULL mysql latin1 BASE TABLE InnoDB
  1995. NULL mysql latin1 BASE TABLE InnoDB
  1996. NULL mysql latin1 BASE TABLE InnoDB
  1997. NULL mysql latin1 BASE TABLE InnoDB
  1998. NULL mysql latin1 BASE TABLE InnoDB
  1999. NULL mysql latin1 BASE TABLE InnoDB
  2000. NULL mysql latin1 BASE TABLE InnoDB
  2001. NULL mysql latin1 BASE TABLE InnoDB
  2002. NULL mysql latin1 BASE TABLE InnoDB
  2003. NULL mysql latin1 BASE TABLE InnoDB
  2004. NULL mysql latin1 BASE TABLE MyISAM
  2005. NULL mysql latin1 BASE TABLE MyISAM
  2006. NULL mysql latin1 BASE TABLE MyISAM
  2007. NULL mysql latin1 BASE TABLE MyISAM
  2008. NULL mysql latin1 BASE TABLE MyISAM
  2009. NULL mysql latin1 BASE TABLE MyISAM
  2010. NULL mysql latin1 BASE TABLE MyISAM
  2011. NULL mysql latin1 BASE TABLE MyISAM
  2012. NULL mysql latin1 BASE TABLE MyISAM
  2013. NULL mysql latin1 BASE TABLE MyISAM
  2014. NULL mysql latin1 BASE TABLE MyISAM
  2015. NULL mysql latin1 BASE TABLE MyISAM
  2016. NULL mysql latin1 BASE TABLE MyISAM
  2017. NULL mysql latin1 BASE TABLE MyISAM
  2018. NULL mysql latin1 BASE TABLE MyISAM
  2019. NULL mysql latin1 BASE TABLE MyISAM
  2020. NULL mysql latin1 BASE TABLE MyISAM
  2021. NULL mysql latin1 BASE TABLE MyISAM
  2022. NULL mysql latin1 BASE TABLE MyISAM
  2023. NULL mysql latin1 BASE TABLE MyISAM
  2024. NULL mysql latin1 BASE TABLE MyISAM
  2025. NULL mysql latin1 SYSTEM VIEW MEMORY
  2026. NULL mysql latin1 SYSTEM VIEW MEMORY
  2027. NULL mysql latin1 SYSTEM VIEW MEMORY
  2028. NULL mysql latin1 SYSTEM VIEW MEMORY
  2029. NULL mysql latin1 SYSTEM VIEW MEMORY
  2030. NULL mysql latin1 SYSTEM VIEW MEMORY
  2031. NULL mysql latin1 SYSTEM VIEW MEMORY
  2032. NULL mysql latin1 SYSTEM VIEW MEMORY
  2033. NULL mysql latin1 SYSTEM VIEW MEMORY
  2034. NULL mysql latin1 SYSTEM VIEW MEMORY
  2035. NULL mysql latin1 SYSTEM VIEW MEMORY
  2036. NULL mysql latin1 SYSTEM VIEW MEMORY
  2037. NULL mysql latin1 SYSTEM VIEW MEMORY
  2038. NULL mysql latin1 SYSTEM VIEW MEMORY
  2039. NULL mysql latin1 SYSTEM VIEW MEMORY
  2040. NULL mysql latin1 SYSTEM VIEW MEMORY
  2041. NULL mysql latin1 SYSTEM VIEW MEMORY
  2042. NULL mysql latin1 SYSTEM VIEW MEMORY
  2043. NULL mysql latin1 SYSTEM VIEW MEMORY
  2044. NULL mysql latin1 SYSTEM VIEW MEMORY
  2045. NULL mysql latin1 SYSTEM VIEW MyISAM
  2046. NULL mysql latin1 SYSTEM VIEW MyISAM
  2047. NULL mysql latin1 SYSTEM VIEW MyISAM
  2048. NULL mysql latin1 SYSTEM VIEW MyISAM
  2049. NULL mysql latin1 SYSTEM VIEW MyISAM
  2050. NULL mysql latin1 SYSTEM VIEW MyISAM
  2051. NULL mysql latin1 SYSTEM VIEW MyISAM
  2052. NULL mysql latin1 SYSTEM VIEW MyISAM
  2053. NULL mysql latin1 VIEW NULL
  2054. NULL mysql latin1 VIEW NULL
  2055. NULL mysql latin1 VIEW NULL
  2056. NULL test latin1 BASE TABLE CSV
  2057. NULL test latin1 BASE TABLE CSV
  2058. NULL test latin1 BASE TABLE InnoDB
  2059. NULL test latin1 BASE TABLE InnoDB
  2060. NULL test latin1 BASE TABLE InnoDB
  2061. NULL test latin1 BASE TABLE InnoDB
  2062. NULL test latin1 BASE TABLE InnoDB
  2063. NULL test latin1 BASE TABLE InnoDB
  2064. NULL test latin1 BASE TABLE InnoDB
  2065. NULL test latin1 BASE TABLE InnoDB
  2066. NULL test latin1 BASE TABLE InnoDB
  2067. NULL test latin1 BASE TABLE InnoDB
  2068. NULL test latin1 BASE TABLE InnoDB
  2069. NULL test latin1 BASE TABLE InnoDB
  2070. NULL test latin1 BASE TABLE InnoDB
  2071. NULL test latin1 BASE TABLE InnoDB
  2072. NULL test latin1 BASE TABLE InnoDB
  2073. NULL test latin1 BASE TABLE MyISAM
  2074. NULL test latin1 BASE TABLE MyISAM
  2075. NULL test latin1 BASE TABLE MyISAM
  2076. NULL test latin1 BASE TABLE MyISAM
  2077. NULL test latin1 BASE TABLE MyISAM
  2078. NULL test latin1 BASE TABLE MyISAM
  2079. NULL test latin1 BASE TABLE MyISAM
  2080. NULL test latin1 BASE TABLE MyISAM
  2081. NULL test latin1 BASE TABLE MyISAM
  2082. NULL test latin1 BASE TABLE MyISAM
  2083. NULL test latin1 BASE TABLE MyISAM
  2084. NULL test latin1 BASE TABLE MyISAM
  2085. NULL test latin1 BASE TABLE MyISAM
  2086. NULL test latin1 BASE TABLE MyISAM
  2087. NULL test latin1 BASE TABLE MyISAM
  2088. NULL test latin1 BASE TABLE MyISAM
  2089. NULL test latin1 BASE TABLE MyISAM
  2090. NULL test latin1 BASE TABLE MyISAM
  2091. NULL test latin1 BASE TABLE MyISAM
  2092. NULL test latin1 BASE TABLE MyISAM
  2093. NULL test latin1 BASE TABLE MyISAM
  2094. NULL test latin1 SYSTEM VIEW MEMORY
  2095. NULL test latin1 SYSTEM VIEW MEMORY
  2096. NULL test latin1 SYSTEM VIEW MEMORY
  2097. NULL test latin1 SYSTEM VIEW MEMORY
  2098. NULL test latin1 SYSTEM VIEW MEMORY
  2099. NULL test latin1 SYSTEM VIEW MEMORY
  2100. NULL test latin1 SYSTEM VIEW MEMORY
  2101. NULL test latin1 SYSTEM VIEW MEMORY
  2102. NULL test latin1 SYSTEM VIEW MEMORY
  2103. NULL test latin1 SYSTEM VIEW MEMORY
  2104. NULL test latin1 SYSTEM VIEW MEMORY
  2105. NULL test latin1 SYSTEM VIEW MEMORY
  2106. NULL test latin1 SYSTEM VIEW MEMORY
  2107. NULL test latin1 SYSTEM VIEW MEMORY
  2108. NULL test latin1 SYSTEM VIEW MEMORY
  2109. NULL test latin1 SYSTEM VIEW MEMORY
  2110. NULL test latin1 SYSTEM VIEW MEMORY
  2111. NULL test latin1 SYSTEM VIEW MEMORY
  2112. NULL test latin1 SYSTEM VIEW MEMORY
  2113. NULL test latin1 SYSTEM VIEW MEMORY
  2114. NULL test latin1 SYSTEM VIEW MyISAM
  2115. NULL test latin1 SYSTEM VIEW MyISAM
  2116. NULL test latin1 SYSTEM VIEW MyISAM
  2117. NULL test latin1 SYSTEM VIEW MyISAM
  2118. NULL test latin1 SYSTEM VIEW MyISAM
  2119. NULL test latin1 SYSTEM VIEW MyISAM
  2120. NULL test latin1 SYSTEM VIEW MyISAM
  2121. NULL test latin1 SYSTEM VIEW MyISAM
  2122. NULL test latin1 VIEW NULL
  2123. NULL test latin1 VIEW NULL
  2124. NULL test latin1 VIEW NULL
  2125. NULL test1 latin1 BASE TABLE CSV
  2126. NULL test1 latin1 BASE TABLE CSV
  2127. NULL test1 latin1 BASE TABLE InnoDB
  2128. NULL test1 latin1 BASE TABLE InnoDB
  2129. NULL test1 latin1 BASE TABLE InnoDB
  2130. NULL test1 latin1 BASE TABLE InnoDB
  2131. NULL test1 latin1 BASE TABLE InnoDB
  2132. NULL test1 latin1 BASE TABLE InnoDB
  2133. NULL test1 latin1 BASE TABLE InnoDB
  2134. NULL test1 latin1 BASE TABLE InnoDB
  2135. NULL test1 latin1 BASE TABLE InnoDB
  2136. NULL test1 latin1 BASE TABLE InnoDB
  2137. NULL test1 latin1 BASE TABLE InnoDB
  2138. NULL test1 latin1 BASE TABLE InnoDB
  2139. NULL test1 latin1 BASE TABLE InnoDB
  2140. NULL test1 latin1 BASE TABLE InnoDB
  2141. NULL test1 latin1 BASE TABLE InnoDB
  2142. NULL test1 latin1 BASE TABLE MyISAM
  2143. NULL test1 latin1 BASE TABLE MyISAM
  2144. NULL test1 latin1 BASE TABLE MyISAM
  2145. NULL test1 latin1 BASE TABLE MyISAM
  2146. NULL test1 latin1 BASE TABLE MyISAM
  2147. NULL test1 latin1 BASE TABLE MyISAM
  2148. NULL test1 latin1 BASE TABLE MyISAM
  2149. NULL test1 latin1 BASE TABLE MyISAM
  2150. NULL test1 latin1 BASE TABLE MyISAM
  2151. NULL test1 latin1 BASE TABLE MyISAM
  2152. NULL test1 latin1 BASE TABLE MyISAM
  2153. NULL test1 latin1 BASE TABLE MyISAM
  2154. NULL test1 latin1 BASE TABLE MyISAM
  2155. NULL test1 latin1 BASE TABLE MyISAM
  2156. NULL test1 latin1 BASE TABLE MyISAM
  2157. NULL test1 latin1 BASE TABLE MyISAM
  2158. NULL test1 latin1 BASE TABLE MyISAM
  2159. NULL test1 latin1 BASE TABLE MyISAM
  2160. NULL test1 latin1 BASE TABLE MyISAM
  2161. NULL test1 latin1 BASE TABLE MyISAM
  2162. NULL test1 latin1 BASE TABLE MyISAM
  2163. NULL test1 latin1 SYSTEM VIEW MEMORY
  2164. NULL test1 latin1 SYSTEM VIEW MEMORY
  2165. NULL test1 latin1 SYSTEM VIEW MEMORY
  2166. NULL test1 latin1 SYSTEM VIEW MEMORY
  2167. NULL test1 latin1 SYSTEM VIEW MEMORY
  2168. NULL test1 latin1 SYSTEM VIEW MEMORY
  2169. NULL test1 latin1 SYSTEM VIEW MEMORY
  2170. NULL test1 latin1 SYSTEM VIEW MEMORY
  2171. NULL test1 latin1 SYSTEM VIEW MEMORY
  2172. NULL test1 latin1 SYSTEM VIEW MEMORY
  2173. NULL test1 latin1 SYSTEM VIEW MEMORY
  2174. NULL test1 latin1 SYSTEM VIEW MEMORY
  2175. NULL test1 latin1 SYSTEM VIEW MEMORY
  2176. NULL test1 latin1 SYSTEM VIEW MEMORY
  2177. NULL test1 latin1 SYSTEM VIEW MEMORY
  2178. NULL test1 latin1 SYSTEM VIEW MEMORY
  2179. NULL test1 latin1 SYSTEM VIEW MEMORY
  2180. NULL test1 latin1 SYSTEM VIEW MEMORY
  2181. NULL test1 latin1 SYSTEM VIEW MEMORY
  2182. NULL test1 latin1 SYSTEM VIEW MEMORY
  2183. NULL test1 latin1 SYSTEM VIEW MyISAM
  2184. NULL test1 latin1 SYSTEM VIEW MyISAM
  2185. NULL test1 latin1 SYSTEM VIEW MyISAM
  2186. NULL test1 latin1 SYSTEM VIEW MyISAM
  2187. NULL test1 latin1 SYSTEM VIEW MyISAM
  2188. NULL test1 latin1 SYSTEM VIEW MyISAM
  2189. NULL test1 latin1 SYSTEM VIEW MyISAM
  2190. NULL test1 latin1 SYSTEM VIEW MyISAM
  2191. NULL test1 latin1 VIEW NULL
  2192. NULL test1 latin1 VIEW NULL
  2193. NULL test1 latin1 VIEW NULL
  2194. NULL test4 latin1 BASE TABLE CSV
  2195. NULL test4 latin1 BASE TABLE CSV
  2196. NULL test4 latin1 BASE TABLE InnoDB
  2197. NULL test4 latin1 BASE TABLE InnoDB
  2198. NULL test4 latin1 BASE TABLE InnoDB
  2199. NULL test4 latin1 BASE TABLE InnoDB
  2200. NULL test4 latin1 BASE TABLE InnoDB
  2201. NULL test4 latin1 BASE TABLE InnoDB
  2202. NULL test4 latin1 BASE TABLE InnoDB
  2203. NULL test4 latin1 BASE TABLE InnoDB
  2204. NULL test4 latin1 BASE TABLE InnoDB
  2205. NULL test4 latin1 BASE TABLE InnoDB
  2206. NULL test4 latin1 BASE TABLE InnoDB
  2207. NULL test4 latin1 BASE TABLE InnoDB
  2208. NULL test4 latin1 BASE TABLE InnoDB
  2209. NULL test4 latin1 BASE TABLE InnoDB
  2210. NULL test4 latin1 BASE TABLE InnoDB
  2211. NULL test4 latin1 BASE TABLE MyISAM
  2212. NULL test4 latin1 BASE TABLE MyISAM
  2213. NULL test4 latin1 BASE TABLE MyISAM
  2214. NULL test4 latin1 BASE TABLE MyISAM
  2215. NULL test4 latin1 BASE TABLE MyISAM
  2216. NULL test4 latin1 BASE TABLE MyISAM
  2217. NULL test4 latin1 BASE TABLE MyISAM
  2218. NULL test4 latin1 BASE TABLE MyISAM
  2219. NULL test4 latin1 BASE TABLE MyISAM
  2220. NULL test4 latin1 BASE TABLE MyISAM
  2221. NULL test4 latin1 BASE TABLE MyISAM
  2222. NULL test4 latin1 BASE TABLE MyISAM
  2223. NULL test4 latin1 BASE TABLE MyISAM
  2224. NULL test4 latin1 BASE TABLE MyISAM
  2225. NULL test4 latin1 BASE TABLE MyISAM
  2226. NULL test4 latin1 BASE TABLE MyISAM
  2227. NULL test4 latin1 BASE TABLE MyISAM
  2228. NULL test4 latin1 BASE TABLE MyISAM
  2229. NULL test4 latin1 BASE TABLE MyISAM
  2230. NULL test4 latin1 BASE TABLE MyISAM
  2231. NULL test4 latin1 BASE TABLE MyISAM
  2232. NULL test4 latin1 SYSTEM VIEW MEMORY
  2233. NULL test4 latin1 SYSTEM VIEW MEMORY
  2234. NULL test4 latin1 SYSTEM VIEW MEMORY
  2235. NULL test4 latin1 SYSTEM VIEW MEMORY
  2236. NULL test4 latin1 SYSTEM VIEW MEMORY
  2237. NULL test4 latin1 SYSTEM VIEW MEMORY
  2238. NULL test4 latin1 SYSTEM VIEW MEMORY
  2239. NULL test4 latin1 SYSTEM VIEW MEMORY
  2240. NULL test4 latin1 SYSTEM VIEW MEMORY
  2241. NULL test4 latin1 SYSTEM VIEW MEMORY
  2242. NULL test4 latin1 SYSTEM VIEW MEMORY
  2243. NULL test4 latin1 SYSTEM VIEW MEMORY
  2244. NULL test4 latin1 SYSTEM VIEW MEMORY
  2245. NULL test4 latin1 SYSTEM VIEW MEMORY
  2246. NULL test4 latin1 SYSTEM VIEW MEMORY
  2247. NULL test4 latin1 SYSTEM VIEW MEMORY
  2248. NULL test4 latin1 SYSTEM VIEW MEMORY
  2249. NULL test4 latin1 SYSTEM VIEW MEMORY
  2250. NULL test4 latin1 SYSTEM VIEW MEMORY
  2251. NULL test4 latin1 SYSTEM VIEW MEMORY
  2252. NULL test4 latin1 SYSTEM VIEW MyISAM
  2253. NULL test4 latin1 SYSTEM VIEW MyISAM
  2254. NULL test4 latin1 SYSTEM VIEW MyISAM
  2255. NULL test4 latin1 SYSTEM VIEW MyISAM
  2256. NULL test4 latin1 SYSTEM VIEW MyISAM
  2257. NULL test4 latin1 SYSTEM VIEW MyISAM
  2258. NULL test4 latin1 SYSTEM VIEW MyISAM
  2259. NULL test4 latin1 SYSTEM VIEW MyISAM
  2260. NULL test4 latin1 VIEW NULL
  2261. NULL test4 latin1 VIEW NULL
  2262. NULL test4 latin1 VIEW NULL
  2263. select * from columns;
  2264. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  2265. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2266. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2267. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  2268. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  2269. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2270. NULL information_schema COLLATIONS CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2271. NULL information_schema COLLATIONS ID 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(11) select
  2272. NULL information_schema COLLATIONS IS_DEFAULT 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2273. NULL information_schema COLLATIONS IS_COMPILED 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2274. NULL information_schema COLLATIONS SORTLEN 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  2275. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2276. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2277. NULL information_schema COLUMNS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2278. NULL information_schema COLUMNS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2279. NULL information_schema COLUMNS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2280. NULL information_schema COLUMNS COLUMN_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2281. NULL information_schema COLUMNS ORDINAL_POSITION 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2282. NULL information_schema COLUMNS COLUMN_DEFAULT 6 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2283. NULL information_schema COLUMNS IS_NULLABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2284. NULL information_schema COLUMNS DATA_TYPE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2285. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2286. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2287. NULL information_schema COLUMNS NUMERIC_PRECISION 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2288. NULL information_schema COLUMNS NUMERIC_SCALE 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2289. NULL information_schema COLUMNS CHARACTER_SET_NAME 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2290. NULL information_schema COLUMNS COLLATION_NAME 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2291. NULL information_schema COLUMNS COLUMN_TYPE 15 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2292. NULL information_schema COLUMNS COLUMN_KEY 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2293. NULL information_schema COLUMNS EXTRA 17 NO varchar 27 81 NULL NULL utf8 utf8_general_ci varchar(27) select
  2294. NULL information_schema COLUMNS PRIVILEGES 18 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  2295. NULL information_schema COLUMNS COLUMN_COMMENT 19 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  2296. NULL information_schema COLUMN_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  2297. NULL information_schema COLUMN_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2298. NULL information_schema COLUMN_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2299. NULL information_schema COLUMN_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2300. NULL information_schema COLUMN_PRIVILEGES COLUMN_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2301. NULL information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2302. NULL information_schema COLUMN_PRIVILEGES IS_GRANTABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2303. NULL information_schema ENGINES ENGINE 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2304. NULL information_schema ENGINES SUPPORT 2 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  2305. NULL information_schema ENGINES COMMENT 3 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  2306. NULL information_schema ENGINES TRANSACTIONS 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2307. NULL information_schema ENGINES XA 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2308. NULL information_schema ENGINES SAVEPOINTS 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2309. NULL information_schema EVENTS EVENT_CATALOG 1 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2310. NULL information_schema EVENTS EVENT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2311. NULL information_schema EVENTS EVENT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2312. NULL information_schema EVENTS DEFINER 4 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  2313. NULL information_schema EVENTS TIME_ZONE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2314. NULL information_schema EVENTS EVENT_BODY 6 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  2315. NULL information_schema EVENTS EVENT_DEFINITION 7 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2316. NULL information_schema EVENTS EVENT_TYPE 8 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  2317. NULL information_schema EVENTS EXECUTE_AT 9 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2318. NULL information_schema EVENTS INTERVAL_VALUE 10 NULL YES varchar 256 768 NULL NULL utf8 utf8_general_ci varchar(256) select
  2319. NULL information_schema EVENTS INTERVAL_FIELD 11 NULL YES varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  2320. NULL information_schema EVENTS SQL_MODE 12 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2321. NULL information_schema EVENTS STARTS 13 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2322. NULL information_schema EVENTS ENDS 14 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2323. NULL information_schema EVENTS STATUS 15 NO varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  2324. NULL information_schema EVENTS ON_COMPLETION 16 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  2325. NULL information_schema EVENTS CREATED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  2326. NULL information_schema EVENTS LAST_ALTERED 18 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  2327. NULL information_schema EVENTS LAST_EXECUTED 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2328. NULL information_schema EVENTS EVENT_COMMENT 20 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2329. NULL information_schema EVENTS ORIGINATOR 21 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  2330. NULL information_schema EVENTS CHARACTER_SET_CLIENT 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2331. NULL information_schema EVENTS COLLATION_CONNECTION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2332. NULL information_schema EVENTS DATABASE_COLLATION 24 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2333. NULL information_schema FILES FILE_ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2334. NULL information_schema FILES FILE_NAME 2 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2335. NULL information_schema FILES FILE_TYPE 3 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  2336. NULL information_schema FILES TABLESPACE_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2337. NULL information_schema FILES TABLE_CATALOG 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2338. NULL information_schema FILES TABLE_SCHEMA 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2339. NULL information_schema FILES TABLE_NAME 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2340. NULL information_schema FILES LOGFILE_GROUP_NAME 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2341. NULL information_schema FILES LOGFILE_GROUP_NUMBER 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2342. NULL information_schema FILES ENGINE 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2343. NULL information_schema FILES FULLTEXT_KEYS 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2344. NULL information_schema FILES DELETED_ROWS 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2345. NULL information_schema FILES UPDATE_COUNT 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2346. NULL information_schema FILES FREE_EXTENTS 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2347. NULL information_schema FILES TOTAL_EXTENTS 15 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2348. NULL information_schema FILES EXTENT_SIZE 16 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2349. NULL information_schema FILES INITIAL_SIZE 17 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2350. NULL information_schema FILES MAXIMUM_SIZE 18 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2351. NULL information_schema FILES AUTOEXTEND_SIZE 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2352. NULL information_schema FILES CREATION_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2353. NULL information_schema FILES LAST_UPDATE_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2354. NULL information_schema FILES LAST_ACCESS_TIME 22 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2355. NULL information_schema FILES RECOVER_TIME 23 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2356. NULL information_schema FILES TRANSACTION_COUNTER 24 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2357. NULL information_schema FILES VERSION 25 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2358. NULL information_schema FILES ROW_FORMAT 26 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  2359. NULL information_schema FILES TABLE_ROWS 27 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2360. NULL information_schema FILES AVG_ROW_LENGTH 28 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2361. NULL information_schema FILES DATA_LENGTH 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2362. NULL information_schema FILES MAX_DATA_LENGTH 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2363. NULL information_schema FILES INDEX_LENGTH 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2364. NULL information_schema FILES DATA_FREE 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2365. NULL information_schema FILES CREATE_TIME 33 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2366. NULL information_schema FILES UPDATE_TIME 34 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2367. NULL information_schema FILES CHECK_TIME 35 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2368. NULL information_schema FILES CHECKSUM 36 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2369. NULL information_schema FILES STATUS 37 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  2370. NULL information_schema FILES EXTRA 38 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  2371. NULL information_schema GLOBAL_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2372. NULL information_schema GLOBAL_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  2373. NULL information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2374. NULL information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  2375. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2376. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2377. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2378. NULL information_schema KEY_COLUMN_USAGE TABLE_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2379. NULL information_schema KEY_COLUMN_USAGE TABLE_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2380. NULL information_schema KEY_COLUMN_USAGE TABLE_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2381. NULL information_schema KEY_COLUMN_USAGE COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2382. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  2383. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(10) select
  2384. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2385. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2386. NULL information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME 12 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2387. NULL information_schema PARTITIONS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2388. NULL information_schema PARTITIONS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2389. NULL information_schema PARTITIONS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2390. NULL information_schema PARTITIONS PARTITION_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2391. NULL information_schema PARTITIONS SUBPARTITION_NAME 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2392. NULL information_schema PARTITIONS PARTITION_ORDINAL_POSITION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2393. NULL information_schema PARTITIONS SUBPARTITION_ORDINAL_POSITION 7 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2394. NULL information_schema PARTITIONS PARTITION_METHOD 8 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  2395. NULL information_schema PARTITIONS SUBPARTITION_METHOD 9 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  2396. NULL information_schema PARTITIONS PARTITION_EXPRESSION 10 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2397. NULL information_schema PARTITIONS SUBPARTITION_EXPRESSION 11 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2398. NULL information_schema PARTITIONS PARTITION_DESCRIPTION 12 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2399. NULL information_schema PARTITIONS TABLE_ROWS 13 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2400. NULL information_schema PARTITIONS AVG_ROW_LENGTH 14 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2401. NULL information_schema PARTITIONS DATA_LENGTH 15 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2402. NULL information_schema PARTITIONS MAX_DATA_LENGTH 16 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2403. NULL information_schema PARTITIONS INDEX_LENGTH 17 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2404. NULL information_schema PARTITIONS DATA_FREE 18 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2405. NULL information_schema PARTITIONS CREATE_TIME 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2406. NULL information_schema PARTITIONS UPDATE_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2407. NULL information_schema PARTITIONS CHECK_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2408. NULL information_schema PARTITIONS CHECKSUM 22 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2409. NULL information_schema PARTITIONS PARTITION_COMMENT 23 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  2410. NULL information_schema PARTITIONS NODEGROUP 24 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  2411. NULL information_schema PARTITIONS TABLESPACE_NAME 25 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2412. NULL information_schema PLUGINS PLUGIN_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2413. NULL information_schema PLUGINS PLUGIN_VERSION 2 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  2414. NULL information_schema PLUGINS PLUGIN_STATUS 3 NO varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  2415. NULL information_schema PLUGINS PLUGIN_TYPE 4 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  2416. NULL information_schema PLUGINS PLUGIN_TYPE_VERSION 5 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  2417. NULL information_schema PLUGINS PLUGIN_LIBRARY 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2418. NULL information_schema PLUGINS PLUGIN_LIBRARY_VERSION 7 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  2419. NULL information_schema PLUGINS PLUGIN_AUTHOR 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2420. NULL information_schema PLUGINS PLUGIN_DESCRIPTION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2421. NULL information_schema PLUGINS PLUGIN_LICENSE 10 NULL YES varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  2422. NULL information_schema PROCESSLIST ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2423. NULL information_schema PROCESSLIST USER 2 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  2424. NULL information_schema PROCESSLIST HOST 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2425. NULL information_schema PROCESSLIST DB 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2426. NULL information_schema PROCESSLIST COMMAND 5 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  2427. NULL information_schema PROCESSLIST TIME 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(7) select
  2428. NULL information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2429. NULL information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2430. NULL information_schema PROFILING QUERY_ID 1 0 NO int NULL NULL 10 0 NULL NULL int(20) select
  2431. NULL information_schema PROFILING SEQ 2 0 NO int NULL NULL 10 0 NULL NULL int(20) select
  2432. NULL information_schema PROFILING STATE 3 NO varchar 30 90 NULL NULL utf8 utf8_general_ci varchar(30) select
  2433. NULL information_schema PROFILING DURATION 4 0.000000 NO decimal NULL NULL 9 6 NULL NULL decimal(9,6) select
  2434. NULL information_schema PROFILING CPU_USER 5 NULL YES decimal NULL NULL 9 6 NULL NULL decimal(9,6) select
  2435. NULL information_schema PROFILING CPU_SYSTEM 6 NULL YES decimal NULL NULL 9 6 NULL NULL decimal(9,6) select
  2436. NULL information_schema PROFILING CONTEXT_VOLUNTARY 7 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  2437. NULL information_schema PROFILING CONTEXT_INVOLUNTARY 8 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  2438. NULL information_schema PROFILING BLOCK_OPS_IN 9 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  2439. NULL information_schema PROFILING BLOCK_OPS_OUT 10 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  2440. NULL information_schema PROFILING MESSAGES_SENT 11 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  2441. NULL information_schema PROFILING MESSAGES_RECEIVED 12 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  2442. NULL information_schema PROFILING PAGE_FAULTS_MAJOR 13 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  2443. NULL information_schema PROFILING PAGE_FAULTS_MINOR 14 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  2444. NULL information_schema PROFILING SWAPS 15 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  2445. NULL information_schema PROFILING SOURCE_FUNCTION 16 NULL YES varchar 30 90 NULL NULL utf8 utf8_general_ci varchar(30) select
  2446. NULL information_schema PROFILING SOURCE_FILE 17 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  2447. NULL information_schema PROFILING SOURCE_LINE 18 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  2448. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2449. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2450. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2451. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2452. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2453. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2454. NULL information_schema REFERENTIAL_CONSTRAINTS MATCH_OPTION 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2455. NULL information_schema REFERENTIAL_CONSTRAINTS UPDATE_RULE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2456. NULL information_schema REFERENTIAL_CONSTRAINTS DELETE_RULE 9 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2457. NULL information_schema REFERENTIAL_CONSTRAINTS TABLE_NAME 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2458. NULL information_schema REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME 11 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2459. NULL information_schema ROUTINES SPECIFIC_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2460. NULL information_schema ROUTINES ROUTINE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2461. NULL information_schema ROUTINES ROUTINE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2462. NULL information_schema ROUTINES ROUTINE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2463. NULL information_schema ROUTINES ROUTINE_TYPE 5 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  2464. NULL information_schema ROUTINES DTD_IDENTIFIER 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2465. NULL information_schema ROUTINES ROUTINE_BODY 7 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  2466. NULL information_schema ROUTINES ROUTINE_DEFINITION 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2467. NULL information_schema ROUTINES EXTERNAL_NAME 9 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2468. NULL information_schema ROUTINES EXTERNAL_LANGUAGE 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2469. NULL information_schema ROUTINES PARAMETER_STYLE 11 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  2470. NULL information_schema ROUTINES IS_DETERMINISTIC 12 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2471. NULL information_schema ROUTINES SQL_DATA_ACCESS 13 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2472. NULL information_schema ROUTINES SQL_PATH 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2473. NULL information_schema ROUTINES SECURITY_TYPE 15 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  2474. NULL information_schema ROUTINES CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  2475. NULL information_schema ROUTINES LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  2476. NULL information_schema ROUTINES SQL_MODE 18 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2477. NULL information_schema ROUTINES ROUTINE_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2478. NULL information_schema ROUTINES DEFINER 20 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  2479. NULL information_schema ROUTINES CHARACTER_SET_CLIENT 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2480. NULL information_schema ROUTINES COLLATION_CONNECTION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2481. NULL information_schema ROUTINES DATABASE_COLLATION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2482. NULL information_schema SCHEMATA CATALOG_NAME 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2483. NULL information_schema SCHEMATA SCHEMA_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2484. NULL information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2485. NULL information_schema SCHEMATA DEFAULT_COLLATION_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2486. NULL information_schema SCHEMATA SQL_PATH 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2487. NULL information_schema SCHEMA_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  2488. NULL information_schema SCHEMA_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2489. NULL information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2490. NULL information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2491. NULL information_schema SCHEMA_PRIVILEGES IS_GRANTABLE 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2492. NULL information_schema SESSION_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2493. NULL information_schema SESSION_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  2494. NULL information_schema SESSION_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2495. NULL information_schema SESSION_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  2496. NULL information_schema STATISTICS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2497. NULL information_schema STATISTICS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2498. NULL information_schema STATISTICS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2499. NULL information_schema STATISTICS NON_UNIQUE 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(1) select
  2500. NULL information_schema STATISTICS INDEX_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2501. NULL information_schema STATISTICS INDEX_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2502. NULL information_schema STATISTICS SEQ_IN_INDEX 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(2) select
  2503. NULL information_schema STATISTICS COLUMN_NAME 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2504. NULL information_schema STATISTICS COLLATION 9 NULL YES varchar 1 3 NULL NULL utf8 utf8_general_ci varchar(1) select
  2505. NULL information_schema STATISTICS CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2506. NULL information_schema STATISTICS SUB_PART 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(3) select
  2507. NULL information_schema STATISTICS PACKED 12 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  2508. NULL information_schema STATISTICS NULLABLE 13 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2509. NULL information_schema STATISTICS INDEX_TYPE 14 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  2510. NULL information_schema STATISTICS COMMENT 15 NULL YES varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  2511. NULL information_schema TABLES TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2512. NULL information_schema TABLES TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2513. NULL information_schema TABLES TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2514. NULL information_schema TABLES TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2515. NULL information_schema TABLES ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2516. NULL information_schema TABLES VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2517. NULL information_schema TABLES ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  2518. NULL information_schema TABLES TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2519. NULL information_schema TABLES AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2520. NULL information_schema TABLES DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2521. NULL information_schema TABLES MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2522. NULL information_schema TABLES INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2523. NULL information_schema TABLES DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2524. NULL information_schema TABLES AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2525. NULL information_schema TABLES CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2526. NULL information_schema TABLES UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2527. NULL information_schema TABLES CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2528. NULL information_schema TABLES TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2529. NULL information_schema TABLES CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2530. NULL information_schema TABLES CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  2531. NULL information_schema TABLES TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  2532. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2533. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2534. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2535. NULL information_schema TABLE_CONSTRAINTS TABLE_SCHEMA 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2536. NULL information_schema TABLE_CONSTRAINTS TABLE_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2537. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2538. NULL information_schema TABLE_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  2539. NULL information_schema TABLE_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2540. NULL information_schema TABLE_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2541. NULL information_schema TABLE_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2542. NULL information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2543. NULL information_schema TABLE_PRIVILEGES IS_GRANTABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2544. NULL information_schema TRIGGERS TRIGGER_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2545. NULL information_schema TRIGGERS TRIGGER_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2546. NULL information_schema TRIGGERS TRIGGER_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2547. NULL information_schema TRIGGERS EVENT_MANIPULATION 4 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  2548. NULL information_schema TRIGGERS EVENT_OBJECT_CATALOG 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2549. NULL information_schema TRIGGERS EVENT_OBJECT_SCHEMA 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2550. NULL information_schema TRIGGERS EVENT_OBJECT_TABLE 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2551. NULL information_schema TRIGGERS ACTION_ORDER 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2552. NULL information_schema TRIGGERS ACTION_CONDITION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2553. NULL information_schema TRIGGERS ACTION_STATEMENT 10 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2554. NULL information_schema TRIGGERS ACTION_ORIENTATION 11 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  2555. NULL information_schema TRIGGERS ACTION_TIMING 12 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  2556. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2557. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2558. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW 15 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2559. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2560. NULL information_schema TRIGGERS CREATED 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2561. NULL information_schema TRIGGERS SQL_MODE 18 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2562. NULL information_schema TRIGGERS DEFINER 19 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2563. NULL information_schema TRIGGERS CHARACTER_SET_CLIENT 20 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2564. NULL information_schema TRIGGERS COLLATION_CONNECTION 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2565. NULL information_schema TRIGGERS DATABASE_COLLATION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2566. NULL information_schema USER_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  2567. NULL information_schema USER_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2568. NULL information_schema USER_PRIVILEGES PRIVILEGE_TYPE 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2569. NULL information_schema USER_PRIVILEGES IS_GRANTABLE 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2570. NULL information_schema VIEWS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2571. NULL information_schema VIEWS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2572. NULL information_schema VIEWS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2573. NULL information_schema VIEWS VIEW_DEFINITION 4 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2574. NULL information_schema VIEWS CHECK_OPTION 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  2575. NULL information_schema VIEWS IS_UPDATABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2576. NULL information_schema VIEWS DEFINER 7 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  2577. NULL information_schema VIEWS SECURITY_TYPE 8 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  2578. NULL information_schema VIEWS CHARACTER_SET_CLIENT 9 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2579. NULL information_schema VIEWS COLLATION_CONNECTION 10 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2580. NULL db_datadict v1 TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select,insert,update,references
  2581. NULL db_datadict v1 TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2582. NULL db_datadict v1 TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2583. NULL db_datadict v1 TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2584. NULL db_datadict v1 ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2585. NULL db_datadict v1 VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2586. NULL db_datadict v1 ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select,insert,update,references
  2587. NULL db_datadict v1 TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2588. NULL db_datadict v1 AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2589. NULL db_datadict v1 DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2590. NULL db_datadict v1 MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2591. NULL db_datadict v1 INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2592. NULL db_datadict v1 DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2593. NULL db_datadict v1 AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2594. NULL db_datadict v1 CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2595. NULL db_datadict v1 UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2596. NULL db_datadict v1 CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2597. NULL db_datadict v1 TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2598. NULL db_datadict v1 CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2599. NULL db_datadict v1 CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select,insert,update,references
  2600. NULL db_datadict v1 TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select,insert,update,references
  2601. NULL db_datadict vu u 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select,insert,update,references
  2602. NULL db_datadict vu server 2 NO varchar 243 729 NULL NULL utf8 utf8_general_ci varchar(243) select,insert,update,references
  2603. NULL db_datadict vu Server_Clean 3 NO varchar 243 729 NULL NULL utf8 utf8_general_ci varchar(243) select,insert,update,references
  2604. NULL db_datadict vu1 u 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select,insert,update,references
  2605. NULL mysql columns_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2606. NULL mysql columns_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2607. NULL mysql columns_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  2608. NULL mysql columns_priv Table_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2609. NULL mysql columns_priv Column_name 5 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2610. NULL mysql columns_priv Timestamp 6 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  2611. NULL mysql columns_priv Column_priv 7 NO set 31 93 NULL NULL utf8 utf8_general_ci set('Select','Insert','Update','References') select,insert,update,references
  2612. NULL mysql db Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2613. NULL mysql db Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2614. NULL mysql db User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  2615. NULL mysql db Select_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2616. NULL mysql db Insert_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2617. NULL mysql db Update_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2618. NULL mysql db Delete_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2619. NULL mysql db Create_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2620. NULL mysql db Drop_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2621. NULL mysql db Grant_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2622. NULL mysql db References_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2623. NULL mysql db Index_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2624. NULL mysql db Alter_priv 13 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2625. NULL mysql db Create_tmp_table_priv 14 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2626. NULL mysql db Lock_tables_priv 15 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2627. NULL mysql db Create_view_priv 16 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2628. NULL mysql db Show_view_priv 17 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2629. NULL mysql db Create_routine_priv 18 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2630. NULL mysql db Alter_routine_priv 19 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2631. NULL mysql db Execute_priv 20 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2632. NULL mysql db Event_priv 21 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2633. NULL mysql db Trigger_priv 22 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2634. NULL mysql event db 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2635. NULL mysql event name 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  2636. NULL mysql event body 3 NULL NO longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2637. NULL mysql event definer 4 NO char 77 231 NULL NULL utf8 utf8_bin char(77) select,insert,update,references
  2638. NULL mysql event execute_at 5 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2639. NULL mysql event interval_value 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2640. NULL mysql event interval_field 7 NULL YES enum 18 54 NULL NULL utf8 utf8_general_ci enum('YEAR','QUARTER','MONTH','DAY','HOUR','MINUTE','WEEK','SECOND','MICROSECOND','YEAR_MONTH','DAY_HOUR','DAY_MINUTE','DAY_SECOND','HOUR_MINUTE','HOUR_SECOND','MINUTE_SECOND','DAY_MICROSECOND','HOUR_MICROSECOND','MINUTE_MICROSECOND','SECOND_MICROSECOND') select,insert,update,references
  2641. NULL mysql event created 8 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  2642. NULL mysql event modified 9 0000-00-00 00:00:00 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2643. NULL mysql event last_executed 10 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2644. NULL mysql event starts 11 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2645. NULL mysql event ends 12 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2646. NULL mysql event status 13 ENABLED NO enum 18 54 NULL NULL utf8 utf8_general_ci enum('ENABLED','DISABLED','SLAVESIDE_DISABLED') select,insert,update,references
  2647. NULL mysql event on_completion 14 DROP NO enum 8 24 NULL NULL utf8 utf8_general_ci enum('DROP','PRESERVE') select,insert,update,references
  2648. NULL mysql event sql_mode 15 NO set 431 1293 NULL NULL utf8 utf8_general_ci set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE') select,insert,update,references
  2649. NULL mysql event comment 16 NO char 64 192 NULL NULL utf8 utf8_bin char(64) select,insert,update,references
  2650. NULL mysql event originator 17 NULL NO int NULL NULL 10 0 NULL NULL int(10) select,insert,update,references
  2651. NULL mysql event time_zone 18 SYSTEM NO char 64 64 NULL NULL latin1 latin1_swedish_ci char(64) select,insert,update,references
  2652. NULL mysql event character_set_client 19 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  2653. NULL mysql event collation_connection 20 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  2654. NULL mysql event db_collation 21 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  2655. NULL mysql event body_utf8 22 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2656. NULL mysql func name 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2657. NULL mysql func ret 2 0 NO tinyint NULL NULL 3 0 NULL NULL tinyint(1) select,insert,update,references
  2658. NULL mysql func dl 3 NO char 128 384 NULL NULL utf8 utf8_bin char(128) select,insert,update,references
  2659. NULL mysql func type 4 NULL NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('function','aggregate') select,insert,update,references
  2660. NULL mysql general_log event_time 1 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  2661. NULL mysql general_log user_host 2 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  2662. NULL mysql general_log thread_id 3 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2663. NULL mysql general_log server_id 4 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2664. NULL mysql general_log command_type 5 NULL NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2665. NULL mysql general_log argument 6 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  2666. NULL mysql help_category help_category_id 1 NULL NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned PRI select,insert,update,references
  2667. NULL mysql help_category name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  2668. NULL mysql help_category parent_category_id 3 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  2669. NULL mysql help_category url 4 NULL NO char 128 384 NULL NULL utf8 utf8_general_ci char(128) select,insert,update,references
  2670. NULL mysql help_keyword help_keyword_id 1 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  2671. NULL mysql help_keyword name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  2672. NULL mysql help_relation help_topic_id 1 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  2673. NULL mysql help_relation help_keyword_id 2 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  2674. NULL mysql help_topic help_topic_id 1 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  2675. NULL mysql help_topic name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  2676. NULL mysql help_topic help_category_id 3 NULL NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  2677. NULL mysql help_topic description 4 NULL NO text 65535 65535 NULL NULL utf8 utf8_general_ci text select,insert,update,references
  2678. NULL mysql help_topic example 5 NULL NO text 65535 65535 NULL NULL utf8 utf8_general_ci text select,insert,update,references
  2679. NULL mysql help_topic url 6 NULL NO char 128 384 NULL NULL utf8 utf8_general_ci char(128) select,insert,update,references
  2680. NULL mysql host Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2681. NULL mysql host Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2682. NULL mysql host Select_priv 3 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2683. NULL mysql host Insert_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2684. NULL mysql host Update_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2685. NULL mysql host Delete_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2686. NULL mysql host Create_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2687. NULL mysql host Drop_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2688. NULL mysql host Grant_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2689. NULL mysql host References_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2690. NULL mysql host Index_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2691. NULL mysql host Alter_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2692. NULL mysql host Create_tmp_table_priv 13 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2693. NULL mysql host Lock_tables_priv 14 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2694. NULL mysql host Create_view_priv 15 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2695. NULL mysql host Show_view_priv 16 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2696. NULL mysql host Create_routine_priv 17 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2697. NULL mysql host Alter_routine_priv 18 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2698. NULL mysql host Execute_priv 19 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2699. NULL mysql host Trigger_priv 20 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2700. NULL mysql ndb_binlog_index Position 1 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2701. NULL mysql ndb_binlog_index File 2 NULL NO varchar 255 255 NULL NULL latin1 latin1_swedish_ci varchar(255) select,insert,update,references
  2702. NULL mysql ndb_binlog_index epoch 3 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned PRI select,insert,update,references
  2703. NULL mysql ndb_binlog_index inserts 4 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2704. NULL mysql ndb_binlog_index updates 5 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2705. NULL mysql ndb_binlog_index deletes 6 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2706. NULL mysql ndb_binlog_index schemaops 7 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2707. NULL mysql plugin name 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2708. NULL mysql plugin dl 2 NO char 128 384 NULL NULL utf8 utf8_bin char(128) select,insert,update,references
  2709. NULL mysql proc db 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2710. NULL mysql proc name 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  2711. NULL mysql proc type 3 NULL NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('FUNCTION','PROCEDURE') PRI select,insert,update,references
  2712. NULL mysql proc specific_name 4 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2713. NULL mysql proc language 5 SQL NO enum 3 9 NULL NULL utf8 utf8_general_ci enum('SQL') select,insert,update,references
  2714. NULL mysql proc sql_data_access 6 CONTAINS_SQL NO enum 17 51 NULL NULL utf8 utf8_general_ci enum('CONTAINS_SQL','NO_SQL','READS_SQL_DATA','MODIFIES_SQL_DATA') select,insert,update,references
  2715. NULL mysql proc is_deterministic 7 NO NO enum 3 9 NULL NULL utf8 utf8_general_ci enum('YES','NO') select,insert,update,references
  2716. NULL mysql proc security_type 8 DEFINER NO enum 7 21 NULL NULL utf8 utf8_general_ci enum('INVOKER','DEFINER') select,insert,update,references
  2717. NULL mysql proc param_list 9 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2718. NULL mysql proc returns 10 NULL NO longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2719. NULL mysql proc body 11 NULL NO longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2720. NULL mysql proc definer 12 NO char 77 231 NULL NULL utf8 utf8_bin char(77) select,insert,update,references
  2721. NULL mysql proc created 13 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  2722. NULL mysql proc modified 14 0000-00-00 00:00:00 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2723. NULL mysql proc sql_mode 15 NO set 431 1293 NULL NULL utf8 utf8_general_ci set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE') select,insert,update,references
  2724. NULL mysql proc comment 16 NO char 64 192 NULL NULL utf8 utf8_bin char(64) select,insert,update,references
  2725. NULL mysql proc character_set_client 17 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  2726. NULL mysql proc collation_connection 18 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  2727. NULL mysql proc db_collation 19 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  2728. NULL mysql proc body_utf8 20 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2729. NULL mysql procs_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2730. NULL mysql procs_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2731. NULL mysql procs_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  2732. NULL mysql procs_priv Routine_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2733. NULL mysql procs_priv Routine_type 5 NULL NO enum 9 27 NULL NULL utf8 utf8_bin enum('FUNCTION','PROCEDURE') PRI select,insert,update,references
  2734. NULL mysql procs_priv Grantor 6 NO char 77 231 NULL NULL utf8 utf8_bin char(77) MUL select,insert,update,references
  2735. NULL mysql procs_priv Proc_priv 7 NO set 27 81 NULL NULL utf8 utf8_general_ci set('Execute','Alter Routine','Grant') select,insert,update,references
  2736. NULL mysql procs_priv Timestamp 8 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  2737. NULL mysql servers Server_name 1 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  2738. NULL mysql servers Host 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2739. NULL mysql servers Db 3 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2740. NULL mysql servers Username 4 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2741. NULL mysql servers Password 5 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2742. NULL mysql servers Port 6 0 NO int NULL NULL 10 0 NULL NULL int(4) select,insert,update,references
  2743. NULL mysql servers Socket 7 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2744. NULL mysql servers Wrapper 8 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2745. NULL mysql servers Owner 9 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2746. NULL mysql slow_log start_time 1 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  2747. NULL mysql slow_log user_host 2 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  2748. NULL mysql slow_log query_time 3 NULL NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  2749. NULL mysql slow_log lock_time 4 NULL NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  2750. NULL mysql slow_log rows_sent 5 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2751. NULL mysql slow_log rows_examined 6 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2752. NULL mysql slow_log db 7 NULL NO varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select,insert,update,references
  2753. NULL mysql slow_log last_insert_id 8 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2754. NULL mysql slow_log insert_id 9 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2755. NULL mysql slow_log server_id 10 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2756. NULL mysql slow_log sql_text 11 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  2757. NULL mysql tables_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2758. NULL mysql tables_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2759. NULL mysql tables_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  2760. NULL mysql tables_priv Table_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2761. NULL mysql tables_priv Grantor 5 NO char 77 231 NULL NULL utf8 utf8_bin char(77) MUL select,insert,update,references
  2762. NULL mysql tables_priv Timestamp 6 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  2763. NULL mysql tables_priv Table_priv 7 NO set 98 294 NULL NULL utf8 utf8_general_ci set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter','Create View','Show view','Trigger') select,insert,update,references
  2764. NULL mysql tables_priv Column_priv 8 NO set 31 93 NULL NULL utf8 utf8_general_ci set('Select','Insert','Update','References') select,insert,update,references
  2765. NULL mysql time_zone Time_zone_id 1 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI auto_increment select,insert,update,references
  2766. NULL mysql time_zone Use_leap_seconds 2 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('Y','N') select,insert,update,references
  2767. NULL mysql time_zone_leap_second Transition_time 1 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) PRI select,insert,update,references
  2768. NULL mysql time_zone_leap_second Correction 2 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2769. NULL mysql time_zone_name Name 1 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  2770. NULL mysql time_zone_name Time_zone_id 2 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  2771. NULL mysql time_zone_transition Time_zone_id 1 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  2772. NULL mysql time_zone_transition Transition_time 2 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) PRI select,insert,update,references
  2773. NULL mysql time_zone_transition Transition_type_id 3 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  2774. NULL mysql time_zone_transition_type Time_zone_id 1 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  2775. NULL mysql time_zone_transition_type Transition_type_id 2 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  2776. NULL mysql time_zone_transition_type Offset 3 0 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2777. NULL mysql time_zone_transition_type Is_DST 4 0 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  2778. NULL mysql time_zone_transition_type Abbreviation 5 NO char 8 24 NULL NULL utf8 utf8_general_ci char(8) select,insert,update,references
  2779. NULL mysql user Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2780. NULL mysql user User 2 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  2781. NULL mysql user Password 3 NO char 41 41 NULL NULL latin1 latin1_bin char(41) select,insert,update,references
  2782. NULL mysql user Select_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2783. NULL mysql user Insert_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2784. NULL mysql user Update_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2785. NULL mysql user Delete_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2786. NULL mysql user Create_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2787. NULL mysql user Drop_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2788. NULL mysql user Reload_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2789. NULL mysql user Shutdown_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2790. NULL mysql user Process_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2791. NULL mysql user File_priv 13 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2792. NULL mysql user Grant_priv 14 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2793. NULL mysql user References_priv 15 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2794. NULL mysql user Index_priv 16 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2795. NULL mysql user Alter_priv 17 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2796. NULL mysql user Show_db_priv 18 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2797. NULL mysql user Super_priv 19 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2798. NULL mysql user Create_tmp_table_priv 20 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2799. NULL mysql user Lock_tables_priv 21 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2800. NULL mysql user Execute_priv 22 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2801. NULL mysql user Repl_slave_priv 23 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2802. NULL mysql user Repl_client_priv 24 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2803. NULL mysql user Create_view_priv 25 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2804. NULL mysql user Show_view_priv 26 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2805. NULL mysql user Create_routine_priv 27 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2806. NULL mysql user Alter_routine_priv 28 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2807. NULL mysql user Create_user_priv 29 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2808. NULL mysql user Event_priv 30 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2809. NULL mysql user Trigger_priv 31 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2810. NULL mysql user ssl_type 32 NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('','ANY','X509','SPECIFIED') select,insert,update,references
  2811. NULL mysql user ssl_cipher 33 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2812. NULL mysql user x509_issuer 34 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2813. NULL mysql user x509_subject 35 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2814. NULL mysql user max_questions 36 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  2815. NULL mysql user max_updates 37 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  2816. NULL mysql user max_connections 38 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  2817. NULL mysql user max_user_connections 39 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  2818. NULL test t1 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2819. NULL test t1 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2820. NULL test t1 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2821. NULL test t1 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2822. NULL test t1 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2823. NULL test t1 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2824. NULL test t10 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2825. NULL test t10 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2826. NULL test t10 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2827. NULL test t10 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2828. NULL test t10 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2829. NULL test t10 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2830. NULL test t11 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2831. NULL test t11 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2832. NULL test t11 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2833. NULL test t11 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2834. NULL test t11 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2835. NULL test t11 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2836. NULL test t2 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2837. NULL test t2 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2838. NULL test t2 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2839. NULL test t2 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2840. NULL test t2 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2841. NULL test t2 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2842. NULL test t3 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2843. NULL test t3 f2 2 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2844. NULL test t3 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2845. NULL test t4 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2846. NULL test t4 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2847. NULL test t4 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2848. NULL test t4 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2849. NULL test t4 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2850. NULL test t4 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2851. NULL test t7 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2852. NULL test t7 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2853. NULL test t7 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2854. NULL test t7 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2855. NULL test t8 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2856. NULL test t8 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2857. NULL test t8 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2858. NULL test t8 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2859. NULL test t9 f1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2860. NULL test t9 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2861. NULL test t9 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2862. NULL test tb1 f1 1 NULL YES char 0 0 NULL NULL latin1 latin1_swedish_ci char(0) select,insert,update,references
  2863. NULL test tb1 f2 2 NULL YES char 0 0 NULL NULL latin1 latin1_bin char(0) select,insert,update,references
  2864. NULL test tb1 f3 3 NULL YES char 0 0 NULL NULL latin1 latin1_swedish_ci char(0) select,insert,update,references
  2865. NULL test tb1 f4 4 NULL YES tinytext 127 255 NULL NULL ucs2 ucs2_general_ci tinytext select,insert,update,references
  2866. NULL test tb1 f5 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  2867. NULL test tb1 f6 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  2868. NULL test tb1 f7 7 NULL YES longtext 4294967295 4294967295 NULL NULL latin1 latin1_swedish_ci longtext select,insert,update,references
  2869. NULL test tb1 f8 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  2870. NULL test tb1 f9 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2871. NULL test tb1 f10 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  2872. NULL test tb1 f11 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2873. NULL test tb1 f12 12 NULL YES binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  2874. NULL test tb1 f13 13 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  2875. NULL test tb1 f14 14 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  2876. NULL test tb1 f15 15 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  2877. NULL test tb1 f16 16 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  2878. NULL test tb1 f17 17 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  2879. NULL test tb1 f18 18 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  2880. NULL test tb1 f19 19 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  2881. NULL test tb1 f20 20 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  2882. NULL test tb1 f21 21 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  2883. NULL test tb1 f22 22 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  2884. NULL test tb1 f23 23 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  2885. NULL test tb1 f24 24 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  2886. NULL test tb1 f25 25 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2887. NULL test tb1 f26 26 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  2888. NULL test tb1 f27 27 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  2889. NULL test tb1 f28 28 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  2890. NULL test tb1 f29 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  2891. NULL test tb1 f30 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2892. NULL test tb1 f31 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  2893. NULL test tb1 f32 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  2894. NULL test tb1 f33 33 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2895. NULL test tb1 f34 34 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2896. NULL test tb1 f35 35 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2897. NULL test tb1 f36 36 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2898. NULL test tb1 f37 37 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2899. NULL test tb1 f38 38 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  2900. NULL test tb1 f39 39 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2901. NULL test tb1 f40 40 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  2902. NULL test tb1 f41 41 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2903. NULL test tb1 f42 42 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2904. NULL test tb1 f43 43 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2905. NULL test tb1 f44 44 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2906. NULL test tb1 f45 45 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2907. NULL test tb1 f46 46 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  2908. NULL test tb1 f47 47 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2909. NULL test tb1 f48 48 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  2910. NULL test tb1 f49 49 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2911. NULL test tb1 f50 50 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2912. NULL test tb1 f51 51 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2913. NULL test tb1 f52 52 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2914. NULL test tb1 f53 53 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2915. NULL test tb1 f54 54 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2916. NULL test tb1 f55 55 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2917. NULL test tb1 f56 56 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2918. NULL test tb1 f57 57 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2919. NULL test tb1 f58 58 99 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  2920. NULL test tb2 f59 1 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2921. NULL test tb2 f60 2 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  2922. NULL test tb2 f61 3 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2923. NULL test tb2 f62 4 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2924. NULL test tb2 f63 5 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2925. NULL test tb2 f64 6 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2926. NULL test tb2 f65 7 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2927. NULL test tb2 f66 8 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  2928. NULL test tb2 f67 9 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2929. NULL test tb2 f68 10 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  2930. NULL test tb2 f69 11 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2931. NULL test tb2 f70 12 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2932. NULL test tb2 f71 13 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2933. NULL test tb2 f72 14 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2934. NULL test tb2 f73 15 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  2935. NULL test tb2 f74 16 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  2936. NULL test tb2 f75 17 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2937. NULL test tb2 f76 18 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2938. NULL test tb2 f77 19 7.7 YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  2939. NULL test tb2 f78 20 7.7 YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  2940. NULL test tb2 f79 21 00000000000000000007.7 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2941. NULL test tb2 f80 22 00000000000000000008.8 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2942. NULL test tb2 f81 23 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2943. NULL test tb2 f82 24 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2944. NULL test tb2 f83 25 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2945. NULL test tb2 f84 26 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2946. NULL test tb2 f85 27 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2947. NULL test tb2 f86 28 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2948. NULL test tb2 f87 29 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2949. NULL test tb2 f88 30 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2950. NULL test tb2 f89 31 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2951. NULL test tb2 f90 32 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2952. NULL test tb2 f91 33 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2953. NULL test tb2 f92 34 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2954. NULL test tb2 f93 35 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2955. NULL test tb2 f94 36 8.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  2956. NULL test tb2 f95 37 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2957. NULL test tb2 f96 38 8.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  2958. NULL test tb2 f97 39 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2959. NULL test tb2 f98 40 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2960. NULL test tb2 f99 41 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2961. NULL test tb2 f100 42 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2962. NULL test tb2 f101 43 2000-01-01 NO date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2963. NULL test tb2 f102 44 00:00:20 NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  2964. NULL test tb2 f103 45 0002-02-02 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2965. NULL test tb2 f104 46 2000-12-31 23:59:59 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2966. NULL test tb2 f105 47 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  2967. NULL test tb2 f106 48 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  2968. NULL test tb2 f107 49 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  2969. NULL test tb2 f108 50 1enum NO enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  2970. NULL test tb2 f109 51 1set NO set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  2971. NULL test tb3 f118 1 a NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  2972. NULL test tb3 f119 2  NO char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  2973. NULL test tb3 f120 3  NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  2974. NULL test tb3 f121 4 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  2975. NULL test tb3 f122 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  2976. NULL test tb3 f123 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  2977. NULL test tb3 f124 7 NULL YES longtext 2147483647 4294967295 NULL NULL ucs2 ucs2_general_ci longtext select,insert,update,references
  2978. NULL test tb3 f125 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  2979. NULL test tb3 f126 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2980. NULL test tb3 f127 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  2981. NULL test tb3 f128 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2982. NULL test tb3 f129 12  NO binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  2983. NULL test tb3 f130 13 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  2984. NULL test tb3 f131 14 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  2985. NULL test tb3 f132 15 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  2986. NULL test tb3 f133 16 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  2987. NULL test tb3 f134 17 999 NO smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  2988. NULL test tb3 f135 18 999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  2989. NULL test tb3 f136 19 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  2990. NULL test tb3 f137 20 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  2991. NULL test tb3 f138 21 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  2992. NULL test tb3 f139 22 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  2993. NULL test tb3 f140 23 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  2994. NULL test tb3 f141 24 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  2995. NULL test tb3 f142 25 99999 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2996. NULL test tb3 f143 26 99999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  2997. NULL test tb3 f144 27 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  2998. NULL test tb3 f145 28 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  2999. NULL test tb3 f146 29 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  3000. NULL test tb3 f147 30 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  3001. NULL test tb3 f148 31 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  3002. NULL test tb3 f149 32 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  3003. NULL test tb3 f150 33 1000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  3004. NULL test tb3 f151 34 999 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  3005. NULL test tb3 f152 35 0000001000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3006. NULL test tb3 f153 36 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3007. NULL test tb3 f154 37 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  3008. NULL test tb3 f155 38 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  3009. NULL test tb3 f156 39 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  3010. NULL test tb3 f157 40 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  3011. NULL test tb3 f158 41 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3012. NULL test tb3 f159 42 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  3013. NULL test tb3 f160 43 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3014. NULL test tb3 f161 44 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  3015. NULL test tb3 f162 45 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  3016. NULL test tb3 f163 46 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  3017. NULL test tb3 f164 47 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  3018. NULL test tb3 f165 48 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  3019. NULL test tb3 f166 49 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3020. NULL test tb3 f167 50 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  3021. NULL test tb3 f168 51 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3022. NULL test tb3 f169 52 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  3023. NULL test tb3 f170 53 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  3024. NULL test tb3 f171 54 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  3025. NULL test tb3 f172 55 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3026. NULL test tb3 f173 56 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3027. NULL test tb3 f174 57 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  3028. NULL test tb3 f175 58 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  3029. NULL test tb4 f176 1 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  3030. NULL test tb4 f177 2 9 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  3031. NULL test tb4 f178 3 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3032. NULL test tb4 f179 4 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  3033. NULL test tb4 f180 5 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3034. NULL test tb4 f181 6 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  3035. NULL test tb4 f182 7 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  3036. NULL test tb4 f183 8 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  3037. NULL test tb4 f184 9 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  3038. NULL test tb4 f185 10 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  3039. NULL test tb4 f186 11 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3040. NULL test tb4 f187 12 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  3041. NULL test tb4 f188 13 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3042. NULL test tb4 f189 14 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  3043. NULL test tb4 f190 15 88.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  3044. NULL test tb4 f191 16 88.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  3045. NULL test tb4 f192 17 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  3046. NULL test tb4 f193 18 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  3047. NULL test tb4 f194 19 55.5 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  3048. NULL test tb4 f195 20 55.5 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  3049. NULL test tb4 f196 21 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  3050. NULL test tb4 f197 22 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  3051. NULL test tb4 f198 23 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  3052. NULL test tb4 f199 24 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  3053. NULL test tb4 f200 25 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3054. NULL test tb4 f201 26 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3055. NULL test tb4 f202 27 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  3056. NULL test tb4 f203 28 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  3057. NULL test tb4 f204 29 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  3058. NULL test tb4 f205 30 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  3059. NULL test tb4 f206 31 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3060. NULL test tb4 f207 32 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3061. NULL test tb4 f208 33 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3062. NULL test tb4 f209 34 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3063. NULL test tb4 f210 35 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  3064. NULL test tb4 f211 36 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  3065. NULL test tb4 f212 37 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  3066. NULL test tb4 f213 38 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  3067. NULL test tb4 f214 39 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3068. NULL test tb4 f215 40 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  3069. NULL test tb4 f216 41 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3070. NULL test tb4 f217 42 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  3071. NULL test tb4 f218 43 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  3072. NULL test tb4 f219 44 NULL YES time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  3073. NULL test tb4 f220 45 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  3074. NULL test tb4 f221 46 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  3075. NULL test tb4 f222 47 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  3076. NULL test tb4 f223 48 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  3077. NULL test tb4 f224 49 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  3078. NULL test tb4 f225 50 NULL YES enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  3079. NULL test tb4 f226 51 NULL YES set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  3080. NULL test tb4 f235 52 NULL YES char 0 0 NULL NULL ucs2 ucs2_general_ci char(0) select,insert,update,references
  3081. NULL test tb4 f236 53 NULL YES char 90 90 NULL NULL latin1 latin1_swedish_ci char(90) select,insert,update,references
  3082. NULL test tb4 f237 54 NULL YES char 255 255 NULL NULL latin1 latin1_swedish_ci char(255) select,insert,update,references
  3083. NULL test tb4 f238 55 NULL YES varchar 0 0 NULL NULL latin1 latin1_swedish_ci varchar(0) select,insert,update,references
  3084. NULL test tb4 f239 56 NULL YES varchar 20000 20000 NULL NULL latin1 latin1_bin varchar(20000) select,insert,update,references
  3085. NULL test tb4 f240 57 NULL YES varchar 2000 4000 NULL NULL ucs2 ucs2_general_ci varchar(2000) select,insert,update,references
  3086. NULL test tb4 f241 58 NULL YES char 100 200 NULL NULL ucs2 ucs2_general_ci char(100) select,insert,update,references
  3087. NULL test1 tb2 f59 1 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  3088. NULL test1 tb2 f60 2 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  3089. NULL test1 tb2 f61 3 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3090. NULL test1 tb2 f62 4 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  3091. NULL test1 tb2 f63 5 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3092. NULL test1 tb2 f64 6 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  3093. NULL test1 tb2 f65 7 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  3094. NULL test1 tb2 f66 8 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  3095. NULL test1 tb2 f67 9 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  3096. NULL test1 tb2 f68 10 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  3097. NULL test1 tb2 f69 11 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3098. NULL test1 tb2 f70 12 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  3099. NULL test1 tb2 f71 13 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  3100. NULL test1 tb2 f72 14 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  3101. NULL test1 tb2 f73 15 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  3102. NULL test1 tb2 f74 16 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  3103. NULL test1 tb2 f75 17 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  3104. NULL test1 tb2 f76 18 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  3105. NULL test1 tb2 f77 19 7.7 YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  3106. NULL test1 tb2 f78 20 7.7 YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  3107. NULL test1 tb2 f79 21 00000000000000000007.7 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  3108. NULL test1 tb2 f80 22 00000000000000000008.8 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  3109. NULL test1 tb2 f81 23 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  3110. NULL test1 tb2 f82 24 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  3111. NULL test1 tb2 f83 25 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3112. NULL test1 tb2 f84 26 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3113. NULL test1 tb2 f85 27 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  3114. NULL test1 tb2 f86 28 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  3115. NULL test1 tb2 f87 29 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  3116. NULL test1 tb2 f88 30 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  3117. NULL test1 tb2 f89 31 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3118. NULL test1 tb2 f90 32 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3119. NULL test1 tb2 f91 33 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3120. NULL test1 tb2 f92 34 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3121. NULL test1 tb2 f93 35 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  3122. NULL test1 tb2 f94 36 8.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  3123. NULL test1 tb2 f95 37 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  3124. NULL test1 tb2 f96 38 8.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  3125. NULL test1 tb2 f97 39 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3126. NULL test1 tb2 f98 40 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  3127. NULL test1 tb2 f99 41 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  3128. NULL test1 tb2 f100 42 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  3129. NULL test1 tb2 f101 43 2000-01-01 NO date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  3130. NULL test1 tb2 f102 44 00:00:20 NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  3131. NULL test1 tb2 f103 45 0002-02-02 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  3132. NULL test1 tb2 f104 46 2000-12-31 23:59:59 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  3133. NULL test1 tb2 f105 47 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  3134. NULL test1 tb2 f106 48 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  3135. NULL test1 tb2 f107 49 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  3136. NULL test1 tb2 f108 50 1enum NO enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  3137. NULL test1 tb2 f109 51 1set NO set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  3138. NULL test4 t6 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  3139. NULL test4 t6 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  3140. NULL test4 t6 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  3141. NULL test4 t6 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  3142. NULL test4 t6 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  3143. NULL test4 t6 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  3144. select * from character_sets;
  3145. CHARACTER_SET_NAME DEFAULT_COLLATE_NAME DESCRIPTION MAXLEN
  3146. big5 big5_chinese_ci Big5 Traditional Chinese 2
  3147. dec8 dec8_swedish_ci DEC West European 1
  3148. cp850 cp850_general_ci DOS West European 1
  3149. hp8 hp8_english_ci HP West European 1
  3150. koi8r koi8r_general_ci KOI8-R Relcom Russian 1
  3151. latin1 latin1_swedish_ci cp1252 West European 1
  3152. latin2 latin2_general_ci ISO 8859-2 Central European 1
  3153. swe7 swe7_swedish_ci 7bit Swedish 1
  3154. ascii ascii_general_ci US ASCII 1
  3155. ujis ujis_japanese_ci EUC-JP Japanese 3
  3156. sjis sjis_japanese_ci Shift-JIS Japanese 2
  3157. hebrew hebrew_general_ci ISO 8859-8 Hebrew 1
  3158. tis620 tis620_thai_ci TIS620 Thai 1
  3159. euckr euckr_korean_ci EUC-KR Korean 2
  3160. koi8u koi8u_general_ci KOI8-U Ukrainian 1
  3161. gb2312 gb2312_chinese_ci GB2312 Simplified Chinese 2
  3162. greek greek_general_ci ISO 8859-7 Greek 1
  3163. cp1250 cp1250_general_ci Windows Central European 1
  3164. gbk gbk_chinese_ci GBK Simplified Chinese 2
  3165. latin5 latin5_turkish_ci ISO 8859-9 Turkish 1
  3166. armscii8 armscii8_general_ci ARMSCII-8 Armenian 1
  3167. utf8 utf8_general_ci UTF-8 Unicode 3
  3168. ucs2 ucs2_general_ci UCS-2 Unicode 2
  3169. cp866 cp866_general_ci DOS Russian 1
  3170. keybcs2 keybcs2_general_ci DOS Kamenicky Czech-Slovak 1
  3171. macce macce_general_ci Mac Central European 1
  3172. macroman macroman_general_ci Mac West European 1
  3173. cp852 cp852_general_ci DOS Central European 1
  3174. latin7 latin7_general_ci ISO 8859-13 Baltic 1
  3175. cp1251 cp1251_general_ci Windows Cyrillic 1
  3176. cp1256 cp1256_general_ci Windows Arabic 1
  3177. cp1257 cp1257_general_ci Windows Baltic 1
  3178. binary binary Binary pseudo charset 1
  3179. geostd8 geostd8_general_ci GEOSTD8 Georgian 1
  3180. cp932 cp932_japanese_ci SJIS for Windows Japanese 2
  3181. eucjpms eucjpms_japanese_ci UJIS for Windows Japanese 3
  3182. select sum(id) from collations where collation_name <> 'utf8_general_cs';
  3183. sum(id)
  3184. 10840
  3185. select collation_name, character_set_name into @x,@y
  3186. from collation_character_set_applicability limit 1;
  3187. select @x, @y;
  3188. @x @y
  3189. big5_chinese_ci big5
  3190. select * from routines;
  3191. SPECIFIC_NAME ROUTINE_CATALOG ROUTINE_SCHEMA ROUTINE_NAME ROUTINE_TYPE DTD_IDENTIFIER ROUTINE_BODY ROUTINE_DEFINITION EXTERNAL_NAME EXTERNAL_LANGUAGE PARAMETER_STYLE IS_DETERMINISTIC SQL_DATA_ACCESS SQL_PATH SECURITY_TYPE CREATED LAST_ALTERED SQL_MODE ROUTINE_COMMENT DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  3192. sp_1 NULL db_datadict sp_1 PROCEDURE NULL SQL BEGIN
  3193. SELECT * FROM db_datadict.v1;
  3194. END NULL NULL SQL NO CONTAINS SQL NULL DEFINER YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss root@localhost latin1 latin1_swedish_ci latin1_swedish_ci
  3195. select count(*) from routines;
  3196. count(*)
  3197. 1
  3198. select * from statistics
  3199. where not (table_schema = 'mysql' and table_name like 'help_%');
  3200. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
  3201. NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  3202. NULL mysql columns_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  3203. NULL mysql columns_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  3204. NULL mysql columns_priv 0 mysql PRIMARY 4 Table_name A NULL NULL NULL BTREE
  3205. NULL mysql columns_priv 0 mysql PRIMARY 5 Column_name A 0 NULL NULL BTREE
  3206. NULL mysql db 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  3207. NULL mysql db 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  3208. NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
  3209. NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
  3210. NULL mysql event 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
  3211. NULL mysql event 0 mysql PRIMARY 2 name A 0 NULL NULL BTREE
  3212. NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
  3213. NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  3214. NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
  3215. NULL mysql ndb_binlog_index 0 mysql PRIMARY 1 epoch A 0 NULL NULL BTREE
  3216. NULL mysql plugin 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
  3217. NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
  3218. NULL mysql proc 0 mysql PRIMARY 2 name A NULL NULL NULL BTREE
  3219. NULL mysql proc 0 mysql PRIMARY 3 type A 1 NULL NULL BTREE
  3220. NULL mysql procs_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  3221. NULL mysql procs_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  3222. NULL mysql procs_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  3223. NULL mysql procs_priv 0 mysql PRIMARY 4 Routine_name A NULL NULL NULL BTREE
  3224. NULL mysql procs_priv 0 mysql PRIMARY 5 Routine_type A 0 NULL NULL BTREE
  3225. NULL mysql procs_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
  3226. NULL mysql servers 0 mysql PRIMARY 1 Server_name A 0 NULL NULL BTREE
  3227. NULL mysql tables_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  3228. NULL mysql tables_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  3229. NULL mysql tables_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  3230. NULL mysql tables_priv 0 mysql PRIMARY 4 Table_name A 0 NULL NULL BTREE
  3231. NULL mysql tables_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
  3232. NULL mysql time_zone 0 mysql PRIMARY 1 Time_zone_id A 5 NULL NULL BTREE
  3233. NULL mysql time_zone_leap_second 0 mysql PRIMARY 1 Transition_time A 22 NULL NULL BTREE
  3234. NULL mysql time_zone_name 0 mysql PRIMARY 1 Name A 6 NULL NULL BTREE
  3235. NULL mysql time_zone_transition 0 mysql PRIMARY 1 Time_zone_id A NULL NULL NULL BTREE
  3236. NULL mysql time_zone_transition 0 mysql PRIMARY 2 Transition_time A 393 NULL NULL BTREE
  3237. NULL mysql time_zone_transition_type 0 mysql PRIMARY 1 Time_zone_id A NULL NULL NULL BTREE
  3238. NULL mysql time_zone_transition_type 0 mysql PRIMARY 2 Transition_type_id A 31 NULL NULL BTREE
  3239. NULL mysql user 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  3240. NULL mysql user 0 mysql PRIMARY 2 User A 3 NULL NULL BTREE
  3241. select * from views;
  3242. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE CHARACTER_SET_CLIENT COLLATION_CONNECTION
  3243. NULL db_datadict v1 SELECT * FROM information_schema.tables NONE NO root@localhost DEFINER latin1 latin1_swedish_ci
  3244. NULL db_datadict vu SELECT DISTINCT u,
  3245. SUBSTRING( u, LENGTH(SUBSTRING_INDEX(u,'@',1))+3 )
  3246. AS server,
  3247. SUBSTRING( u, LENGTH(SUBSTRING_INDEX(u,'@',1))+3,
  3248. LENGTH( SUBSTRING( u,
  3249. LENGTH( SUBSTRING_INDEX(u, '@',1)) +3 )) - 1 )
  3250. AS Server_Clean
  3251. FROM db_datadict.vu1 NONE NO root@localhost DEFINER latin1 latin1_swedish_ci
  3252. NULL db_datadict vu1 SELECT grantee AS u
  3253. FROM information_schema.user_privileges NONE NO root@localhost DEFINER latin1 latin1_swedish_ci
  3254. select * from user_privileges order by grantee, privilege_type;
  3255. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  3256. 'root'@'127.0.0.1' NULL ALTER YES
  3257. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  3258. 'root'@'127.0.0.1' NULL CREATE YES
  3259. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  3260. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  3261. 'root'@'127.0.0.1' NULL CREATE USER YES
  3262. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  3263. 'root'@'127.0.0.1' NULL DELETE YES
  3264. 'root'@'127.0.0.1' NULL DROP YES
  3265. 'root'@'127.0.0.1' NULL EVENT YES
  3266. 'root'@'127.0.0.1' NULL EXECUTE YES
  3267. 'root'@'127.0.0.1' NULL FILE YES
  3268. 'root'@'127.0.0.1' NULL INDEX YES
  3269. 'root'@'127.0.0.1' NULL INSERT YES
  3270. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  3271. 'root'@'127.0.0.1' NULL PROCESS YES
  3272. 'root'@'127.0.0.1' NULL REFERENCES YES
  3273. 'root'@'127.0.0.1' NULL RELOAD YES
  3274. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  3275. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  3276. 'root'@'127.0.0.1' NULL SELECT YES
  3277. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  3278. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  3279. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  3280. 'root'@'127.0.0.1' NULL SUPER YES
  3281. 'root'@'127.0.0.1' NULL TRIGGER YES
  3282. 'root'@'127.0.0.1' NULL UPDATE YES
  3283. 'root'@'<SERVER_NAME>' NULL ALTER YES
  3284. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  3285. 'root'@'<SERVER_NAME>' NULL CREATE YES
  3286. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  3287. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  3288. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  3289. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  3290. 'root'@'<SERVER_NAME>' NULL DELETE YES
  3291. 'root'@'<SERVER_NAME>' NULL DROP YES
  3292. 'root'@'<SERVER_NAME>' NULL EVENT YES
  3293. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  3294. 'root'@'<SERVER_NAME>' NULL FILE YES
  3295. 'root'@'<SERVER_NAME>' NULL INDEX YES
  3296. 'root'@'<SERVER_NAME>' NULL INSERT YES
  3297. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  3298. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  3299. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  3300. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  3301. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  3302. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  3303. 'root'@'<SERVER_NAME>' NULL SELECT YES
  3304. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  3305. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  3306. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  3307. 'root'@'<SERVER_NAME>' NULL SUPER YES
  3308. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  3309. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  3310. 'root'@'localhost' NULL ALTER YES
  3311. 'root'@'localhost' NULL ALTER ROUTINE YES
  3312. 'root'@'localhost' NULL CREATE YES
  3313. 'root'@'localhost' NULL CREATE ROUTINE YES
  3314. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  3315. 'root'@'localhost' NULL CREATE USER YES
  3316. 'root'@'localhost' NULL CREATE VIEW YES
  3317. 'root'@'localhost' NULL DELETE YES
  3318. 'root'@'localhost' NULL DROP YES
  3319. 'root'@'localhost' NULL EVENT YES
  3320. 'root'@'localhost' NULL EXECUTE YES
  3321. 'root'@'localhost' NULL FILE YES
  3322. 'root'@'localhost' NULL INDEX YES
  3323. 'root'@'localhost' NULL INSERT YES
  3324. 'root'@'localhost' NULL LOCK TABLES YES
  3325. 'root'@'localhost' NULL PROCESS YES
  3326. 'root'@'localhost' NULL REFERENCES YES
  3327. 'root'@'localhost' NULL RELOAD YES
  3328. 'root'@'localhost' NULL REPLICATION CLIENT YES
  3329. 'root'@'localhost' NULL REPLICATION SLAVE YES
  3330. 'root'@'localhost' NULL SELECT YES
  3331. 'root'@'localhost' NULL SHOW DATABASES YES
  3332. 'root'@'localhost' NULL SHOW VIEW YES
  3333. 'root'@'localhost' NULL SHUTDOWN YES
  3334. 'root'@'localhost' NULL SUPER YES
  3335. 'root'@'localhost' NULL TRIGGER YES
  3336. 'root'@'localhost' NULL UPDATE YES
  3337. select * from schema_privileges;
  3338. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  3339. ''@'%' NULL test SELECT NO
  3340. ''@'%' NULL test INSERT NO
  3341. ''@'%' NULL test UPDATE NO
  3342. ''@'%' NULL test DELETE NO
  3343. ''@'%' NULL test CREATE NO
  3344. ''@'%' NULL test DROP NO
  3345. ''@'%' NULL test REFERENCES NO
  3346. ''@'%' NULL test INDEX NO
  3347. ''@'%' NULL test ALTER NO
  3348. ''@'%' NULL test CREATE TEMPORARY TABLES NO
  3349. ''@'%' NULL test LOCK TABLES NO
  3350. ''@'%' NULL test CREATE VIEW NO
  3351. ''@'%' NULL test SHOW VIEW NO
  3352. ''@'%' NULL test CREATE ROUTINE NO
  3353. ''@'%' NULL test EVENT NO
  3354. ''@'%' NULL test TRIGGER NO
  3355. ''@'%' NULL test\_% SELECT NO
  3356. ''@'%' NULL test\_% INSERT NO
  3357. ''@'%' NULL test\_% UPDATE NO
  3358. ''@'%' NULL test\_% DELETE NO
  3359. ''@'%' NULL test\_% CREATE NO
  3360. ''@'%' NULL test\_% DROP NO
  3361. ''@'%' NULL test\_% REFERENCES NO
  3362. ''@'%' NULL test\_% INDEX NO
  3363. ''@'%' NULL test\_% ALTER NO
  3364. ''@'%' NULL test\_% CREATE TEMPORARY TABLES NO
  3365. ''@'%' NULL test\_% LOCK TABLES NO
  3366. ''@'%' NULL test\_% CREATE VIEW NO
  3367. ''@'%' NULL test\_% SHOW VIEW NO
  3368. ''@'%' NULL test\_% CREATE ROUTINE NO
  3369. ''@'%' NULL test\_% EVENT NO
  3370. ''@'%' NULL test\_% TRIGGER NO
  3371. select * from table_privileges;
  3372. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  3373. select * from column_privileges;
  3374. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  3375. select * from table_constraints;
  3376. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  3377. NULL mysql PRIMARY mysql columns_priv PRIMARY KEY
  3378. NULL mysql PRIMARY mysql db PRIMARY KEY
  3379. NULL mysql PRIMARY mysql event PRIMARY KEY
  3380. NULL mysql PRIMARY mysql func PRIMARY KEY
  3381. NULL mysql PRIMARY mysql help_category PRIMARY KEY
  3382. NULL mysql name mysql help_category UNIQUE
  3383. NULL mysql PRIMARY mysql help_keyword PRIMARY KEY
  3384. NULL mysql name mysql help_keyword UNIQUE
  3385. NULL mysql PRIMARY mysql help_relation PRIMARY KEY
  3386. NULL mysql PRIMARY mysql help_topic PRIMARY KEY
  3387. NULL mysql name mysql help_topic UNIQUE
  3388. NULL mysql PRIMARY mysql host PRIMARY KEY
  3389. NULL mysql PRIMARY mysql ndb_binlog_index PRIMARY KEY
  3390. NULL mysql PRIMARY mysql plugin PRIMARY KEY
  3391. NULL mysql PRIMARY mysql proc PRIMARY KEY
  3392. NULL mysql PRIMARY mysql procs_priv PRIMARY KEY
  3393. NULL mysql PRIMARY mysql servers PRIMARY KEY
  3394. NULL mysql PRIMARY mysql tables_priv PRIMARY KEY
  3395. NULL mysql PRIMARY mysql time_zone PRIMARY KEY
  3396. NULL mysql PRIMARY mysql time_zone_leap_second PRIMARY KEY
  3397. NULL mysql PRIMARY mysql time_zone_name PRIMARY KEY
  3398. NULL mysql PRIMARY mysql time_zone_transition PRIMARY KEY
  3399. NULL mysql PRIMARY mysql time_zone_transition_type PRIMARY KEY
  3400. NULL mysql PRIMARY mysql user PRIMARY KEY
  3401. select * from key_column_usage;
  3402. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION POSITION_IN_UNIQUE_CONSTRAINT REFERENCED_TABLE_SCHEMA REFERENCED_TABLE_NAME REFERENCED_COLUMN_NAME
  3403. NULL mysql PRIMARY NULL mysql columns_priv Host 1 NULL NULL NULL NULL
  3404. NULL mysql PRIMARY NULL mysql columns_priv Db 2 NULL NULL NULL NULL
  3405. NULL mysql PRIMARY NULL mysql columns_priv User 3 NULL NULL NULL NULL
  3406. NULL mysql PRIMARY NULL mysql columns_priv Table_name 4 NULL NULL NULL NULL
  3407. NULL mysql PRIMARY NULL mysql columns_priv Column_name 5 NULL NULL NULL NULL
  3408. NULL mysql PRIMARY NULL mysql db Host 1 NULL NULL NULL NULL
  3409. NULL mysql PRIMARY NULL mysql db Db 2 NULL NULL NULL NULL
  3410. NULL mysql PRIMARY NULL mysql db User 3 NULL NULL NULL NULL
  3411. NULL mysql PRIMARY NULL mysql event db 1 NULL NULL NULL NULL
  3412. NULL mysql PRIMARY NULL mysql event name 2 NULL NULL NULL NULL
  3413. NULL mysql PRIMARY NULL mysql func name 1 NULL NULL NULL NULL
  3414. NULL mysql PRIMARY NULL mysql help_category help_category_id 1 NULL NULL NULL NULL
  3415. NULL mysql name NULL mysql help_category name 1 NULL NULL NULL NULL
  3416. NULL mysql PRIMARY NULL mysql help_keyword help_keyword_id 1 NULL NULL NULL NULL
  3417. NULL mysql name NULL mysql help_keyword name 1 NULL NULL NULL NULL
  3418. NULL mysql PRIMARY NULL mysql help_relation help_keyword_id 1 NULL NULL NULL NULL
  3419. NULL mysql PRIMARY NULL mysql help_relation help_topic_id 2 NULL NULL NULL NULL
  3420. NULL mysql PRIMARY NULL mysql help_topic help_topic_id 1 NULL NULL NULL NULL
  3421. NULL mysql name NULL mysql help_topic name 1 NULL NULL NULL NULL
  3422. NULL mysql PRIMARY NULL mysql host Host 1 NULL NULL NULL NULL
  3423. NULL mysql PRIMARY NULL mysql host Db 2 NULL NULL NULL NULL
  3424. NULL mysql PRIMARY NULL mysql ndb_binlog_index epoch 1 NULL NULL NULL NULL
  3425. NULL mysql PRIMARY NULL mysql plugin name 1 NULL NULL NULL NULL
  3426. NULL mysql PRIMARY NULL mysql proc db 1 NULL NULL NULL NULL
  3427. NULL mysql PRIMARY NULL mysql proc name 2 NULL NULL NULL NULL
  3428. NULL mysql PRIMARY NULL mysql proc type 3 NULL NULL NULL NULL
  3429. NULL mysql PRIMARY NULL mysql procs_priv Host 1 NULL NULL NULL NULL
  3430. NULL mysql PRIMARY NULL mysql procs_priv Db 2 NULL NULL NULL NULL
  3431. NULL mysql PRIMARY NULL mysql procs_priv User 3 NULL NULL NULL NULL
  3432. NULL mysql PRIMARY NULL mysql procs_priv Routine_name 4 NULL NULL NULL NULL
  3433. NULL mysql PRIMARY NULL mysql procs_priv Routine_type 5 NULL NULL NULL NULL
  3434. NULL mysql PRIMARY NULL mysql servers Server_name 1 NULL NULL NULL NULL
  3435. NULL mysql PRIMARY NULL mysql tables_priv Host 1 NULL NULL NULL NULL
  3436. NULL mysql PRIMARY NULL mysql tables_priv Db 2 NULL NULL NULL NULL
  3437. NULL mysql PRIMARY NULL mysql tables_priv User 3 NULL NULL NULL NULL
  3438. NULL mysql PRIMARY NULL mysql tables_priv Table_name 4 NULL NULL NULL NULL
  3439. NULL mysql PRIMARY NULL mysql time_zone Time_zone_id 1 NULL NULL NULL NULL
  3440. NULL mysql PRIMARY NULL mysql time_zone_leap_second Transition_time 1 NULL NULL NULL NULL
  3441. NULL mysql PRIMARY NULL mysql time_zone_name Name 1 NULL NULL NULL NULL
  3442. NULL mysql PRIMARY NULL mysql time_zone_transition Time_zone_id 1 NULL NULL NULL NULL
  3443. NULL mysql PRIMARY NULL mysql time_zone_transition Transition_time 2 NULL NULL NULL NULL
  3444. NULL mysql PRIMARY NULL mysql time_zone_transition_type Time_zone_id 1 NULL NULL NULL NULL
  3445. NULL mysql PRIMARY NULL mysql time_zone_transition_type Transition_type_id 2 NULL NULL NULL NULL
  3446. NULL mysql PRIMARY NULL mysql user Host 1 NULL NULL NULL NULL
  3447. NULL mysql PRIMARY NULL mysql user User 2 NULL NULL NULL NULL
  3448. select count(*) as max_recs from key_column_usage;
  3449. max_recs
  3450. 45
  3451. select max(cardinality) from statistics
  3452. where not (table_schema = 'mysql' and table_name like 'help_%');
  3453. max(cardinality)
  3454. 393
  3455. select concat("View '",
  3456. table_name, "' is associated with the database '", table_schema, "'.")
  3457. AS "Who is Who for the Views"
  3458. from views;
  3459. Who is Who for the Views
  3460. View 'v1' is associated with the database 'db_datadict'.
  3461. View 'vu' is associated with the database 'db_datadict'.
  3462. View 'vu1' is associated with the database 'db_datadict'.
  3463. select concat("Table or view '", table_name,
  3464. "' is associated with the database '", table_schema, "'.") as "Who is Who"
  3465. from tables;
  3466. Who is Who
  3467. Table or view 'CHARACTER_SETS' is associated with the database 'information_schema'.
  3468. Table or view 'COLLATIONS' is associated with the database 'information_schema'.
  3469. Table or view 'COLLATION_CHARACTER_SET_APPLICABILITY' is associated with the database 'information_schema'.
  3470. Table or view 'COLUMNS' is associated with the database 'information_schema'.
  3471. Table or view 'COLUMN_PRIVILEGES' is associated with the database 'information_schema'.
  3472. Table or view 'ENGINES' is associated with the database 'information_schema'.
  3473. Table or view 'EVENTS' is associated with the database 'information_schema'.
  3474. Table or view 'FILES' is associated with the database 'information_schema'.
  3475. Table or view 'GLOBAL_STATUS' is associated with the database 'information_schema'.
  3476. Table or view 'GLOBAL_VARIABLES' is associated with the database 'information_schema'.
  3477. Table or view 'KEY_COLUMN_USAGE' is associated with the database 'information_schema'.
  3478. Table or view 'PARTITIONS' is associated with the database 'information_schema'.
  3479. Table or view 'PLUGINS' is associated with the database 'information_schema'.
  3480. Table or view 'PROCESSLIST' is associated with the database 'information_schema'.
  3481. Table or view 'PROFILING' is associated with the database 'information_schema'.
  3482. Table or view 'REFERENTIAL_CONSTRAINTS' is associated with the database 'information_schema'.
  3483. Table or view 'ROUTINES' is associated with the database 'information_schema'.
  3484. Table or view 'SCHEMATA' is associated with the database 'information_schema'.
  3485. Table or view 'SCHEMA_PRIVILEGES' is associated with the database 'information_schema'.
  3486. Table or view 'SESSION_STATUS' is associated with the database 'information_schema'.
  3487. Table or view 'SESSION_VARIABLES' is associated with the database 'information_schema'.
  3488. Table or view 'STATISTICS' is associated with the database 'information_schema'.
  3489. Table or view 'TABLES' is associated with the database 'information_schema'.
  3490. Table or view 'TABLE_CONSTRAINTS' is associated with the database 'information_schema'.
  3491. Table or view 'TABLE_PRIVILEGES' is associated with the database 'information_schema'.
  3492. Table or view 'TRIGGERS' is associated with the database 'information_schema'.
  3493. Table or view 'USER_PRIVILEGES' is associated with the database 'information_schema'.
  3494. Table or view 'VIEWS' is associated with the database 'information_schema'.
  3495. Table or view 'v1' is associated with the database 'db_datadict'.
  3496. Table or view 'vu' is associated with the database 'db_datadict'.
  3497. Table or view 'vu1' is associated with the database 'db_datadict'.
  3498. Table or view 'columns_priv' is associated with the database 'mysql'.
  3499. Table or view 'db' is associated with the database 'mysql'.
  3500. Table or view 'event' is associated with the database 'mysql'.
  3501. Table or view 'func' is associated with the database 'mysql'.
  3502. Table or view 'general_log' is associated with the database 'mysql'.
  3503. Table or view 'help_category' is associated with the database 'mysql'.
  3504. Table or view 'help_keyword' is associated with the database 'mysql'.
  3505. Table or view 'help_relation' is associated with the database 'mysql'.
  3506. Table or view 'help_topic' is associated with the database 'mysql'.
  3507. Table or view 'host' is associated with the database 'mysql'.
  3508. Table or view 'ndb_binlog_index' is associated with the database 'mysql'.
  3509. Table or view 'plugin' is associated with the database 'mysql'.
  3510. Table or view 'proc' is associated with the database 'mysql'.
  3511. Table or view 'procs_priv' is associated with the database 'mysql'.
  3512. Table or view 'servers' is associated with the database 'mysql'.
  3513. Table or view 'slow_log' is associated with the database 'mysql'.
  3514. Table or view 'tables_priv' is associated with the database 'mysql'.
  3515. Table or view 'time_zone' is associated with the database 'mysql'.
  3516. Table or view 'time_zone_leap_second' is associated with the database 'mysql'.
  3517. Table or view 'time_zone_name' is associated with the database 'mysql'.
  3518. Table or view 'time_zone_transition' is associated with the database 'mysql'.
  3519. Table or view 'time_zone_transition_type' is associated with the database 'mysql'.
  3520. Table or view 'user' is associated with the database 'mysql'.
  3521. Table or view 't1' is associated with the database 'test'.
  3522. Table or view 't10' is associated with the database 'test'.
  3523. Table or view 't11' is associated with the database 'test'.
  3524. Table or view 't2' is associated with the database 'test'.
  3525. Table or view 't3' is associated with the database 'test'.
  3526. Table or view 't4' is associated with the database 'test'.
  3527. Table or view 't7' is associated with the database 'test'.
  3528. Table or view 't8' is associated with the database 'test'.
  3529. Table or view 't9' is associated with the database 'test'.
  3530. Table or view 'tb1' is associated with the database 'test'.
  3531. Table or view 'tb2' is associated with the database 'test'.
  3532. Table or view 'tb3' is associated with the database 'test'.
  3533. Table or view 'tb4' is associated with the database 'test'.
  3534. Table or view 'tb2' is associated with the database 'test1'.
  3535. Table or view 't6' is associated with the database 'test4'.
  3536. select grantee as "user's having select privilege",
  3537. substring( grantee, length(SUBSTRING_INDEX(grantee,_utf8'@',1))+2 )
  3538. from user_privileges where privilege_type = 'select'
  3539. order by grantee;
  3540. user's having select privilege substring( grantee, length(SUBSTRING_INDEX(grantee,_utf8'@',1))+2 )
  3541. 'root'@'127.0.0.1' '127.0.0.1'
  3542. 'root'@'<SERVER_NAME>' '<SERVER_NAME>'
  3543. 'root'@'localhost' 'localhost'
  3544. select all table_schema from schema_privileges limit 0,5;
  3545. table_schema
  3546. test
  3547. test
  3548. test
  3549. test
  3550. test
  3551. select distinct(privilege_type) from table_privileges;
  3552. privilege_type
  3553. select * from column_privileges
  3554. group by table_schema having table_schema = 'db_datadict';
  3555. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  3556. select * from table_constraints limit 0,5;
  3557. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  3558. NULL mysql PRIMARY mysql columns_priv PRIMARY KEY
  3559. NULL mysql PRIMARY mysql db PRIMARY KEY
  3560. NULL mysql PRIMARY mysql event PRIMARY KEY
  3561. NULL mysql PRIMARY mysql func PRIMARY KEY
  3562. NULL mysql PRIMARY mysql help_category PRIMARY KEY
  3563. select count(*) as max_recs from key_column_usage limit 0,5;
  3564. max_recs
  3565. 45
  3566. select information_schema.tables.table_name as "table name",
  3567. count(distinct(column_name)) as "no of columns in the table"
  3568. from information_schema.tables left outer join information_schema.columns on
  3569. information_schema.tables.table_name = information_schema.columns.table_name
  3570. group by information_schema.tables.table_name;
  3571. table name no of columns in the table
  3572. CHARACTER_SETS 4
  3573. COLLATIONS 6
  3574. COLLATION_CHARACTER_SET_APPLICABILITY 2
  3575. COLUMNS 19
  3576. columns_priv 7
  3577. COLUMN_PRIVILEGES 7
  3578. db 22
  3579. ENGINES 6
  3580. event 22
  3581. EVENTS 24
  3582. FILES 38
  3583. func 4
  3584. general_log 6
  3585. GLOBAL_STATUS 2
  3586. GLOBAL_VARIABLES 2
  3587. help_category 4
  3588. help_keyword 2
  3589. help_relation 2
  3590. help_topic 6
  3591. host 20
  3592. KEY_COLUMN_USAGE 12
  3593. ndb_binlog_index 7
  3594. PARTITIONS 25
  3595. plugin 2
  3596. PLUGINS 10
  3597. proc 20
  3598. PROCESSLIST 8
  3599. procs_priv 8
  3600. PROFILING 18
  3601. REFERENTIAL_CONSTRAINTS 11
  3602. ROUTINES 23
  3603. SCHEMATA 5
  3604. SCHEMA_PRIVILEGES 5
  3605. servers 9
  3606. SESSION_STATUS 2
  3607. SESSION_VARIABLES 2
  3608. slow_log 11
  3609. STATISTICS 15
  3610. t1 6
  3611. t10 6
  3612. t11 6
  3613. t2 6
  3614. t3 3
  3615. t4 6
  3616. t6 6
  3617. t7 4
  3618. t8 4
  3619. t9 3
  3620. TABLES 21
  3621. tables_priv 8
  3622. TABLE_CONSTRAINTS 6
  3623. TABLE_PRIVILEGES 6
  3624. tb1 58
  3625. tb2 51
  3626. tb3 58
  3627. tb4 58
  3628. time_zone 2
  3629. time_zone_leap_second 2
  3630. time_zone_name 2
  3631. time_zone_transition 3
  3632. time_zone_transition_type 5
  3633. TRIGGERS 22
  3634. user 39
  3635. USER_PRIVILEGES 4
  3636. v1 21
  3637. VIEWS 10
  3638. vu 3
  3639. vu1 1
  3640. root: simple select to check all - and never forget some - tables
  3641. -----------------------------------------------------------------
  3642. SELECT * FROM schemata LIMIT 1;
  3643. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  3644. NULL information_schema utf8 utf8_general_ci NULL
  3645. SELECT * FROM tables LIMIT 1;
  3646. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
  3647. NULL information_schema CHARACTER_SETS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss NULL utf8_general_ci NULL #CO#
  3648. SELECT * FROM columns LIMIT 1;
  3649. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  3650. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  3651. SELECT * FROM character_sets LIMIT 1;
  3652. CHARACTER_SET_NAME DEFAULT_COLLATE_NAME DESCRIPTION MAXLEN
  3653. big5 big5_chinese_ci Big5 Traditional Chinese 2
  3654. SELECT * FROM collations where collation_name <> 'utf8_general_cs' LIMIT 1;
  3655. COLLATION_NAME CHARACTER_SET_NAME ID IS_DEFAULT IS_COMPILED SORTLEN
  3656. big5_chinese_ci big5 1 Yes Yes 1
  3657. SELECT * FROM collation_character_set_applicability where collation_name <> 'utf8_general_cs' LIMIT 1;
  3658. COLLATION_NAME CHARACTER_SET_NAME
  3659. big5_chinese_ci big5
  3660. SELECT * FROM routines LIMIT 1;
  3661. SPECIFIC_NAME ROUTINE_CATALOG ROUTINE_SCHEMA ROUTINE_NAME ROUTINE_TYPE DTD_IDENTIFIER ROUTINE_BODY ROUTINE_DEFINITION EXTERNAL_NAME EXTERNAL_LANGUAGE PARAMETER_STYLE IS_DETERMINISTIC SQL_DATA_ACCESS SQL_PATH SECURITY_TYPE CREATED LAST_ALTERED SQL_MODE ROUTINE_COMMENT DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  3662. sp_1 NULL db_datadict sp_1 PROCEDURE NULL SQL BEGIN
  3663. SELECT * FROM db_datadict.v1;
  3664. END NULL NULL SQL NO CONTAINS SQL NULL DEFINER <Created> <Last_Altered> root@localhost latin1 latin1_swedish_ci latin1_swedish_ci
  3665. SELECT * FROM statistics LIMIT 1;
  3666. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
  3667. NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  3668. SELECT * FROM views LIMIT 1;
  3669. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE CHARACTER_SET_CLIENT COLLATION_CONNECTION
  3670. NULL db_datadict v1 SELECT * FROM information_schema.tables NONE NO root@localhost DEFINER latin1 latin1_swedish_ci
  3671. SELECT * FROM user_privileges LIMIT 1;
  3672. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  3673. 'root'@'localhost' NULL SELECT YES
  3674. SELECT * FROM schema_privileges LIMIT 1;
  3675. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  3676. ''@'%' NULL test SELECT NO
  3677. SELECT * FROM table_privileges LIMIT 1;
  3678. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  3679. SELECT * FROM column_privileges LIMIT 1;
  3680. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  3681. SELECT * FROM table_constraints LIMIT 1;
  3682. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  3683. NULL mysql PRIMARY mysql columns_priv PRIMARY KEY
  3684. SELECT * FROM key_column_usage LIMIT 1;
  3685. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION POSITION_IN_UNIQUE_CONSTRAINT REFERENCED_TABLE_SCHEMA REFERENCED_TABLE_NAME REFERENCED_COLUMN_NAME
  3686. NULL mysql PRIMARY NULL mysql columns_priv Host 1 NULL NULL NULL NULL
  3687. SELECT * FROM triggers LIMIT 1;
  3688. TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  3689. SELECT * FROM parameters LIMIT 1;
  3690. ERROR 42S02: Unknown table 'parameters' in information_schema
  3691. SELECT * FROM referential_constraints LIMIT 1;
  3692. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME UNIQUE_CONSTRAINT_CATALOG UNIQUE_CONSTRAINT_SCHEMA UNIQUE_CONSTRAINT_NAME MATCH_OPTION UPDATE_RULE DELETE_RULE TABLE_NAME REFERENCED_TABLE_NAME
  3693. use db_datadict;
  3694. select * from schemata;
  3695. ERROR 42S02: Table 'db_datadict.schemata' doesn't exist
  3696. select * from tables;
  3697. ERROR 42S02: Table 'db_datadict.tables' doesn't exist
  3698. select s.catalog_name, s.schema_name, s.default_character_set_name,
  3699. t.table_type, t.engine
  3700. from schemata s inner join tables t
  3701. ORDER BY s.catalog_name, s.schema_name, s.default_character_set_name;
  3702. ERROR 42S02: Table 'db_datadict.schemata' doesn't exist
  3703. select * from columns limit 0, 5;
  3704. ERROR 42S02: Table 'db_datadict.columns' doesn't exist
  3705. select * from character_sets limit 0, 5;
  3706. ERROR 42S02: Table 'db_datadict.character_sets' doesn't exist
  3707. select * from collations limit 0, 5;
  3708. ERROR 42S02: Table 'db_datadict.collations' doesn't exist
  3709. select * from collation_character_set_applicability limit 0, 5;
  3710. ERROR 42S02: Table 'db_datadict.collation_character_set_applicability' doesn't exist
  3711. select * from routines limit 0, 5;
  3712. ERROR 42S02: Table 'db_datadict.routines' doesn't exist
  3713. select * from statistics limit 0, 5;
  3714. ERROR 42S02: Table 'db_datadict.statistics' doesn't exist
  3715. select * from views limit 0, 5;
  3716. ERROR 42S02: Table 'db_datadict.views' doesn't exist
  3717. select * from user_privileges limit 0, 5;
  3718. ERROR 42S02: Table 'db_datadict.user_privileges' doesn't exist
  3719. select * from schema_privileges limit 0, 5;
  3720. ERROR 42S02: Table 'db_datadict.schema_privileges' doesn't exist
  3721. select * from table_privileges limit 0, 5;
  3722. ERROR 42S02: Table 'db_datadict.table_privileges' doesn't exist
  3723. select * from column_privileges limit 0, 5;
  3724. ERROR 42S02: Table 'db_datadict.column_privileges' doesn't exist
  3725. select * from table_constraints limit 0, 5;
  3726. ERROR 42S02: Table 'db_datadict.table_constraints' doesn't exist
  3727. select * from key_column_usage limit 0, 5;
  3728. ERROR 42S02: Table 'db_datadict.key_column_usage' doesn't exist
  3729. will fail due to missing database name
  3730. --------------------------------------
  3731. known error 1146:
  3732. -----------------
  3733. SELECT * FROM schemata ;
  3734. ERROR 42S02: Table 'db_datadict.schemata' doesn't exist
  3735. SELECT * FROM tables ;
  3736. ERROR 42S02: Table 'db_datadict.tables' doesn't exist
  3737. SELECT * FROM columns ;
  3738. ERROR 42S02: Table 'db_datadict.columns' doesn't exist
  3739. SELECT * FROM character_sets ;
  3740. ERROR 42S02: Table 'db_datadict.character_sets' doesn't exist
  3741. SELECT * FROM collations ;
  3742. ERROR 42S02: Table 'db_datadict.collations' doesn't exist
  3743. SELECT * FROM collation_character_set_applicability ;
  3744. ERROR 42S02: Table 'db_datadict.collation_character_set_applicability' doesn't exist
  3745. SELECT * FROM routines ;
  3746. ERROR 42S02: Table 'db_datadict.routines' doesn't exist
  3747. SELECT * FROM statistics ;
  3748. ERROR 42S02: Table 'db_datadict.statistics' doesn't exist
  3749. SELECT * FROM views ;
  3750. ERROR 42S02: Table 'db_datadict.views' doesn't exist
  3751. SELECT * FROM user_privileges ;
  3752. ERROR 42S02: Table 'db_datadict.user_privileges' doesn't exist
  3753. SELECT * FROM schema_privileges ;
  3754. ERROR 42S02: Table 'db_datadict.schema_privileges' doesn't exist
  3755. SELECT * FROM table_privileges ;
  3756. ERROR 42S02: Table 'db_datadict.table_privileges' doesn't exist
  3757. SELECT * FROM column_privileges ;
  3758. ERROR 42S02: Table 'db_datadict.column_privileges' doesn't exist
  3759. SELECT * FROM table_constraints ;
  3760. ERROR 42S02: Table 'db_datadict.table_constraints' doesn't exist
  3761. SELECT * FROM key_column_usage ;
  3762. ERROR 42S02: Table 'db_datadict.key_column_usage' doesn't exist
  3763. SELECT * FROM triggers ;
  3764. ERROR 42S02: Table 'db_datadict.triggers' doesn't exist
  3765. select * from information_schema.schemata ORDER BY 2 DESC;
  3766. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  3767. NULL test4 latin1 latin1_swedish_ci NULL
  3768. NULL test1 latin1 latin1_swedish_ci NULL
  3769. NULL test latin1 latin1_swedish_ci NULL
  3770. NULL mysql latin1 latin1_swedish_ci NULL
  3771. NULL information_schema utf8 utf8_general_ci NULL
  3772. NULL db_datadict latin1 latin1_swedish_ci NULL
  3773. SELECT * FROM information_schema.tables
  3774. WHERE table_schema = 'information_schema';
  3775. TABLE_CATALOG NULL
  3776. TABLE_SCHEMA information_schema
  3777. TABLE_NAME CHARACTER_SETS
  3778. TABLE_TYPE SYSTEM VIEW
  3779. ENGINE MEMORY
  3780. VERSION 10
  3781. ROW_FORMAT Fixed
  3782. TABLE_ROWS NULL
  3783. AVG_ROW_LENGTH #ARL#
  3784. DATA_LENGTH #DL#
  3785. MAX_DATA_LENGTH #MDL#
  3786. INDEX_LENGTH #IL#
  3787. DATA_FREE #DF#
  3788. AUTO_INCREMENT NULL
  3789. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3790. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3791. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3792. TABLE_COLLATION utf8_general_ci
  3793. CHECKSUM NULL
  3794. CREATE_OPTIONS #CO#
  3795. TABLE_COMMENT
  3796. TABLE_CATALOG NULL
  3797. TABLE_SCHEMA information_schema
  3798. TABLE_NAME COLLATIONS
  3799. TABLE_TYPE SYSTEM VIEW
  3800. ENGINE MEMORY
  3801. VERSION 10
  3802. ROW_FORMAT Fixed
  3803. TABLE_ROWS NULL
  3804. AVG_ROW_LENGTH #ARL#
  3805. DATA_LENGTH #DL#
  3806. MAX_DATA_LENGTH #MDL#
  3807. INDEX_LENGTH #IL#
  3808. DATA_FREE #DF#
  3809. AUTO_INCREMENT NULL
  3810. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3811. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3812. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3813. TABLE_COLLATION utf8_general_ci
  3814. CHECKSUM NULL
  3815. CREATE_OPTIONS #CO#
  3816. TABLE_COMMENT
  3817. TABLE_CATALOG NULL
  3818. TABLE_SCHEMA information_schema
  3819. TABLE_NAME COLLATION_CHARACTER_SET_APPLICABILITY
  3820. TABLE_TYPE SYSTEM VIEW
  3821. ENGINE MEMORY
  3822. VERSION 10
  3823. ROW_FORMAT Fixed
  3824. TABLE_ROWS NULL
  3825. AVG_ROW_LENGTH #ARL#
  3826. DATA_LENGTH #DL#
  3827. MAX_DATA_LENGTH #MDL#
  3828. INDEX_LENGTH #IL#
  3829. DATA_FREE #DF#
  3830. AUTO_INCREMENT NULL
  3831. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3832. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3833. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3834. TABLE_COLLATION utf8_general_ci
  3835. CHECKSUM NULL
  3836. CREATE_OPTIONS #CO#
  3837. TABLE_COMMENT
  3838. TABLE_CATALOG NULL
  3839. TABLE_SCHEMA information_schema
  3840. TABLE_NAME COLUMNS
  3841. TABLE_TYPE SYSTEM VIEW
  3842. ENGINE MyISAM
  3843. VERSION 10
  3844. ROW_FORMAT Dynamic
  3845. TABLE_ROWS NULL
  3846. AVG_ROW_LENGTH #ARL#
  3847. DATA_LENGTH #DL#
  3848. MAX_DATA_LENGTH #MDL#
  3849. INDEX_LENGTH #IL#
  3850. DATA_FREE #DF#
  3851. AUTO_INCREMENT NULL
  3852. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3853. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3854. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3855. TABLE_COLLATION utf8_general_ci
  3856. CHECKSUM NULL
  3857. CREATE_OPTIONS #CO#
  3858. TABLE_COMMENT
  3859. TABLE_CATALOG NULL
  3860. TABLE_SCHEMA information_schema
  3861. TABLE_NAME COLUMN_PRIVILEGES
  3862. TABLE_TYPE SYSTEM VIEW
  3863. ENGINE MEMORY
  3864. VERSION 10
  3865. ROW_FORMAT Fixed
  3866. TABLE_ROWS NULL
  3867. AVG_ROW_LENGTH #ARL#
  3868. DATA_LENGTH #DL#
  3869. MAX_DATA_LENGTH #MDL#
  3870. INDEX_LENGTH #IL#
  3871. DATA_FREE #DF#
  3872. AUTO_INCREMENT NULL
  3873. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3874. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3875. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3876. TABLE_COLLATION utf8_general_ci
  3877. CHECKSUM NULL
  3878. CREATE_OPTIONS #CO#
  3879. TABLE_COMMENT
  3880. TABLE_CATALOG NULL
  3881. TABLE_SCHEMA information_schema
  3882. TABLE_NAME ENGINES
  3883. TABLE_TYPE SYSTEM VIEW
  3884. ENGINE MEMORY
  3885. VERSION 10
  3886. ROW_FORMAT Fixed
  3887. TABLE_ROWS NULL
  3888. AVG_ROW_LENGTH #ARL#
  3889. DATA_LENGTH #DL#
  3890. MAX_DATA_LENGTH #MDL#
  3891. INDEX_LENGTH #IL#
  3892. DATA_FREE #DF#
  3893. AUTO_INCREMENT NULL
  3894. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3895. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3896. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3897. TABLE_COLLATION utf8_general_ci
  3898. CHECKSUM NULL
  3899. CREATE_OPTIONS #CO#
  3900. TABLE_COMMENT
  3901. TABLE_CATALOG NULL
  3902. TABLE_SCHEMA information_schema
  3903. TABLE_NAME EVENTS
  3904. TABLE_TYPE SYSTEM VIEW
  3905. ENGINE MyISAM
  3906. VERSION 10
  3907. ROW_FORMAT Dynamic
  3908. TABLE_ROWS NULL
  3909. AVG_ROW_LENGTH #ARL#
  3910. DATA_LENGTH #DL#
  3911. MAX_DATA_LENGTH #MDL#
  3912. INDEX_LENGTH #IL#
  3913. DATA_FREE #DF#
  3914. AUTO_INCREMENT NULL
  3915. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3916. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3917. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3918. TABLE_COLLATION utf8_general_ci
  3919. CHECKSUM NULL
  3920. CREATE_OPTIONS #CO#
  3921. TABLE_COMMENT
  3922. TABLE_CATALOG NULL
  3923. TABLE_SCHEMA information_schema
  3924. TABLE_NAME FILES
  3925. TABLE_TYPE SYSTEM VIEW
  3926. ENGINE MEMORY
  3927. VERSION 10
  3928. ROW_FORMAT Fixed
  3929. TABLE_ROWS NULL
  3930. AVG_ROW_LENGTH #ARL#
  3931. DATA_LENGTH #DL#
  3932. MAX_DATA_LENGTH #MDL#
  3933. INDEX_LENGTH #IL#
  3934. DATA_FREE #DF#
  3935. AUTO_INCREMENT NULL
  3936. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3937. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3938. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3939. TABLE_COLLATION utf8_general_ci
  3940. CHECKSUM NULL
  3941. CREATE_OPTIONS #CO#
  3942. TABLE_COMMENT
  3943. TABLE_CATALOG NULL
  3944. TABLE_SCHEMA information_schema
  3945. TABLE_NAME GLOBAL_STATUS
  3946. TABLE_TYPE SYSTEM VIEW
  3947. ENGINE MEMORY
  3948. VERSION 10
  3949. ROW_FORMAT Fixed
  3950. TABLE_ROWS NULL
  3951. AVG_ROW_LENGTH #ARL#
  3952. DATA_LENGTH #DL#
  3953. MAX_DATA_LENGTH #MDL#
  3954. INDEX_LENGTH #IL#
  3955. DATA_FREE #DF#
  3956. AUTO_INCREMENT NULL
  3957. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3958. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3959. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3960. TABLE_COLLATION utf8_general_ci
  3961. CHECKSUM NULL
  3962. CREATE_OPTIONS #CO#
  3963. TABLE_COMMENT
  3964. TABLE_CATALOG NULL
  3965. TABLE_SCHEMA information_schema
  3966. TABLE_NAME GLOBAL_VARIABLES
  3967. TABLE_TYPE SYSTEM VIEW
  3968. ENGINE MEMORY
  3969. VERSION 10
  3970. ROW_FORMAT Fixed
  3971. TABLE_ROWS NULL
  3972. AVG_ROW_LENGTH #ARL#
  3973. DATA_LENGTH #DL#
  3974. MAX_DATA_LENGTH #MDL#
  3975. INDEX_LENGTH #IL#
  3976. DATA_FREE #DF#
  3977. AUTO_INCREMENT NULL
  3978. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3979. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3980. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3981. TABLE_COLLATION utf8_general_ci
  3982. CHECKSUM NULL
  3983. CREATE_OPTIONS #CO#
  3984. TABLE_COMMENT
  3985. TABLE_CATALOG NULL
  3986. TABLE_SCHEMA information_schema
  3987. TABLE_NAME KEY_COLUMN_USAGE
  3988. TABLE_TYPE SYSTEM VIEW
  3989. ENGINE MEMORY
  3990. VERSION 10
  3991. ROW_FORMAT Fixed
  3992. TABLE_ROWS NULL
  3993. AVG_ROW_LENGTH #ARL#
  3994. DATA_LENGTH #DL#
  3995. MAX_DATA_LENGTH #MDL#
  3996. INDEX_LENGTH #IL#
  3997. DATA_FREE #DF#
  3998. AUTO_INCREMENT NULL
  3999. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4000. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4001. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4002. TABLE_COLLATION utf8_general_ci
  4003. CHECKSUM NULL
  4004. CREATE_OPTIONS #CO#
  4005. TABLE_COMMENT
  4006. TABLE_CATALOG NULL
  4007. TABLE_SCHEMA information_schema
  4008. TABLE_NAME PARTITIONS
  4009. TABLE_TYPE SYSTEM VIEW
  4010. ENGINE MyISAM
  4011. VERSION 10
  4012. ROW_FORMAT Dynamic
  4013. TABLE_ROWS NULL
  4014. AVG_ROW_LENGTH #ARL#
  4015. DATA_LENGTH #DL#
  4016. MAX_DATA_LENGTH #MDL#
  4017. INDEX_LENGTH #IL#
  4018. DATA_FREE #DF#
  4019. AUTO_INCREMENT NULL
  4020. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4021. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4022. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4023. TABLE_COLLATION utf8_general_ci
  4024. CHECKSUM NULL
  4025. CREATE_OPTIONS #CO#
  4026. TABLE_COMMENT
  4027. TABLE_CATALOG NULL
  4028. TABLE_SCHEMA information_schema
  4029. TABLE_NAME PLUGINS
  4030. TABLE_TYPE SYSTEM VIEW
  4031. ENGINE MyISAM
  4032. VERSION 10
  4033. ROW_FORMAT Dynamic
  4034. TABLE_ROWS NULL
  4035. AVG_ROW_LENGTH #ARL#
  4036. DATA_LENGTH #DL#
  4037. MAX_DATA_LENGTH #MDL#
  4038. INDEX_LENGTH #IL#
  4039. DATA_FREE #DF#
  4040. AUTO_INCREMENT NULL
  4041. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4042. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4043. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4044. TABLE_COLLATION utf8_general_ci
  4045. CHECKSUM NULL
  4046. CREATE_OPTIONS #CO#
  4047. TABLE_COMMENT
  4048. TABLE_CATALOG NULL
  4049. TABLE_SCHEMA information_schema
  4050. TABLE_NAME PROCESSLIST
  4051. TABLE_TYPE SYSTEM VIEW
  4052. ENGINE MyISAM
  4053. VERSION 10
  4054. ROW_FORMAT Dynamic
  4055. TABLE_ROWS NULL
  4056. AVG_ROW_LENGTH #ARL#
  4057. DATA_LENGTH #DL#
  4058. MAX_DATA_LENGTH #MDL#
  4059. INDEX_LENGTH #IL#
  4060. DATA_FREE #DF#
  4061. AUTO_INCREMENT NULL
  4062. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4063. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4064. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4065. TABLE_COLLATION utf8_general_ci
  4066. CHECKSUM NULL
  4067. CREATE_OPTIONS #CO#
  4068. TABLE_COMMENT
  4069. TABLE_CATALOG NULL
  4070. TABLE_SCHEMA information_schema
  4071. TABLE_NAME PROFILING
  4072. TABLE_TYPE SYSTEM VIEW
  4073. ENGINE MEMORY
  4074. VERSION 10
  4075. ROW_FORMAT Fixed
  4076. TABLE_ROWS NULL
  4077. AVG_ROW_LENGTH #ARL#
  4078. DATA_LENGTH #DL#
  4079. MAX_DATA_LENGTH #MDL#
  4080. INDEX_LENGTH #IL#
  4081. DATA_FREE #DF#
  4082. AUTO_INCREMENT NULL
  4083. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4084. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4085. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4086. TABLE_COLLATION utf8_general_ci
  4087. CHECKSUM NULL
  4088. CREATE_OPTIONS #CO#
  4089. TABLE_COMMENT
  4090. TABLE_CATALOG NULL
  4091. TABLE_SCHEMA information_schema
  4092. TABLE_NAME REFERENTIAL_CONSTRAINTS
  4093. TABLE_TYPE SYSTEM VIEW
  4094. ENGINE MEMORY
  4095. VERSION 10
  4096. ROW_FORMAT Fixed
  4097. TABLE_ROWS NULL
  4098. AVG_ROW_LENGTH #ARL#
  4099. DATA_LENGTH #DL#
  4100. MAX_DATA_LENGTH #MDL#
  4101. INDEX_LENGTH #IL#
  4102. DATA_FREE #DF#
  4103. AUTO_INCREMENT NULL
  4104. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4105. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4106. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4107. TABLE_COLLATION utf8_general_ci
  4108. CHECKSUM NULL
  4109. CREATE_OPTIONS #CO#
  4110. TABLE_COMMENT
  4111. TABLE_CATALOG NULL
  4112. TABLE_SCHEMA information_schema
  4113. TABLE_NAME ROUTINES
  4114. TABLE_TYPE SYSTEM VIEW
  4115. ENGINE MyISAM
  4116. VERSION 10
  4117. ROW_FORMAT Dynamic
  4118. TABLE_ROWS NULL
  4119. AVG_ROW_LENGTH #ARL#
  4120. DATA_LENGTH #DL#
  4121. MAX_DATA_LENGTH #MDL#
  4122. INDEX_LENGTH #IL#
  4123. DATA_FREE #DF#
  4124. AUTO_INCREMENT NULL
  4125. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4126. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4127. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4128. TABLE_COLLATION utf8_general_ci
  4129. CHECKSUM NULL
  4130. CREATE_OPTIONS #CO#
  4131. TABLE_COMMENT
  4132. TABLE_CATALOG NULL
  4133. TABLE_SCHEMA information_schema
  4134. TABLE_NAME SCHEMATA
  4135. TABLE_TYPE SYSTEM VIEW
  4136. ENGINE MEMORY
  4137. VERSION 10
  4138. ROW_FORMAT Fixed
  4139. TABLE_ROWS NULL
  4140. AVG_ROW_LENGTH #ARL#
  4141. DATA_LENGTH #DL#
  4142. MAX_DATA_LENGTH #MDL#
  4143. INDEX_LENGTH #IL#
  4144. DATA_FREE #DF#
  4145. AUTO_INCREMENT NULL
  4146. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4147. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4148. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4149. TABLE_COLLATION utf8_general_ci
  4150. CHECKSUM NULL
  4151. CREATE_OPTIONS #CO#
  4152. TABLE_COMMENT
  4153. TABLE_CATALOG NULL
  4154. TABLE_SCHEMA information_schema
  4155. TABLE_NAME SCHEMA_PRIVILEGES
  4156. TABLE_TYPE SYSTEM VIEW
  4157. ENGINE MEMORY
  4158. VERSION 10
  4159. ROW_FORMAT Fixed
  4160. TABLE_ROWS NULL
  4161. AVG_ROW_LENGTH #ARL#
  4162. DATA_LENGTH #DL#
  4163. MAX_DATA_LENGTH #MDL#
  4164. INDEX_LENGTH #IL#
  4165. DATA_FREE #DF#
  4166. AUTO_INCREMENT NULL
  4167. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4168. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4169. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4170. TABLE_COLLATION utf8_general_ci
  4171. CHECKSUM NULL
  4172. CREATE_OPTIONS #CO#
  4173. TABLE_COMMENT
  4174. TABLE_CATALOG NULL
  4175. TABLE_SCHEMA information_schema
  4176. TABLE_NAME SESSION_STATUS
  4177. TABLE_TYPE SYSTEM VIEW
  4178. ENGINE MEMORY
  4179. VERSION 10
  4180. ROW_FORMAT Fixed
  4181. TABLE_ROWS NULL
  4182. AVG_ROW_LENGTH #ARL#
  4183. DATA_LENGTH #DL#
  4184. MAX_DATA_LENGTH #MDL#
  4185. INDEX_LENGTH #IL#
  4186. DATA_FREE #DF#
  4187. AUTO_INCREMENT NULL
  4188. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4189. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4190. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4191. TABLE_COLLATION utf8_general_ci
  4192. CHECKSUM NULL
  4193. CREATE_OPTIONS #CO#
  4194. TABLE_COMMENT
  4195. TABLE_CATALOG NULL
  4196. TABLE_SCHEMA information_schema
  4197. TABLE_NAME SESSION_VARIABLES
  4198. TABLE_TYPE SYSTEM VIEW
  4199. ENGINE MEMORY
  4200. VERSION 10
  4201. ROW_FORMAT Fixed
  4202. TABLE_ROWS NULL
  4203. AVG_ROW_LENGTH #ARL#
  4204. DATA_LENGTH #DL#
  4205. MAX_DATA_LENGTH #MDL#
  4206. INDEX_LENGTH #IL#
  4207. DATA_FREE #DF#
  4208. AUTO_INCREMENT NULL
  4209. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4210. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4211. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4212. TABLE_COLLATION utf8_general_ci
  4213. CHECKSUM NULL
  4214. CREATE_OPTIONS #CO#
  4215. TABLE_COMMENT
  4216. TABLE_CATALOG NULL
  4217. TABLE_SCHEMA information_schema
  4218. TABLE_NAME STATISTICS
  4219. TABLE_TYPE SYSTEM VIEW
  4220. ENGINE MEMORY
  4221. VERSION 10
  4222. ROW_FORMAT Fixed
  4223. TABLE_ROWS NULL
  4224. AVG_ROW_LENGTH #ARL#
  4225. DATA_LENGTH #DL#
  4226. MAX_DATA_LENGTH #MDL#
  4227. INDEX_LENGTH #IL#
  4228. DATA_FREE #DF#
  4229. AUTO_INCREMENT NULL
  4230. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4231. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4232. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4233. TABLE_COLLATION utf8_general_ci
  4234. CHECKSUM NULL
  4235. CREATE_OPTIONS #CO#
  4236. TABLE_COMMENT
  4237. TABLE_CATALOG NULL
  4238. TABLE_SCHEMA information_schema
  4239. TABLE_NAME TABLES
  4240. TABLE_TYPE SYSTEM VIEW
  4241. ENGINE MEMORY
  4242. VERSION 10
  4243. ROW_FORMAT Fixed
  4244. TABLE_ROWS NULL
  4245. AVG_ROW_LENGTH #ARL#
  4246. DATA_LENGTH #DL#
  4247. MAX_DATA_LENGTH #MDL#
  4248. INDEX_LENGTH #IL#
  4249. DATA_FREE #DF#
  4250. AUTO_INCREMENT NULL
  4251. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4252. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4253. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4254. TABLE_COLLATION utf8_general_ci
  4255. CHECKSUM NULL
  4256. CREATE_OPTIONS #CO#
  4257. TABLE_COMMENT
  4258. TABLE_CATALOG NULL
  4259. TABLE_SCHEMA information_schema
  4260. TABLE_NAME TABLE_CONSTRAINTS
  4261. TABLE_TYPE SYSTEM VIEW
  4262. ENGINE MEMORY
  4263. VERSION 10
  4264. ROW_FORMAT Fixed
  4265. TABLE_ROWS NULL
  4266. AVG_ROW_LENGTH #ARL#
  4267. DATA_LENGTH #DL#
  4268. MAX_DATA_LENGTH #MDL#
  4269. INDEX_LENGTH #IL#
  4270. DATA_FREE #DF#
  4271. AUTO_INCREMENT NULL
  4272. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4273. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4274. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4275. TABLE_COLLATION utf8_general_ci
  4276. CHECKSUM NULL
  4277. CREATE_OPTIONS #CO#
  4278. TABLE_COMMENT
  4279. TABLE_CATALOG NULL
  4280. TABLE_SCHEMA information_schema
  4281. TABLE_NAME TABLE_PRIVILEGES
  4282. TABLE_TYPE SYSTEM VIEW
  4283. ENGINE MEMORY
  4284. VERSION 10
  4285. ROW_FORMAT Fixed
  4286. TABLE_ROWS NULL
  4287. AVG_ROW_LENGTH #ARL#
  4288. DATA_LENGTH #DL#
  4289. MAX_DATA_LENGTH #MDL#
  4290. INDEX_LENGTH #IL#
  4291. DATA_FREE #DF#
  4292. AUTO_INCREMENT NULL
  4293. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4294. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4295. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4296. TABLE_COLLATION utf8_general_ci
  4297. CHECKSUM NULL
  4298. CREATE_OPTIONS #CO#
  4299. TABLE_COMMENT
  4300. TABLE_CATALOG NULL
  4301. TABLE_SCHEMA information_schema
  4302. TABLE_NAME TRIGGERS
  4303. TABLE_TYPE SYSTEM VIEW
  4304. ENGINE MyISAM
  4305. VERSION 10
  4306. ROW_FORMAT Dynamic
  4307. TABLE_ROWS NULL
  4308. AVG_ROW_LENGTH #ARL#
  4309. DATA_LENGTH #DL#
  4310. MAX_DATA_LENGTH #MDL#
  4311. INDEX_LENGTH #IL#
  4312. DATA_FREE #DF#
  4313. AUTO_INCREMENT NULL
  4314. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4315. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4316. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4317. TABLE_COLLATION utf8_general_ci
  4318. CHECKSUM NULL
  4319. CREATE_OPTIONS #CO#
  4320. TABLE_COMMENT
  4321. TABLE_CATALOG NULL
  4322. TABLE_SCHEMA information_schema
  4323. TABLE_NAME USER_PRIVILEGES
  4324. TABLE_TYPE SYSTEM VIEW
  4325. ENGINE MEMORY
  4326. VERSION 10
  4327. ROW_FORMAT Fixed
  4328. TABLE_ROWS NULL
  4329. AVG_ROW_LENGTH #ARL#
  4330. DATA_LENGTH #DL#
  4331. MAX_DATA_LENGTH #MDL#
  4332. INDEX_LENGTH #IL#
  4333. DATA_FREE #DF#
  4334. AUTO_INCREMENT NULL
  4335. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4336. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4337. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4338. TABLE_COLLATION utf8_general_ci
  4339. CHECKSUM NULL
  4340. CREATE_OPTIONS #CO#
  4341. TABLE_COMMENT
  4342. TABLE_CATALOG NULL
  4343. TABLE_SCHEMA information_schema
  4344. TABLE_NAME VIEWS
  4345. TABLE_TYPE SYSTEM VIEW
  4346. ENGINE MyISAM
  4347. VERSION 10
  4348. ROW_FORMAT Dynamic
  4349. TABLE_ROWS NULL
  4350. AVG_ROW_LENGTH #ARL#
  4351. DATA_LENGTH #DL#
  4352. MAX_DATA_LENGTH #MDL#
  4353. INDEX_LENGTH #IL#
  4354. DATA_FREE #DF#
  4355. AUTO_INCREMENT NULL
  4356. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4357. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4358. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4359. TABLE_COLLATION utf8_general_ci
  4360. CHECKSUM NULL
  4361. CREATE_OPTIONS #CO#
  4362. TABLE_COMMENT
  4363. SELECT * FROM information_schema.tables
  4364. WHERE NOT( table_schema = 'information_schema')
  4365. AND NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
  4366. TABLE_CATALOG NULL
  4367. TABLE_SCHEMA db_datadict
  4368. TABLE_NAME v1
  4369. TABLE_TYPE VIEW
  4370. ENGINE NULL
  4371. VERSION NULL
  4372. ROW_FORMAT NULL
  4373. TABLE_ROWS NULL
  4374. AVG_ROW_LENGTH #ARL#
  4375. DATA_LENGTH #DL#
  4376. MAX_DATA_LENGTH #MDL#
  4377. INDEX_LENGTH #IL#
  4378. DATA_FREE #DF#
  4379. AUTO_INCREMENT NULL
  4380. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4381. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4382. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4383. TABLE_COLLATION NULL
  4384. CHECKSUM NULL
  4385. CREATE_OPTIONS NULL
  4386. TABLE_COMMENT VIEW
  4387. TABLE_CATALOG NULL
  4388. TABLE_SCHEMA db_datadict
  4389. TABLE_NAME vu
  4390. TABLE_TYPE VIEW
  4391. ENGINE NULL
  4392. VERSION NULL
  4393. ROW_FORMAT NULL
  4394. TABLE_ROWS NULL
  4395. AVG_ROW_LENGTH #ARL#
  4396. DATA_LENGTH #DL#
  4397. MAX_DATA_LENGTH #MDL#
  4398. INDEX_LENGTH #IL#
  4399. DATA_FREE #DF#
  4400. AUTO_INCREMENT NULL
  4401. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4402. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4403. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4404. TABLE_COLLATION NULL
  4405. CHECKSUM NULL
  4406. CREATE_OPTIONS NULL
  4407. TABLE_COMMENT VIEW
  4408. TABLE_CATALOG NULL
  4409. TABLE_SCHEMA db_datadict
  4410. TABLE_NAME vu1
  4411. TABLE_TYPE VIEW
  4412. ENGINE NULL
  4413. VERSION NULL
  4414. ROW_FORMAT NULL
  4415. TABLE_ROWS NULL
  4416. AVG_ROW_LENGTH #ARL#
  4417. DATA_LENGTH #DL#
  4418. MAX_DATA_LENGTH #MDL#
  4419. INDEX_LENGTH #IL#
  4420. DATA_FREE #DF#
  4421. AUTO_INCREMENT NULL
  4422. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4423. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4424. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4425. TABLE_COLLATION NULL
  4426. CHECKSUM NULL
  4427. CREATE_OPTIONS NULL
  4428. TABLE_COMMENT VIEW
  4429. TABLE_CATALOG NULL
  4430. TABLE_SCHEMA mysql
  4431. TABLE_NAME columns_priv
  4432. TABLE_TYPE BASE TABLE
  4433. ENGINE MyISAM
  4434. VERSION 10
  4435. ROW_FORMAT Fixed
  4436. TABLE_ROWS 0
  4437. AVG_ROW_LENGTH #ARL#
  4438. DATA_LENGTH #DL#
  4439. MAX_DATA_LENGTH #MDL#
  4440. INDEX_LENGTH #IL#
  4441. DATA_FREE #DF#
  4442. AUTO_INCREMENT NULL
  4443. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4444. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4445. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4446. TABLE_COLLATION utf8_bin
  4447. CHECKSUM NULL
  4448. CREATE_OPTIONS
  4449. TABLE_COMMENT Column privileges
  4450. TABLE_CATALOG NULL
  4451. TABLE_SCHEMA mysql
  4452. TABLE_NAME db
  4453. TABLE_TYPE BASE TABLE
  4454. ENGINE MyISAM
  4455. VERSION 10
  4456. ROW_FORMAT Fixed
  4457. TABLE_ROWS 2
  4458. AVG_ROW_LENGTH #ARL#
  4459. DATA_LENGTH #DL#
  4460. MAX_DATA_LENGTH #MDL#
  4461. INDEX_LENGTH #IL#
  4462. DATA_FREE #DF#
  4463. AUTO_INCREMENT NULL
  4464. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4465. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4466. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4467. TABLE_COLLATION utf8_bin
  4468. CHECKSUM NULL
  4469. CREATE_OPTIONS
  4470. TABLE_COMMENT Database privileges
  4471. TABLE_CATALOG NULL
  4472. TABLE_SCHEMA mysql
  4473. TABLE_NAME event
  4474. TABLE_TYPE BASE TABLE
  4475. ENGINE MyISAM
  4476. VERSION 10
  4477. ROW_FORMAT Dynamic
  4478. TABLE_ROWS 0
  4479. AVG_ROW_LENGTH #ARL#
  4480. DATA_LENGTH #DL#
  4481. MAX_DATA_LENGTH #MDL#
  4482. INDEX_LENGTH #IL#
  4483. DATA_FREE #DF#
  4484. AUTO_INCREMENT NULL
  4485. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4486. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4487. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4488. TABLE_COLLATION utf8_general_ci
  4489. CHECKSUM NULL
  4490. CREATE_OPTIONS
  4491. TABLE_COMMENT Events
  4492. TABLE_CATALOG NULL
  4493. TABLE_SCHEMA mysql
  4494. TABLE_NAME func
  4495. TABLE_TYPE BASE TABLE
  4496. ENGINE MyISAM
  4497. VERSION 10
  4498. ROW_FORMAT Fixed
  4499. TABLE_ROWS 0
  4500. AVG_ROW_LENGTH #ARL#
  4501. DATA_LENGTH #DL#
  4502. MAX_DATA_LENGTH #MDL#
  4503. INDEX_LENGTH #IL#
  4504. DATA_FREE #DF#
  4505. AUTO_INCREMENT NULL
  4506. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4507. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4508. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4509. TABLE_COLLATION utf8_bin
  4510. CHECKSUM NULL
  4511. CREATE_OPTIONS
  4512. TABLE_COMMENT User defined functions
  4513. TABLE_CATALOG NULL
  4514. TABLE_SCHEMA mysql
  4515. TABLE_NAME general_log
  4516. TABLE_TYPE BASE TABLE
  4517. ENGINE CSV
  4518. VERSION 10
  4519. ROW_FORMAT Dynamic
  4520. TABLE_ROWS 1
  4521. AVG_ROW_LENGTH #ARL#
  4522. DATA_LENGTH #DL#
  4523. MAX_DATA_LENGTH #MDL#
  4524. INDEX_LENGTH #IL#
  4525. DATA_FREE #DF#
  4526. AUTO_INCREMENT NULL
  4527. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4528. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4529. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4530. TABLE_COLLATION utf8_general_ci
  4531. CHECKSUM NULL
  4532. CREATE_OPTIONS
  4533. TABLE_COMMENT General log
  4534. TABLE_CATALOG NULL
  4535. TABLE_SCHEMA mysql
  4536. TABLE_NAME host
  4537. TABLE_TYPE BASE TABLE
  4538. ENGINE MyISAM
  4539. VERSION 10
  4540. ROW_FORMAT Fixed
  4541. TABLE_ROWS 0
  4542. AVG_ROW_LENGTH #ARL#
  4543. DATA_LENGTH #DL#
  4544. MAX_DATA_LENGTH #MDL#
  4545. INDEX_LENGTH #IL#
  4546. DATA_FREE #DF#
  4547. AUTO_INCREMENT NULL
  4548. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4549. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4550. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4551. TABLE_COLLATION utf8_bin
  4552. CHECKSUM NULL
  4553. CREATE_OPTIONS
  4554. TABLE_COMMENT Host privileges; Merged with database privileges
  4555. TABLE_CATALOG NULL
  4556. TABLE_SCHEMA mysql
  4557. TABLE_NAME ndb_binlog_index
  4558. TABLE_TYPE BASE TABLE
  4559. ENGINE MyISAM
  4560. VERSION 10
  4561. ROW_FORMAT Dynamic
  4562. TABLE_ROWS 0
  4563. AVG_ROW_LENGTH #ARL#
  4564. DATA_LENGTH #DL#
  4565. MAX_DATA_LENGTH #MDL#
  4566. INDEX_LENGTH #IL#
  4567. DATA_FREE #DF#
  4568. AUTO_INCREMENT NULL
  4569. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4570. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4571. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4572. TABLE_COLLATION latin1_swedish_ci
  4573. CHECKSUM NULL
  4574. CREATE_OPTIONS
  4575. TABLE_COMMENT
  4576. TABLE_CATALOG NULL
  4577. TABLE_SCHEMA mysql
  4578. TABLE_NAME plugin
  4579. TABLE_TYPE BASE TABLE
  4580. ENGINE MyISAM
  4581. VERSION 10
  4582. ROW_FORMAT Fixed
  4583. TABLE_ROWS 0
  4584. AVG_ROW_LENGTH #ARL#
  4585. DATA_LENGTH #DL#
  4586. MAX_DATA_LENGTH #MDL#
  4587. INDEX_LENGTH #IL#
  4588. DATA_FREE #DF#
  4589. AUTO_INCREMENT NULL
  4590. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4591. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4592. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4593. TABLE_COLLATION utf8_bin
  4594. CHECKSUM NULL
  4595. CREATE_OPTIONS
  4596. TABLE_COMMENT MySQL plugins
  4597. TABLE_CATALOG NULL
  4598. TABLE_SCHEMA mysql
  4599. TABLE_NAME proc
  4600. TABLE_TYPE BASE TABLE
  4601. ENGINE MyISAM
  4602. VERSION 10
  4603. ROW_FORMAT Dynamic
  4604. TABLE_ROWS 1
  4605. AVG_ROW_LENGTH #ARL#
  4606. DATA_LENGTH #DL#
  4607. MAX_DATA_LENGTH #MDL#
  4608. INDEX_LENGTH #IL#
  4609. DATA_FREE #DF#
  4610. AUTO_INCREMENT NULL
  4611. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4612. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4613. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4614. TABLE_COLLATION utf8_general_ci
  4615. CHECKSUM NULL
  4616. CREATE_OPTIONS
  4617. TABLE_COMMENT Stored Procedures
  4618. TABLE_CATALOG NULL
  4619. TABLE_SCHEMA mysql
  4620. TABLE_NAME procs_priv
  4621. TABLE_TYPE BASE TABLE
  4622. ENGINE MyISAM
  4623. VERSION 10
  4624. ROW_FORMAT Fixed
  4625. TABLE_ROWS 0
  4626. AVG_ROW_LENGTH #ARL#
  4627. DATA_LENGTH #DL#
  4628. MAX_DATA_LENGTH #MDL#
  4629. INDEX_LENGTH #IL#
  4630. DATA_FREE #DF#
  4631. AUTO_INCREMENT NULL
  4632. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4633. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4634. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4635. TABLE_COLLATION utf8_bin
  4636. CHECKSUM NULL
  4637. CREATE_OPTIONS
  4638. TABLE_COMMENT Procedure privileges
  4639. TABLE_CATALOG NULL
  4640. TABLE_SCHEMA mysql
  4641. TABLE_NAME servers
  4642. TABLE_TYPE BASE TABLE
  4643. ENGINE MyISAM
  4644. VERSION 10
  4645. ROW_FORMAT Fixed
  4646. TABLE_ROWS 0
  4647. AVG_ROW_LENGTH #ARL#
  4648. DATA_LENGTH #DL#
  4649. MAX_DATA_LENGTH #MDL#
  4650. INDEX_LENGTH #IL#
  4651. DATA_FREE #DF#
  4652. AUTO_INCREMENT NULL
  4653. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4654. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4655. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4656. TABLE_COLLATION utf8_general_ci
  4657. CHECKSUM NULL
  4658. CREATE_OPTIONS
  4659. TABLE_COMMENT MySQL Foreign Servers table
  4660. TABLE_CATALOG NULL
  4661. TABLE_SCHEMA mysql
  4662. TABLE_NAME slow_log
  4663. TABLE_TYPE BASE TABLE
  4664. ENGINE CSV
  4665. VERSION 10
  4666. ROW_FORMAT Dynamic
  4667. TABLE_ROWS 2
  4668. AVG_ROW_LENGTH #ARL#
  4669. DATA_LENGTH #DL#
  4670. MAX_DATA_LENGTH #MDL#
  4671. INDEX_LENGTH #IL#
  4672. DATA_FREE #DF#
  4673. AUTO_INCREMENT NULL
  4674. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4675. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4676. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4677. TABLE_COLLATION utf8_general_ci
  4678. CHECKSUM NULL
  4679. CREATE_OPTIONS
  4680. TABLE_COMMENT Slow log
  4681. TABLE_CATALOG NULL
  4682. TABLE_SCHEMA mysql
  4683. TABLE_NAME tables_priv
  4684. TABLE_TYPE BASE TABLE
  4685. ENGINE MyISAM
  4686. VERSION 10
  4687. ROW_FORMAT Fixed
  4688. TABLE_ROWS 0
  4689. AVG_ROW_LENGTH #ARL#
  4690. DATA_LENGTH #DL#
  4691. MAX_DATA_LENGTH #MDL#
  4692. INDEX_LENGTH #IL#
  4693. DATA_FREE #DF#
  4694. AUTO_INCREMENT NULL
  4695. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4696. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4697. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4698. TABLE_COLLATION utf8_bin
  4699. CHECKSUM NULL
  4700. CREATE_OPTIONS
  4701. TABLE_COMMENT Table privileges
  4702. TABLE_CATALOG NULL
  4703. TABLE_SCHEMA mysql
  4704. TABLE_NAME time_zone
  4705. TABLE_TYPE BASE TABLE
  4706. ENGINE MyISAM
  4707. VERSION 10
  4708. ROW_FORMAT Fixed
  4709. TABLE_ROWS 5
  4710. AVG_ROW_LENGTH #ARL#
  4711. DATA_LENGTH #DL#
  4712. MAX_DATA_LENGTH #MDL#
  4713. INDEX_LENGTH #IL#
  4714. DATA_FREE #DF#
  4715. AUTO_INCREMENT 6
  4716. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4717. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4718. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4719. TABLE_COLLATION utf8_general_ci
  4720. CHECKSUM NULL
  4721. CREATE_OPTIONS
  4722. TABLE_COMMENT Time zones
  4723. TABLE_CATALOG NULL
  4724. TABLE_SCHEMA mysql
  4725. TABLE_NAME time_zone_leap_second
  4726. TABLE_TYPE BASE TABLE
  4727. ENGINE MyISAM
  4728. VERSION 10
  4729. ROW_FORMAT Fixed
  4730. TABLE_ROWS 22
  4731. AVG_ROW_LENGTH #ARL#
  4732. DATA_LENGTH #DL#
  4733. MAX_DATA_LENGTH #MDL#
  4734. INDEX_LENGTH #IL#
  4735. DATA_FREE #DF#
  4736. AUTO_INCREMENT NULL
  4737. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4738. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4739. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4740. TABLE_COLLATION utf8_general_ci
  4741. CHECKSUM NULL
  4742. CREATE_OPTIONS
  4743. TABLE_COMMENT Leap seconds information for time zones
  4744. TABLE_CATALOG NULL
  4745. TABLE_SCHEMA mysql
  4746. TABLE_NAME time_zone_name
  4747. TABLE_TYPE BASE TABLE
  4748. ENGINE MyISAM
  4749. VERSION 10
  4750. ROW_FORMAT Fixed
  4751. TABLE_ROWS 6
  4752. AVG_ROW_LENGTH #ARL#
  4753. DATA_LENGTH #DL#
  4754. MAX_DATA_LENGTH #MDL#
  4755. INDEX_LENGTH #IL#
  4756. DATA_FREE #DF#
  4757. AUTO_INCREMENT NULL
  4758. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4759. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4760. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4761. TABLE_COLLATION utf8_general_ci
  4762. CHECKSUM NULL
  4763. CREATE_OPTIONS
  4764. TABLE_COMMENT Time zone names
  4765. TABLE_CATALOG NULL
  4766. TABLE_SCHEMA mysql
  4767. TABLE_NAME time_zone_transition
  4768. TABLE_TYPE BASE TABLE
  4769. ENGINE MyISAM
  4770. VERSION 10
  4771. ROW_FORMAT Fixed
  4772. TABLE_ROWS 393
  4773. AVG_ROW_LENGTH #ARL#
  4774. DATA_LENGTH #DL#
  4775. MAX_DATA_LENGTH #MDL#
  4776. INDEX_LENGTH #IL#
  4777. DATA_FREE #DF#
  4778. AUTO_INCREMENT NULL
  4779. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4780. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4781. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4782. TABLE_COLLATION utf8_general_ci
  4783. CHECKSUM NULL
  4784. CREATE_OPTIONS
  4785. TABLE_COMMENT Time zone transitions
  4786. TABLE_CATALOG NULL
  4787. TABLE_SCHEMA mysql
  4788. TABLE_NAME time_zone_transition_type
  4789. TABLE_TYPE BASE TABLE
  4790. ENGINE MyISAM
  4791. VERSION 10
  4792. ROW_FORMAT Fixed
  4793. TABLE_ROWS 31
  4794. AVG_ROW_LENGTH #ARL#
  4795. DATA_LENGTH #DL#
  4796. MAX_DATA_LENGTH #MDL#
  4797. INDEX_LENGTH #IL#
  4798. DATA_FREE #DF#
  4799. AUTO_INCREMENT NULL
  4800. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4801. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4802. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4803. TABLE_COLLATION utf8_general_ci
  4804. CHECKSUM NULL
  4805. CREATE_OPTIONS
  4806. TABLE_COMMENT Time zone transition types
  4807. TABLE_CATALOG NULL
  4808. TABLE_SCHEMA mysql
  4809. TABLE_NAME user
  4810. TABLE_TYPE BASE TABLE
  4811. ENGINE MyISAM
  4812. VERSION 10
  4813. ROW_FORMAT Dynamic
  4814. TABLE_ROWS 3
  4815. AVG_ROW_LENGTH #ARL#
  4816. DATA_LENGTH #DL#
  4817. MAX_DATA_LENGTH #MDL#
  4818. INDEX_LENGTH #IL#
  4819. DATA_FREE #DF#
  4820. AUTO_INCREMENT NULL
  4821. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4822. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4823. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4824. TABLE_COLLATION utf8_bin
  4825. CHECKSUM NULL
  4826. CREATE_OPTIONS
  4827. TABLE_COMMENT Users and global privileges
  4828. TABLE_CATALOG NULL
  4829. TABLE_SCHEMA test
  4830. TABLE_NAME t1
  4831. TABLE_TYPE BASE TABLE
  4832. ENGINE InnoDB
  4833. VERSION 10
  4834. ROW_FORMAT Compact
  4835. TABLE_ROWS 10
  4836. AVG_ROW_LENGTH #ARL#
  4837. DATA_LENGTH #DL#
  4838. MAX_DATA_LENGTH #MDL#
  4839. INDEX_LENGTH #IL#
  4840. DATA_FREE #DF#
  4841. AUTO_INCREMENT NULL
  4842. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4843. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4844. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4845. TABLE_COLLATION latin1_swedish_ci
  4846. CHECKSUM NULL
  4847. CREATE_OPTIONS
  4848. TABLE_COMMENT
  4849. TABLE_CATALOG NULL
  4850. TABLE_SCHEMA test
  4851. TABLE_NAME t10
  4852. TABLE_TYPE BASE TABLE
  4853. ENGINE InnoDB
  4854. VERSION 10
  4855. ROW_FORMAT Compact
  4856. TABLE_ROWS 10
  4857. AVG_ROW_LENGTH #ARL#
  4858. DATA_LENGTH #DL#
  4859. MAX_DATA_LENGTH #MDL#
  4860. INDEX_LENGTH #IL#
  4861. DATA_FREE #DF#
  4862. AUTO_INCREMENT NULL
  4863. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4864. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4865. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4866. TABLE_COLLATION latin1_swedish_ci
  4867. CHECKSUM NULL
  4868. CREATE_OPTIONS
  4869. TABLE_COMMENT
  4870. TABLE_CATALOG NULL
  4871. TABLE_SCHEMA test
  4872. TABLE_NAME t11
  4873. TABLE_TYPE BASE TABLE
  4874. ENGINE InnoDB
  4875. VERSION 10
  4876. ROW_FORMAT Compact
  4877. TABLE_ROWS 10
  4878. AVG_ROW_LENGTH #ARL#
  4879. DATA_LENGTH #DL#
  4880. MAX_DATA_LENGTH #MDL#
  4881. INDEX_LENGTH #IL#
  4882. DATA_FREE #DF#
  4883. AUTO_INCREMENT NULL
  4884. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4885. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4886. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4887. TABLE_COLLATION latin1_swedish_ci
  4888. CHECKSUM NULL
  4889. CREATE_OPTIONS
  4890. TABLE_COMMENT
  4891. TABLE_CATALOG NULL
  4892. TABLE_SCHEMA test
  4893. TABLE_NAME t2
  4894. TABLE_TYPE BASE TABLE
  4895. ENGINE InnoDB
  4896. VERSION 10
  4897. ROW_FORMAT Compact
  4898. TABLE_ROWS 10
  4899. AVG_ROW_LENGTH #ARL#
  4900. DATA_LENGTH #DL#
  4901. MAX_DATA_LENGTH #MDL#
  4902. INDEX_LENGTH #IL#
  4903. DATA_FREE #DF#
  4904. AUTO_INCREMENT NULL
  4905. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4906. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4907. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4908. TABLE_COLLATION latin1_swedish_ci
  4909. CHECKSUM NULL
  4910. CREATE_OPTIONS
  4911. TABLE_COMMENT
  4912. TABLE_CATALOG NULL
  4913. TABLE_SCHEMA test
  4914. TABLE_NAME t3
  4915. TABLE_TYPE BASE TABLE
  4916. ENGINE InnoDB
  4917. VERSION 10
  4918. ROW_FORMAT Compact
  4919. TABLE_ROWS 10
  4920. AVG_ROW_LENGTH #ARL#
  4921. DATA_LENGTH #DL#
  4922. MAX_DATA_LENGTH #MDL#
  4923. INDEX_LENGTH #IL#
  4924. DATA_FREE #DF#
  4925. AUTO_INCREMENT NULL
  4926. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4927. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4928. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4929. TABLE_COLLATION latin1_swedish_ci
  4930. CHECKSUM NULL
  4931. CREATE_OPTIONS
  4932. TABLE_COMMENT
  4933. TABLE_CATALOG NULL
  4934. TABLE_SCHEMA test
  4935. TABLE_NAME t4
  4936. TABLE_TYPE BASE TABLE
  4937. ENGINE InnoDB
  4938. VERSION 10
  4939. ROW_FORMAT Compact
  4940. TABLE_ROWS 10
  4941. AVG_ROW_LENGTH #ARL#
  4942. DATA_LENGTH #DL#
  4943. MAX_DATA_LENGTH #MDL#
  4944. INDEX_LENGTH #IL#
  4945. DATA_FREE #DF#
  4946. AUTO_INCREMENT NULL
  4947. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4948. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4949. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4950. TABLE_COLLATION latin1_swedish_ci
  4951. CHECKSUM NULL
  4952. CREATE_OPTIONS
  4953. TABLE_COMMENT
  4954. TABLE_CATALOG NULL
  4955. TABLE_SCHEMA test
  4956. TABLE_NAME t7
  4957. TABLE_TYPE BASE TABLE
  4958. ENGINE InnoDB
  4959. VERSION 10
  4960. ROW_FORMAT Compact
  4961. TABLE_ROWS 10
  4962. AVG_ROW_LENGTH #ARL#
  4963. DATA_LENGTH #DL#
  4964. MAX_DATA_LENGTH #MDL#
  4965. INDEX_LENGTH #IL#
  4966. DATA_FREE #DF#
  4967. AUTO_INCREMENT NULL
  4968. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4969. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4970. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4971. TABLE_COLLATION latin1_swedish_ci
  4972. CHECKSUM NULL
  4973. CREATE_OPTIONS
  4974. TABLE_COMMENT
  4975. TABLE_CATALOG NULL
  4976. TABLE_SCHEMA test
  4977. TABLE_NAME t8
  4978. TABLE_TYPE BASE TABLE
  4979. ENGINE InnoDB
  4980. VERSION 10
  4981. ROW_FORMAT Compact
  4982. TABLE_ROWS 10
  4983. AVG_ROW_LENGTH #ARL#
  4984. DATA_LENGTH #DL#
  4985. MAX_DATA_LENGTH #MDL#
  4986. INDEX_LENGTH #IL#
  4987. DATA_FREE #DF#
  4988. AUTO_INCREMENT NULL
  4989. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4990. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4991. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4992. TABLE_COLLATION latin1_swedish_ci
  4993. CHECKSUM NULL
  4994. CREATE_OPTIONS
  4995. TABLE_COMMENT
  4996. TABLE_CATALOG NULL
  4997. TABLE_SCHEMA test
  4998. TABLE_NAME t9
  4999. TABLE_TYPE BASE TABLE
  5000. ENGINE InnoDB
  5001. VERSION 10
  5002. ROW_FORMAT Compact
  5003. TABLE_ROWS 10
  5004. AVG_ROW_LENGTH #ARL#
  5005. DATA_LENGTH #DL#
  5006. MAX_DATA_LENGTH #MDL#
  5007. INDEX_LENGTH #IL#
  5008. DATA_FREE #DF#
  5009. AUTO_INCREMENT NULL
  5010. CREATE_TIME YYYY-MM-DD hh:mm:ss
  5011. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  5012. CHECK_TIME YYYY-MM-DD hh:mm:ss
  5013. TABLE_COLLATION latin1_swedish_ci
  5014. CHECKSUM NULL
  5015. CREATE_OPTIONS
  5016. TABLE_COMMENT
  5017. TABLE_CATALOG NULL
  5018. TABLE_SCHEMA test
  5019. TABLE_NAME tb1
  5020. TABLE_TYPE BASE TABLE
  5021. ENGINE InnoDB
  5022. VERSION 10
  5023. ROW_FORMAT Compact
  5024. TABLE_ROWS 10
  5025. AVG_ROW_LENGTH #ARL#
  5026. DATA_LENGTH #DL#
  5027. MAX_DATA_LENGTH #MDL#
  5028. INDEX_LENGTH #IL#
  5029. DATA_FREE #DF#
  5030. AUTO_INCREMENT NULL
  5031. CREATE_TIME YYYY-MM-DD hh:mm:ss
  5032. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  5033. CHECK_TIME YYYY-MM-DD hh:mm:ss
  5034. TABLE_COLLATION latin1_swedish_ci
  5035. CHECKSUM NULL
  5036. CREATE_OPTIONS
  5037. TABLE_COMMENT
  5038. TABLE_CATALOG NULL
  5039. TABLE_SCHEMA test
  5040. TABLE_NAME tb2
  5041. TABLE_TYPE BASE TABLE
  5042. ENGINE InnoDB
  5043. VERSION 10
  5044. ROW_FORMAT Compact
  5045. TABLE_ROWS 10
  5046. AVG_ROW_LENGTH #ARL#
  5047. DATA_LENGTH #DL#
  5048. MAX_DATA_LENGTH #MDL#
  5049. INDEX_LENGTH #IL#
  5050. DATA_FREE #DF#
  5051. AUTO_INCREMENT NULL
  5052. CREATE_TIME YYYY-MM-DD hh:mm:ss
  5053. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  5054. CHECK_TIME YYYY-MM-DD hh:mm:ss
  5055. TABLE_COLLATION latin1_swedish_ci
  5056. CHECKSUM NULL
  5057. CREATE_OPTIONS
  5058. TABLE_COMMENT
  5059. TABLE_CATALOG NULL
  5060. TABLE_SCHEMA test
  5061. TABLE_NAME tb3
  5062. TABLE_TYPE BASE TABLE
  5063. ENGINE InnoDB
  5064. VERSION 10
  5065. ROW_FORMAT Compact
  5066. TABLE_ROWS 10
  5067. AVG_ROW_LENGTH #ARL#
  5068. DATA_LENGTH #DL#
  5069. MAX_DATA_LENGTH #MDL#
  5070. INDEX_LENGTH #IL#
  5071. DATA_FREE #DF#
  5072. AUTO_INCREMENT NULL
  5073. CREATE_TIME YYYY-MM-DD hh:mm:ss
  5074. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  5075. CHECK_TIME YYYY-MM-DD hh:mm:ss
  5076. TABLE_COLLATION latin1_swedish_ci
  5077. CHECKSUM NULL
  5078. CREATE_OPTIONS
  5079. TABLE_COMMENT
  5080. TABLE_CATALOG NULL
  5081. TABLE_SCHEMA test
  5082. TABLE_NAME tb4
  5083. TABLE_TYPE BASE TABLE
  5084. ENGINE InnoDB
  5085. VERSION 10
  5086. ROW_FORMAT Compact
  5087. TABLE_ROWS 10
  5088. AVG_ROW_LENGTH #ARL#
  5089. DATA_LENGTH #DL#
  5090. MAX_DATA_LENGTH #MDL#
  5091. INDEX_LENGTH #IL#
  5092. DATA_FREE #DF#
  5093. AUTO_INCREMENT NULL
  5094. CREATE_TIME YYYY-MM-DD hh:mm:ss
  5095. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  5096. CHECK_TIME YYYY-MM-DD hh:mm:ss
  5097. TABLE_COLLATION latin1_swedish_ci
  5098. CHECKSUM NULL
  5099. CREATE_OPTIONS
  5100. TABLE_COMMENT
  5101. TABLE_CATALOG NULL
  5102. TABLE_SCHEMA test1
  5103. TABLE_NAME tb2
  5104. TABLE_TYPE BASE TABLE
  5105. ENGINE InnoDB
  5106. VERSION 10
  5107. ROW_FORMAT Compact
  5108. TABLE_ROWS 10
  5109. AVG_ROW_LENGTH #ARL#
  5110. DATA_LENGTH #DL#
  5111. MAX_DATA_LENGTH #MDL#
  5112. INDEX_LENGTH #IL#
  5113. DATA_FREE #DF#
  5114. AUTO_INCREMENT NULL
  5115. CREATE_TIME YYYY-MM-DD hh:mm:ss
  5116. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  5117. CHECK_TIME YYYY-MM-DD hh:mm:ss
  5118. TABLE_COLLATION latin1_swedish_ci
  5119. CHECKSUM NULL
  5120. CREATE_OPTIONS
  5121. TABLE_COMMENT
  5122. TABLE_CATALOG NULL
  5123. TABLE_SCHEMA test4
  5124. TABLE_NAME t6
  5125. TABLE_TYPE BASE TABLE
  5126. ENGINE InnoDB
  5127. VERSION 10
  5128. ROW_FORMAT Compact
  5129. TABLE_ROWS 10
  5130. AVG_ROW_LENGTH #ARL#
  5131. DATA_LENGTH #DL#
  5132. MAX_DATA_LENGTH #MDL#
  5133. INDEX_LENGTH #IL#
  5134. DATA_FREE #DF#
  5135. AUTO_INCREMENT NULL
  5136. CREATE_TIME YYYY-MM-DD hh:mm:ss
  5137. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  5138. CHECK_TIME YYYY-MM-DD hh:mm:ss
  5139. TABLE_COLLATION latin1_swedish_ci
  5140. CHECKSUM NULL
  5141. CREATE_OPTIONS
  5142. TABLE_COMMENT
  5143. select s.catalog_name, s.schema_name, s.default_character_set_name,
  5144. t.table_type, t.engine
  5145. from information_schema.schemata s inner join information_schema.tables t
  5146. ORDER BY s.schema_name, s.default_character_set_name, table_type, engine;
  5147. catalog_name schema_name default_character_set_name table_type engine
  5148. NULL db_datadict latin1 BASE TABLE CSV
  5149. NULL db_datadict latin1 BASE TABLE CSV
  5150. NULL db_datadict latin1 BASE TABLE InnoDB
  5151. NULL db_datadict latin1 BASE TABLE InnoDB
  5152. NULL db_datadict latin1 BASE TABLE InnoDB
  5153. NULL db_datadict latin1 BASE TABLE InnoDB
  5154. NULL db_datadict latin1 BASE TABLE InnoDB
  5155. NULL db_datadict latin1 BASE TABLE InnoDB
  5156. NULL db_datadict latin1 BASE TABLE InnoDB
  5157. NULL db_datadict latin1 BASE TABLE InnoDB
  5158. NULL db_datadict latin1 BASE TABLE InnoDB
  5159. NULL db_datadict latin1 BASE TABLE InnoDB
  5160. NULL db_datadict latin1 BASE TABLE InnoDB
  5161. NULL db_datadict latin1 BASE TABLE InnoDB
  5162. NULL db_datadict latin1 BASE TABLE InnoDB
  5163. NULL db_datadict latin1 BASE TABLE InnoDB
  5164. NULL db_datadict latin1 BASE TABLE InnoDB
  5165. NULL db_datadict latin1 BASE TABLE MyISAM
  5166. NULL db_datadict latin1 BASE TABLE MyISAM
  5167. NULL db_datadict latin1 BASE TABLE MyISAM
  5168. NULL db_datadict latin1 BASE TABLE MyISAM
  5169. NULL db_datadict latin1 BASE TABLE MyISAM
  5170. NULL db_datadict latin1 BASE TABLE MyISAM
  5171. NULL db_datadict latin1 BASE TABLE MyISAM
  5172. NULL db_datadict latin1 BASE TABLE MyISAM
  5173. NULL db_datadict latin1 BASE TABLE MyISAM
  5174. NULL db_datadict latin1 BASE TABLE MyISAM
  5175. NULL db_datadict latin1 BASE TABLE MyISAM
  5176. NULL db_datadict latin1 BASE TABLE MyISAM
  5177. NULL db_datadict latin1 BASE TABLE MyISAM
  5178. NULL db_datadict latin1 BASE TABLE MyISAM
  5179. NULL db_datadict latin1 BASE TABLE MyISAM
  5180. NULL db_datadict latin1 BASE TABLE MyISAM
  5181. NULL db_datadict latin1 BASE TABLE MyISAM
  5182. NULL db_datadict latin1 BASE TABLE MyISAM
  5183. NULL db_datadict latin1 BASE TABLE MyISAM
  5184. NULL db_datadict latin1 BASE TABLE MyISAM
  5185. NULL db_datadict latin1 BASE TABLE MyISAM
  5186. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5187. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5188. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5189. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5190. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5191. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5192. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5193. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5194. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5195. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5196. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5197. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5198. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5199. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5200. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5201. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5202. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5203. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5204. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5205. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  5206. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  5207. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  5208. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  5209. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  5210. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  5211. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  5212. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  5213. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  5214. NULL db_datadict latin1 VIEW NULL
  5215. NULL db_datadict latin1 VIEW NULL
  5216. NULL db_datadict latin1 VIEW NULL
  5217. NULL information_schema utf8 BASE TABLE CSV
  5218. NULL information_schema utf8 BASE TABLE CSV
  5219. NULL information_schema utf8 BASE TABLE InnoDB
  5220. NULL information_schema utf8 BASE TABLE InnoDB
  5221. NULL information_schema utf8 BASE TABLE InnoDB
  5222. NULL information_schema utf8 BASE TABLE InnoDB
  5223. NULL information_schema utf8 BASE TABLE InnoDB
  5224. NULL information_schema utf8 BASE TABLE InnoDB
  5225. NULL information_schema utf8 BASE TABLE InnoDB
  5226. NULL information_schema utf8 BASE TABLE InnoDB
  5227. NULL information_schema utf8 BASE TABLE InnoDB
  5228. NULL information_schema utf8 BASE TABLE InnoDB
  5229. NULL information_schema utf8 BASE TABLE InnoDB
  5230. NULL information_schema utf8 BASE TABLE InnoDB
  5231. NULL information_schema utf8 BASE TABLE InnoDB
  5232. NULL information_schema utf8 BASE TABLE InnoDB
  5233. NULL information_schema utf8 BASE TABLE InnoDB
  5234. NULL information_schema utf8 BASE TABLE MyISAM
  5235. NULL information_schema utf8 BASE TABLE MyISAM
  5236. NULL information_schema utf8 BASE TABLE MyISAM
  5237. NULL information_schema utf8 BASE TABLE MyISAM
  5238. NULL information_schema utf8 BASE TABLE MyISAM
  5239. NULL information_schema utf8 BASE TABLE MyISAM
  5240. NULL information_schema utf8 BASE TABLE MyISAM
  5241. NULL information_schema utf8 BASE TABLE MyISAM
  5242. NULL information_schema utf8 BASE TABLE MyISAM
  5243. NULL information_schema utf8 BASE TABLE MyISAM
  5244. NULL information_schema utf8 BASE TABLE MyISAM
  5245. NULL information_schema utf8 BASE TABLE MyISAM
  5246. NULL information_schema utf8 BASE TABLE MyISAM
  5247. NULL information_schema utf8 BASE TABLE MyISAM
  5248. NULL information_schema utf8 BASE TABLE MyISAM
  5249. NULL information_schema utf8 BASE TABLE MyISAM
  5250. NULL information_schema utf8 BASE TABLE MyISAM
  5251. NULL information_schema utf8 BASE TABLE MyISAM
  5252. NULL information_schema utf8 BASE TABLE MyISAM
  5253. NULL information_schema utf8 BASE TABLE MyISAM
  5254. NULL information_schema utf8 BASE TABLE MyISAM
  5255. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5256. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5257. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5258. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5259. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5260. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5261. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5262. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5263. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5264. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5265. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5266. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5267. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5268. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5269. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5270. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5271. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5272. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5273. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5274. NULL information_schema utf8 SYSTEM VIEW MEMORY
  5275. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5276. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5277. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5278. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5279. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5280. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5281. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5282. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5283. NULL information_schema utf8 VIEW NULL
  5284. NULL information_schema utf8 VIEW NULL
  5285. NULL information_schema utf8 VIEW NULL
  5286. NULL mysql latin1 BASE TABLE CSV
  5287. NULL mysql latin1 BASE TABLE CSV
  5288. NULL mysql latin1 BASE TABLE InnoDB
  5289. NULL mysql latin1 BASE TABLE InnoDB
  5290. NULL mysql latin1 BASE TABLE InnoDB
  5291. NULL mysql latin1 BASE TABLE InnoDB
  5292. NULL mysql latin1 BASE TABLE InnoDB
  5293. NULL mysql latin1 BASE TABLE InnoDB
  5294. NULL mysql latin1 BASE TABLE InnoDB
  5295. NULL mysql latin1 BASE TABLE InnoDB
  5296. NULL mysql latin1 BASE TABLE InnoDB
  5297. NULL mysql latin1 BASE TABLE InnoDB
  5298. NULL mysql latin1 BASE TABLE InnoDB
  5299. NULL mysql latin1 BASE TABLE InnoDB
  5300. NULL mysql latin1 BASE TABLE InnoDB
  5301. NULL mysql latin1 BASE TABLE InnoDB
  5302. NULL mysql latin1 BASE TABLE InnoDB
  5303. NULL mysql latin1 BASE TABLE MyISAM
  5304. NULL mysql latin1 BASE TABLE MyISAM
  5305. NULL mysql latin1 BASE TABLE MyISAM
  5306. NULL mysql latin1 BASE TABLE MyISAM
  5307. NULL mysql latin1 BASE TABLE MyISAM
  5308. NULL mysql latin1 BASE TABLE MyISAM
  5309. NULL mysql latin1 BASE TABLE MyISAM
  5310. NULL mysql latin1 BASE TABLE MyISAM
  5311. NULL mysql latin1 BASE TABLE MyISAM
  5312. NULL mysql latin1 BASE TABLE MyISAM
  5313. NULL mysql latin1 BASE TABLE MyISAM
  5314. NULL mysql latin1 BASE TABLE MyISAM
  5315. NULL mysql latin1 BASE TABLE MyISAM
  5316. NULL mysql latin1 BASE TABLE MyISAM
  5317. NULL mysql latin1 BASE TABLE MyISAM
  5318. NULL mysql latin1 BASE TABLE MyISAM
  5319. NULL mysql latin1 BASE TABLE MyISAM
  5320. NULL mysql latin1 BASE TABLE MyISAM
  5321. NULL mysql latin1 BASE TABLE MyISAM
  5322. NULL mysql latin1 BASE TABLE MyISAM
  5323. NULL mysql latin1 BASE TABLE MyISAM
  5324. NULL mysql latin1 SYSTEM VIEW MEMORY
  5325. NULL mysql latin1 SYSTEM VIEW MEMORY
  5326. NULL mysql latin1 SYSTEM VIEW MEMORY
  5327. NULL mysql latin1 SYSTEM VIEW MEMORY
  5328. NULL mysql latin1 SYSTEM VIEW MEMORY
  5329. NULL mysql latin1 SYSTEM VIEW MEMORY
  5330. NULL mysql latin1 SYSTEM VIEW MEMORY
  5331. NULL mysql latin1 SYSTEM VIEW MEMORY
  5332. NULL mysql latin1 SYSTEM VIEW MEMORY
  5333. NULL mysql latin1 SYSTEM VIEW MEMORY
  5334. NULL mysql latin1 SYSTEM VIEW MEMORY
  5335. NULL mysql latin1 SYSTEM VIEW MEMORY
  5336. NULL mysql latin1 SYSTEM VIEW MEMORY
  5337. NULL mysql latin1 SYSTEM VIEW MEMORY
  5338. NULL mysql latin1 SYSTEM VIEW MEMORY
  5339. NULL mysql latin1 SYSTEM VIEW MEMORY
  5340. NULL mysql latin1 SYSTEM VIEW MEMORY
  5341. NULL mysql latin1 SYSTEM VIEW MEMORY
  5342. NULL mysql latin1 SYSTEM VIEW MEMORY
  5343. NULL mysql latin1 SYSTEM VIEW MEMORY
  5344. NULL mysql latin1 SYSTEM VIEW MyISAM
  5345. NULL mysql latin1 SYSTEM VIEW MyISAM
  5346. NULL mysql latin1 SYSTEM VIEW MyISAM
  5347. NULL mysql latin1 SYSTEM VIEW MyISAM
  5348. NULL mysql latin1 SYSTEM VIEW MyISAM
  5349. NULL mysql latin1 SYSTEM VIEW MyISAM
  5350. NULL mysql latin1 SYSTEM VIEW MyISAM
  5351. NULL mysql latin1 SYSTEM VIEW MyISAM
  5352. NULL mysql latin1 VIEW NULL
  5353. NULL mysql latin1 VIEW NULL
  5354. NULL mysql latin1 VIEW NULL
  5355. NULL test latin1 BASE TABLE CSV
  5356. NULL test latin1 BASE TABLE CSV
  5357. NULL test latin1 BASE TABLE InnoDB
  5358. NULL test latin1 BASE TABLE InnoDB
  5359. NULL test latin1 BASE TABLE InnoDB
  5360. NULL test latin1 BASE TABLE InnoDB
  5361. NULL test latin1 BASE TABLE InnoDB
  5362. NULL test latin1 BASE TABLE InnoDB
  5363. NULL test latin1 BASE TABLE InnoDB
  5364. NULL test latin1 BASE TABLE InnoDB
  5365. NULL test latin1 BASE TABLE InnoDB
  5366. NULL test latin1 BASE TABLE InnoDB
  5367. NULL test latin1 BASE TABLE InnoDB
  5368. NULL test latin1 BASE TABLE InnoDB
  5369. NULL test latin1 BASE TABLE InnoDB
  5370. NULL test latin1 BASE TABLE InnoDB
  5371. NULL test latin1 BASE TABLE InnoDB
  5372. NULL test latin1 BASE TABLE MyISAM
  5373. NULL test latin1 BASE TABLE MyISAM
  5374. NULL test latin1 BASE TABLE MyISAM
  5375. NULL test latin1 BASE TABLE MyISAM
  5376. NULL test latin1 BASE TABLE MyISAM
  5377. NULL test latin1 BASE TABLE MyISAM
  5378. NULL test latin1 BASE TABLE MyISAM
  5379. NULL test latin1 BASE TABLE MyISAM
  5380. NULL test latin1 BASE TABLE MyISAM
  5381. NULL test latin1 BASE TABLE MyISAM
  5382. NULL test latin1 BASE TABLE MyISAM
  5383. NULL test latin1 BASE TABLE MyISAM
  5384. NULL test latin1 BASE TABLE MyISAM
  5385. NULL test latin1 BASE TABLE MyISAM
  5386. NULL test latin1 BASE TABLE MyISAM
  5387. NULL test latin1 BASE TABLE MyISAM
  5388. NULL test latin1 BASE TABLE MyISAM
  5389. NULL test latin1 BASE TABLE MyISAM
  5390. NULL test latin1 BASE TABLE MyISAM
  5391. NULL test latin1 BASE TABLE MyISAM
  5392. NULL test latin1 BASE TABLE MyISAM
  5393. NULL test latin1 SYSTEM VIEW MEMORY
  5394. NULL test latin1 SYSTEM VIEW MEMORY
  5395. NULL test latin1 SYSTEM VIEW MEMORY
  5396. NULL test latin1 SYSTEM VIEW MEMORY
  5397. NULL test latin1 SYSTEM VIEW MEMORY
  5398. NULL test latin1 SYSTEM VIEW MEMORY
  5399. NULL test latin1 SYSTEM VIEW MEMORY
  5400. NULL test latin1 SYSTEM VIEW MEMORY
  5401. NULL test latin1 SYSTEM VIEW MEMORY
  5402. NULL test latin1 SYSTEM VIEW MEMORY
  5403. NULL test latin1 SYSTEM VIEW MEMORY
  5404. NULL test latin1 SYSTEM VIEW MEMORY
  5405. NULL test latin1 SYSTEM VIEW MEMORY
  5406. NULL test latin1 SYSTEM VIEW MEMORY
  5407. NULL test latin1 SYSTEM VIEW MEMORY
  5408. NULL test latin1 SYSTEM VIEW MEMORY
  5409. NULL test latin1 SYSTEM VIEW MEMORY
  5410. NULL test latin1 SYSTEM VIEW MEMORY
  5411. NULL test latin1 SYSTEM VIEW MEMORY
  5412. NULL test latin1 SYSTEM VIEW MEMORY
  5413. NULL test latin1 SYSTEM VIEW MyISAM
  5414. NULL test latin1 SYSTEM VIEW MyISAM
  5415. NULL test latin1 SYSTEM VIEW MyISAM
  5416. NULL test latin1 SYSTEM VIEW MyISAM
  5417. NULL test latin1 SYSTEM VIEW MyISAM
  5418. NULL test latin1 SYSTEM VIEW MyISAM
  5419. NULL test latin1 SYSTEM VIEW MyISAM
  5420. NULL test latin1 SYSTEM VIEW MyISAM
  5421. NULL test latin1 VIEW NULL
  5422. NULL test latin1 VIEW NULL
  5423. NULL test latin1 VIEW NULL
  5424. NULL test1 latin1 BASE TABLE CSV
  5425. NULL test1 latin1 BASE TABLE CSV
  5426. NULL test1 latin1 BASE TABLE InnoDB
  5427. NULL test1 latin1 BASE TABLE InnoDB
  5428. NULL test1 latin1 BASE TABLE InnoDB
  5429. NULL test1 latin1 BASE TABLE InnoDB
  5430. NULL test1 latin1 BASE TABLE InnoDB
  5431. NULL test1 latin1 BASE TABLE InnoDB
  5432. NULL test1 latin1 BASE TABLE InnoDB
  5433. NULL test1 latin1 BASE TABLE InnoDB
  5434. NULL test1 latin1 BASE TABLE InnoDB
  5435. NULL test1 latin1 BASE TABLE InnoDB
  5436. NULL test1 latin1 BASE TABLE InnoDB
  5437. NULL test1 latin1 BASE TABLE InnoDB
  5438. NULL test1 latin1 BASE TABLE InnoDB
  5439. NULL test1 latin1 BASE TABLE InnoDB
  5440. NULL test1 latin1 BASE TABLE InnoDB
  5441. NULL test1 latin1 BASE TABLE MyISAM
  5442. NULL test1 latin1 BASE TABLE MyISAM
  5443. NULL test1 latin1 BASE TABLE MyISAM
  5444. NULL test1 latin1 BASE TABLE MyISAM
  5445. NULL test1 latin1 BASE TABLE MyISAM
  5446. NULL test1 latin1 BASE TABLE MyISAM
  5447. NULL test1 latin1 BASE TABLE MyISAM
  5448. NULL test1 latin1 BASE TABLE MyISAM
  5449. NULL test1 latin1 BASE TABLE MyISAM
  5450. NULL test1 latin1 BASE TABLE MyISAM
  5451. NULL test1 latin1 BASE TABLE MyISAM
  5452. NULL test1 latin1 BASE TABLE MyISAM
  5453. NULL test1 latin1 BASE TABLE MyISAM
  5454. NULL test1 latin1 BASE TABLE MyISAM
  5455. NULL test1 latin1 BASE TABLE MyISAM
  5456. NULL test1 latin1 BASE TABLE MyISAM
  5457. NULL test1 latin1 BASE TABLE MyISAM
  5458. NULL test1 latin1 BASE TABLE MyISAM
  5459. NULL test1 latin1 BASE TABLE MyISAM
  5460. NULL test1 latin1 BASE TABLE MyISAM
  5461. NULL test1 latin1 BASE TABLE MyISAM
  5462. NULL test1 latin1 SYSTEM VIEW MEMORY
  5463. NULL test1 latin1 SYSTEM VIEW MEMORY
  5464. NULL test1 latin1 SYSTEM VIEW MEMORY
  5465. NULL test1 latin1 SYSTEM VIEW MEMORY
  5466. NULL test1 latin1 SYSTEM VIEW MEMORY
  5467. NULL test1 latin1 SYSTEM VIEW MEMORY
  5468. NULL test1 latin1 SYSTEM VIEW MEMORY
  5469. NULL test1 latin1 SYSTEM VIEW MEMORY
  5470. NULL test1 latin1 SYSTEM VIEW MEMORY
  5471. NULL test1 latin1 SYSTEM VIEW MEMORY
  5472. NULL test1 latin1 SYSTEM VIEW MEMORY
  5473. NULL test1 latin1 SYSTEM VIEW MEMORY
  5474. NULL test1 latin1 SYSTEM VIEW MEMORY
  5475. NULL test1 latin1 SYSTEM VIEW MEMORY
  5476. NULL test1 latin1 SYSTEM VIEW MEMORY
  5477. NULL test1 latin1 SYSTEM VIEW MEMORY
  5478. NULL test1 latin1 SYSTEM VIEW MEMORY
  5479. NULL test1 latin1 SYSTEM VIEW MEMORY
  5480. NULL test1 latin1 SYSTEM VIEW MEMORY
  5481. NULL test1 latin1 SYSTEM VIEW MEMORY
  5482. NULL test1 latin1 SYSTEM VIEW MyISAM
  5483. NULL test1 latin1 SYSTEM VIEW MyISAM
  5484. NULL test1 latin1 SYSTEM VIEW MyISAM
  5485. NULL test1 latin1 SYSTEM VIEW MyISAM
  5486. NULL test1 latin1 SYSTEM VIEW MyISAM
  5487. NULL test1 latin1 SYSTEM VIEW MyISAM
  5488. NULL test1 latin1 SYSTEM VIEW MyISAM
  5489. NULL test1 latin1 SYSTEM VIEW MyISAM
  5490. NULL test1 latin1 VIEW NULL
  5491. NULL test1 latin1 VIEW NULL
  5492. NULL test1 latin1 VIEW NULL
  5493. NULL test4 latin1 BASE TABLE CSV
  5494. NULL test4 latin1 BASE TABLE CSV
  5495. NULL test4 latin1 BASE TABLE InnoDB
  5496. NULL test4 latin1 BASE TABLE InnoDB
  5497. NULL test4 latin1 BASE TABLE InnoDB
  5498. NULL test4 latin1 BASE TABLE InnoDB
  5499. NULL test4 latin1 BASE TABLE InnoDB
  5500. NULL test4 latin1 BASE TABLE InnoDB
  5501. NULL test4 latin1 BASE TABLE InnoDB
  5502. NULL test4 latin1 BASE TABLE InnoDB
  5503. NULL test4 latin1 BASE TABLE InnoDB
  5504. NULL test4 latin1 BASE TABLE InnoDB
  5505. NULL test4 latin1 BASE TABLE InnoDB
  5506. NULL test4 latin1 BASE TABLE InnoDB
  5507. NULL test4 latin1 BASE TABLE InnoDB
  5508. NULL test4 latin1 BASE TABLE InnoDB
  5509. NULL test4 latin1 BASE TABLE InnoDB
  5510. NULL test4 latin1 BASE TABLE MyISAM
  5511. NULL test4 latin1 BASE TABLE MyISAM
  5512. NULL test4 latin1 BASE TABLE MyISAM
  5513. NULL test4 latin1 BASE TABLE MyISAM
  5514. NULL test4 latin1 BASE TABLE MyISAM
  5515. NULL test4 latin1 BASE TABLE MyISAM
  5516. NULL test4 latin1 BASE TABLE MyISAM
  5517. NULL test4 latin1 BASE TABLE MyISAM
  5518. NULL test4 latin1 BASE TABLE MyISAM
  5519. NULL test4 latin1 BASE TABLE MyISAM
  5520. NULL test4 latin1 BASE TABLE MyISAM
  5521. NULL test4 latin1 BASE TABLE MyISAM
  5522. NULL test4 latin1 BASE TABLE MyISAM
  5523. NULL test4 latin1 BASE TABLE MyISAM
  5524. NULL test4 latin1 BASE TABLE MyISAM
  5525. NULL test4 latin1 BASE TABLE MyISAM
  5526. NULL test4 latin1 BASE TABLE MyISAM
  5527. NULL test4 latin1 BASE TABLE MyISAM
  5528. NULL test4 latin1 BASE TABLE MyISAM
  5529. NULL test4 latin1 BASE TABLE MyISAM
  5530. NULL test4 latin1 BASE TABLE MyISAM
  5531. NULL test4 latin1 SYSTEM VIEW MEMORY
  5532. NULL test4 latin1 SYSTEM VIEW MEMORY
  5533. NULL test4 latin1 SYSTEM VIEW MEMORY
  5534. NULL test4 latin1 SYSTEM VIEW MEMORY
  5535. NULL test4 latin1 SYSTEM VIEW MEMORY
  5536. NULL test4 latin1 SYSTEM VIEW MEMORY
  5537. NULL test4 latin1 SYSTEM VIEW MEMORY
  5538. NULL test4 latin1 SYSTEM VIEW MEMORY
  5539. NULL test4 latin1 SYSTEM VIEW MEMORY
  5540. NULL test4 latin1 SYSTEM VIEW MEMORY
  5541. NULL test4 latin1 SYSTEM VIEW MEMORY
  5542. NULL test4 latin1 SYSTEM VIEW MEMORY
  5543. NULL test4 latin1 SYSTEM VIEW MEMORY
  5544. NULL test4 latin1 SYSTEM VIEW MEMORY
  5545. NULL test4 latin1 SYSTEM VIEW MEMORY
  5546. NULL test4 latin1 SYSTEM VIEW MEMORY
  5547. NULL test4 latin1 SYSTEM VIEW MEMORY
  5548. NULL test4 latin1 SYSTEM VIEW MEMORY
  5549. NULL test4 latin1 SYSTEM VIEW MEMORY
  5550. NULL test4 latin1 SYSTEM VIEW MEMORY
  5551. NULL test4 latin1 SYSTEM VIEW MyISAM
  5552. NULL test4 latin1 SYSTEM VIEW MyISAM
  5553. NULL test4 latin1 SYSTEM VIEW MyISAM
  5554. NULL test4 latin1 SYSTEM VIEW MyISAM
  5555. NULL test4 latin1 SYSTEM VIEW MyISAM
  5556. NULL test4 latin1 SYSTEM VIEW MyISAM
  5557. NULL test4 latin1 SYSTEM VIEW MyISAM
  5558. NULL test4 latin1 SYSTEM VIEW MyISAM
  5559. NULL test4 latin1 VIEW NULL
  5560. NULL test4 latin1 VIEW NULL
  5561. NULL test4 latin1 VIEW NULL
  5562. select * from information_schema.columns limit 0, 5;
  5563. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  5564. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  5565. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  5566. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  5567. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  5568. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  5569. select * from information_schema.character_sets limit 0, 5;
  5570. CHARACTER_SET_NAME DEFAULT_COLLATE_NAME DESCRIPTION MAXLEN
  5571. big5 big5_chinese_ci Big5 Traditional Chinese 2
  5572. dec8 dec8_swedish_ci DEC West European 1
  5573. cp850 cp850_general_ci DOS West European 1
  5574. hp8 hp8_english_ci HP West European 1
  5575. koi8r koi8r_general_ci KOI8-R Relcom Russian 1
  5576. select * from information_schema.collations limit 0, 5;
  5577. COLLATION_NAME CHARACTER_SET_NAME ID IS_DEFAULT IS_COMPILED SORTLEN
  5578. big5_chinese_ci big5 1 Yes Yes 1
  5579. big5_bin big5 84 Yes 1
  5580. dec8_swedish_ci dec8 3 Yes 0
  5581. dec8_bin dec8 69 0
  5582. cp850_general_ci cp850 4 Yes 0
  5583. select * from information_schema.collation_character_set_applicability limit 0, 5;
  5584. COLLATION_NAME CHARACTER_SET_NAME
  5585. big5_chinese_ci big5
  5586. big5_bin big5
  5587. dec8_swedish_ci dec8
  5588. dec8_bin dec8
  5589. cp850_general_ci cp850
  5590. select * from information_schema.routines limit 0, 5;
  5591. SPECIFIC_NAME ROUTINE_CATALOG ROUTINE_SCHEMA ROUTINE_NAME ROUTINE_TYPE DTD_IDENTIFIER ROUTINE_BODY ROUTINE_DEFINITION EXTERNAL_NAME EXTERNAL_LANGUAGE PARAMETER_STYLE IS_DETERMINISTIC SQL_DATA_ACCESS SQL_PATH SECURITY_TYPE CREATED LAST_ALTERED SQL_MODE ROUTINE_COMMENT DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  5592. sp_1 NULL db_datadict sp_1 PROCEDURE NULL SQL BEGIN
  5593. SELECT * FROM db_datadict.v1;
  5594. END NULL NULL SQL NO CONTAINS SQL NULL DEFINER YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss root@localhost latin1 latin1_swedish_ci latin1_swedish_ci
  5595. select * from information_schema.statistics limit 0, 5;
  5596. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
  5597. NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  5598. NULL mysql columns_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  5599. NULL mysql columns_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  5600. NULL mysql columns_priv 0 mysql PRIMARY 4 Table_name A NULL NULL NULL BTREE
  5601. NULL mysql columns_priv 0 mysql PRIMARY 5 Column_name A 0 NULL NULL BTREE
  5602. select * from information_schema.views limit 0, 5;
  5603. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE CHARACTER_SET_CLIENT COLLATION_CONNECTION
  5604. NULL db_datadict v1 SELECT * FROM information_schema.tables NONE NO root@localhost DEFINER latin1 latin1_swedish_ci
  5605. NULL db_datadict vu SELECT DISTINCT u,
  5606. SUBSTRING( u, LENGTH(SUBSTRING_INDEX(u,'@',1))+3 )
  5607. AS server,
  5608. SUBSTRING( u, LENGTH(SUBSTRING_INDEX(u,'@',1))+3,
  5609. LENGTH( SUBSTRING( u,
  5610. LENGTH( SUBSTRING_INDEX(u, '@',1)) +3 )) - 1 )
  5611. AS Server_Clean
  5612. FROM db_datadict.vu1 NONE NO root@localhost DEFINER latin1 latin1_swedish_ci
  5613. NULL db_datadict vu1 SELECT grantee AS u
  5614. FROM information_schema.user_privileges NONE NO root@localhost DEFINER latin1 latin1_swedish_ci
  5615. select * from information_schema.user_privileges limit 0, 5;
  5616. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  5617. 'root'@'localhost' NULL SELECT YES
  5618. 'root'@'localhost' NULL INSERT YES
  5619. 'root'@'localhost' NULL UPDATE YES
  5620. 'root'@'localhost' NULL DELETE YES
  5621. 'root'@'localhost' NULL CREATE YES
  5622. select * from information_schema.schema_privileges limit 0, 5;
  5623. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  5624. ''@'%' NULL test SELECT NO
  5625. ''@'%' NULL test INSERT NO
  5626. ''@'%' NULL test UPDATE NO
  5627. ''@'%' NULL test DELETE NO
  5628. ''@'%' NULL test CREATE NO
  5629. select * from information_schema.table_privileges limit 0, 5;
  5630. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  5631. select * from information_schema.column_privileges limit 0, 5;
  5632. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  5633. select * from information_schema.table_constraints limit 0, 5;
  5634. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  5635. NULL mysql PRIMARY mysql columns_priv PRIMARY KEY
  5636. NULL mysql PRIMARY mysql db PRIMARY KEY
  5637. NULL mysql PRIMARY mysql event PRIMARY KEY
  5638. NULL mysql PRIMARY mysql func PRIMARY KEY
  5639. NULL mysql PRIMARY mysql help_category PRIMARY KEY
  5640. select * from information_schema.key_column_usage limit 0, 5;
  5641. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION POSITION_IN_UNIQUE_CONSTRAINT REFERENCED_TABLE_SCHEMA REFERENCED_TABLE_NAME REFERENCED_COLUMN_NAME
  5642. NULL mysql PRIMARY NULL mysql columns_priv Host 1 NULL NULL NULL NULL
  5643. NULL mysql PRIMARY NULL mysql columns_priv Db 2 NULL NULL NULL NULL
  5644. NULL mysql PRIMARY NULL mysql columns_priv User 3 NULL NULL NULL NULL
  5645. NULL mysql PRIMARY NULL mysql columns_priv Table_name 4 NULL NULL NULL NULL
  5646. NULL mysql PRIMARY NULL mysql columns_priv Column_name 5 NULL NULL NULL NULL
  5647. select count(*) as max_recs from information_schema.key_column_usage limit 0, 5;
  5648. max_recs
  5649. 45
  5650. root: check with db name
  5651. ------------------------
  5652. SELECT COUNT(*) FROM information_schema. schemata ;
  5653. COUNT(*)
  5654. 6
  5655. SELECT COUNT(*) FROM information_schema. tables ;
  5656. COUNT(*)
  5657. 69
  5658. SELECT COUNT(*) FROM information_schema. columns ;
  5659. COUNT(*)
  5660. 879
  5661. SELECT COUNT(*) FROM information_schema. character_sets ;
  5662. COUNT(*)
  5663. 36
  5664. SELECT COUNT(*) FROM information_schema. collations where collation_name <> 'utf8_general_cs' ;
  5665. COUNT(*)
  5666. 127
  5667. SELECT COUNT(*) FROM information_schema. collation_character_set_applicability where collation_name <> 'utf8_general_cs' ;
  5668. COUNT(*)
  5669. 128
  5670. SELECT COUNT(*) FROM information_schema. routines ;
  5671. COUNT(*)
  5672. 1
  5673. SELECT COUNT(*) FROM information_schema. statistics ;
  5674. COUNT(*)
  5675. 48
  5676. SELECT COUNT(*) FROM information_schema. views ;
  5677. COUNT(*)
  5678. 3
  5679. SELECT COUNT(*) FROM information_schema. user_privileges ;
  5680. COUNT(*)
  5681. 81
  5682. SELECT COUNT(*) FROM information_schema. schema_privileges ;
  5683. COUNT(*)
  5684. 32
  5685. SELECT COUNT(*) FROM information_schema. table_privileges ;
  5686. COUNT(*)
  5687. 0
  5688. SELECT COUNT(*) FROM information_schema. column_privileges ;
  5689. COUNT(*)
  5690. 0
  5691. SELECT COUNT(*) FROM information_schema. table_constraints ;
  5692. COUNT(*)
  5693. 24
  5694. SELECT COUNT(*) FROM information_schema. key_column_usage ;
  5695. COUNT(*)
  5696. 45
  5697. SELECT COUNT(*) FROM information_schema. triggers ;
  5698. COUNT(*)
  5699. 0
  5700. SELECT COUNT(*) FROM information_schema. parameters ;
  5701. ERROR 42S02: Unknown table 'parameters' in information_schema
  5702. SELECT COUNT(*) FROM information_schema. referential_constraints ;
  5703. COUNT(*)
  5704. 0
  5705. USE db_datadict;
  5706. DROP VIEW v1, vu1, vu;
  5707. DROP PROCEDURE db_datadict.sp_1;
  5708. USE information_schema;
  5709. Testcase 3.2.1.2:
  5710. --------------------------------------------------------------------------------
  5711. select catalog_name, schema_name, default_character_set_name
  5712. from schemata where schema_name like '%s%';
  5713. catalog_name schema_name default_character_set_name
  5714. NULL information_schema utf8
  5715. NULL mysql latin1
  5716. NULL test latin1
  5717. NULL test1 latin1
  5718. NULL test4 latin1
  5719. select count(*) as tot_tabs from tables;
  5720. tot_tabs
  5721. 66
  5722. select count(*) as the_cols from columns;
  5723. the_cols
  5724. 854
  5725. select max(maxlen) as the_max from character_sets;
  5726. the_max
  5727. 3
  5728. select * from collations order by id asc limit 0, 5;
  5729. COLLATION_NAME CHARACTER_SET_NAME ID IS_DEFAULT IS_COMPILED SORTLEN
  5730. big5_chinese_ci big5 1 Yes Yes 1
  5731. latin2_czech_cs latin2 2 Yes 4
  5732. dec8_swedish_ci dec8 3 Yes 0
  5733. cp850_general_ci cp850 4 Yes 0
  5734. latin1_german1_ci latin1 5 Yes 1
  5735. select * from collation_character_set_applicability
  5736. order by character_set_name desc, collation_name limit 0, 5;
  5737. COLLATION_NAME CHARACTER_SET_NAME
  5738. utf8_bin utf8
  5739. utf8_czech_ci utf8
  5740. utf8_danish_ci utf8
  5741. utf8_esperanto_ci utf8
  5742. utf8_estonian_ci utf8
  5743. select routine_definition from routines;
  5744. routine_definition
  5745. select * from statistics where table_name not like 'help_%'
  5746. group by index_name asc limit 0, 5;
  5747. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
  5748. NULL mysql procs_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
  5749. NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  5750. NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
  5751. select concat(table_schema, ', ', table_name, ', ', view_definition) view_info
  5752. from views;
  5753. view_info
  5754. select concat(table_schema, ', ', table_name) "Table_info"
  5755. from tables ORDER BY 1;
  5756. Table_info
  5757. information_schema, CHARACTER_SETS
  5758. information_schema, COLLATIONS
  5759. information_schema, COLLATION_CHARACTER_SET_APPLICABILITY
  5760. information_schema, COLUMNS
  5761. information_schema, COLUMN_PRIVILEGES
  5762. information_schema, ENGINES
  5763. information_schema, EVENTS
  5764. information_schema, FILES
  5765. information_schema, GLOBAL_STATUS
  5766. information_schema, GLOBAL_VARIABLES
  5767. information_schema, KEY_COLUMN_USAGE
  5768. information_schema, PARTITIONS
  5769. information_schema, PLUGINS
  5770. information_schema, PROCESSLIST
  5771. information_schema, PROFILING
  5772. information_schema, REFERENTIAL_CONSTRAINTS
  5773. information_schema, ROUTINES
  5774. information_schema, SCHEMATA
  5775. information_schema, SCHEMA_PRIVILEGES
  5776. information_schema, SESSION_STATUS
  5777. information_schema, SESSION_VARIABLES
  5778. information_schema, STATISTICS
  5779. information_schema, TABLES
  5780. information_schema, TABLE_CONSTRAINTS
  5781. information_schema, TABLE_PRIVILEGES
  5782. information_schema, TRIGGERS
  5783. information_schema, USER_PRIVILEGES
  5784. information_schema, VIEWS
  5785. mysql, columns_priv
  5786. mysql, db
  5787. mysql, event
  5788. mysql, func
  5789. mysql, general_log
  5790. mysql, help_category
  5791. mysql, help_keyword
  5792. mysql, help_relation
  5793. mysql, help_topic
  5794. mysql, host
  5795. mysql, ndb_binlog_index
  5796. mysql, plugin
  5797. mysql, proc
  5798. mysql, procs_priv
  5799. mysql, servers
  5800. mysql, slow_log
  5801. mysql, tables_priv
  5802. mysql, time_zone
  5803. mysql, time_zone_leap_second
  5804. mysql, time_zone_name
  5805. mysql, time_zone_transition
  5806. mysql, time_zone_transition_type
  5807. mysql, user
  5808. test, t1
  5809. test, t10
  5810. test, t11
  5811. test, t2
  5812. test, t3
  5813. test, t4
  5814. test, t7
  5815. test, t8
  5816. test, t9
  5817. test, tb1
  5818. test, tb2
  5819. test, tb3
  5820. test, tb4
  5821. test1, tb2
  5822. test4, t6
  5823. select distinct grantee from user_privileges order by grantee, privilege_type;
  5824. grantee
  5825. 'root'@'127.0.0.1'
  5826. 'root'@'<SERVER_NAME>'
  5827. 'root'@'localhost'
  5828. select * from schema_privileges where table_catalog is null limit 0, 5;
  5829. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  5830. ''@'%' NULL test SELECT NO
  5831. ''@'%' NULL test INSERT NO
  5832. ''@'%' NULL test UPDATE NO
  5833. ''@'%' NULL test DELETE NO
  5834. ''@'%' NULL test CREATE NO
  5835. select * from table_privileges where grantee like '%r%' limit 0, 5;
  5836. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  5837. select * from column_privileges where table_catalog is not null limit 0, 5;
  5838. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  5839. select HIGH_PRIORITY * from table_constraints
  5840. group by constraint_name desc limit 0, 5;
  5841. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  5842. NULL mysql PRIMARY mysql columns_priv PRIMARY KEY
  5843. NULL mysql name mysql help_category UNIQUE
  5844. select sum(ordinal_position) from key_column_usage;
  5845. sum(ordinal_position)
  5846. 83
  5847. select * from schemata limit 0,5;
  5848. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  5849. NULL information_schema utf8 utf8_general_ci NULL
  5850. NULL db_datadict latin1 latin1_swedish_ci NULL
  5851. NULL mysql latin1 latin1_swedish_ci NULL
  5852. NULL test latin1 latin1_swedish_ci NULL
  5853. NULL test1 latin1 latin1_swedish_ci NULL
  5854. select * from schemata limit 0,5;
  5855. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  5856. NULL information_schema utf8 utf8_general_ci NULL
  5857. NULL db_datadict latin1 latin1_swedish_ci NULL
  5858. NULL mysql latin1 latin1_swedish_ci NULL
  5859. NULL test latin1 latin1_swedish_ci NULL
  5860. NULL test1 latin1 latin1_swedish_ci NULL
  5861. select distinct grantee from user_privileges;
  5862. grantee
  5863. 'root'@'127.0.0.1'
  5864. 'root'@'<SERVER_NAME>'
  5865. 'root'@'localhost'
  5866. select all grantee from user_privileges order by grantee, privilege_type;
  5867. grantee
  5868. 'root'@'127.0.0.1'
  5869. 'root'@'127.0.0.1'
  5870. 'root'@'127.0.0.1'
  5871. 'root'@'127.0.0.1'
  5872. 'root'@'127.0.0.1'
  5873. 'root'@'127.0.0.1'
  5874. 'root'@'127.0.0.1'
  5875. 'root'@'127.0.0.1'
  5876. 'root'@'127.0.0.1'
  5877. 'root'@'127.0.0.1'
  5878. 'root'@'127.0.0.1'
  5879. 'root'@'127.0.0.1'
  5880. 'root'@'127.0.0.1'
  5881. 'root'@'127.0.0.1'
  5882. 'root'@'127.0.0.1'
  5883. 'root'@'127.0.0.1'
  5884. 'root'@'127.0.0.1'
  5885. 'root'@'127.0.0.1'
  5886. 'root'@'127.0.0.1'
  5887. 'root'@'127.0.0.1'
  5888. 'root'@'127.0.0.1'
  5889. 'root'@'127.0.0.1'
  5890. 'root'@'127.0.0.1'
  5891. 'root'@'127.0.0.1'
  5892. 'root'@'127.0.0.1'
  5893. 'root'@'127.0.0.1'
  5894. 'root'@'127.0.0.1'
  5895. 'root'@'<SERVER_NAME>'
  5896. 'root'@'<SERVER_NAME>'
  5897. 'root'@'<SERVER_NAME>'
  5898. 'root'@'<SERVER_NAME>'
  5899. 'root'@'<SERVER_NAME>'
  5900. 'root'@'<SERVER_NAME>'
  5901. 'root'@'<SERVER_NAME>'
  5902. 'root'@'<SERVER_NAME>'
  5903. 'root'@'<SERVER_NAME>'
  5904. 'root'@'<SERVER_NAME>'
  5905. 'root'@'<SERVER_NAME>'
  5906. 'root'@'<SERVER_NAME>'
  5907. 'root'@'<SERVER_NAME>'
  5908. 'root'@'<SERVER_NAME>'
  5909. 'root'@'<SERVER_NAME>'
  5910. 'root'@'<SERVER_NAME>'
  5911. 'root'@'<SERVER_NAME>'
  5912. 'root'@'<SERVER_NAME>'
  5913. 'root'@'<SERVER_NAME>'
  5914. 'root'@'<SERVER_NAME>'
  5915. 'root'@'<SERVER_NAME>'
  5916. 'root'@'<SERVER_NAME>'
  5917. 'root'@'<SERVER_NAME>'
  5918. 'root'@'<SERVER_NAME>'
  5919. 'root'@'<SERVER_NAME>'
  5920. 'root'@'<SERVER_NAME>'
  5921. 'root'@'<SERVER_NAME>'
  5922. 'root'@'localhost'
  5923. 'root'@'localhost'
  5924. 'root'@'localhost'
  5925. 'root'@'localhost'
  5926. 'root'@'localhost'
  5927. 'root'@'localhost'
  5928. 'root'@'localhost'
  5929. 'root'@'localhost'
  5930. 'root'@'localhost'
  5931. 'root'@'localhost'
  5932. 'root'@'localhost'
  5933. 'root'@'localhost'
  5934. 'root'@'localhost'
  5935. 'root'@'localhost'
  5936. 'root'@'localhost'
  5937. 'root'@'localhost'
  5938. 'root'@'localhost'
  5939. 'root'@'localhost'
  5940. 'root'@'localhost'
  5941. 'root'@'localhost'
  5942. 'root'@'localhost'
  5943. 'root'@'localhost'
  5944. 'root'@'localhost'
  5945. 'root'@'localhost'
  5946. 'root'@'localhost'
  5947. 'root'@'localhost'
  5948. 'root'@'localhost'
  5949. select id , character_set_name from collations order by id asc limit 10;
  5950. id character_set_name
  5951. 1 big5
  5952. 2 latin2
  5953. 3 dec8
  5954. 4 cp850
  5955. 5 latin1
  5956. 6 hp8
  5957. 7 koi8r
  5958. 8 latin1
  5959. 9 latin2
  5960. 10 swe7
  5961. select table_catalog from columns
  5962. union all
  5963. select table_catalog from tables limit 0,5;
  5964. table_catalog
  5965. NULL
  5966. NULL
  5967. NULL
  5968. NULL
  5969. NULL
  5970. select table_catalog from columns
  5971. union
  5972. select table_catalog from tables limit 0,5;
  5973. table_catalog
  5974. NULL
  5975. select all schema_name from information_schema.schemata;
  5976. schema_name
  5977. information_schema
  5978. db_datadict
  5979. mysql
  5980. test
  5981. test1
  5982. test4
  5983. SELECT *
  5984. INTO OUTFILE '../tmp/out.innodb.file'
  5985. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  5986. LINES TERMINATED BY '\n'
  5987. FROM schemata LIMIT 0, 5;
  5988. USE test;
  5989. SELECT *
  5990. INTO OUTFILE '../tmp/out.innodb.db.file'
  5991. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  5992. LINES TERMINATED BY '\n'
  5993. FROM information_schema.schemata
  5994. WHERE schema_name LIKE 'db_%';
  5995. CREATE USER user_3212@localhost;
  5996. GRANT ALL ON db_datadict.* TO user_3212@localhost;
  5997. GRANT FILE ON *.* TO user_3212@localhost;
  5998. connect(localhost,user_3212,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  5999. user_3212@localhost db_datadict
  6000. SELECT *
  6001. INTO OUTFILE '../tmp/out.innodb.user.file'
  6002. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  6003. LINES TERMINATED BY '\n'
  6004. FROM schemata LIMIT 0, 5;
  6005. ERROR 42S02: Table 'db_datadict.schemata' doesn't exist
  6006. SELECT *
  6007. FROM schemata LIMIT 0, 5;
  6008. ERROR 42S02: Table 'db_datadict.schemata' doesn't exist
  6009. SELECT *
  6010. INTO OUTFILE '../tmp/out.innodb.user.db.file'
  6011. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  6012. LINES TERMINATED BY '\n'
  6013. FROM information_schema.schemata
  6014. WHERE schema_name LIKE 'db_%';
  6015. SELECT *
  6016. FROM information_schema.schemata
  6017. WHERE schema_name LIKE 'db_%';
  6018. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  6019. NULL db_datadict latin1 latin1_swedish_ci NULL
  6020. USE information_schema;
  6021. SELECT *
  6022. INTO OUTFILE '../tmp/out.innodb.user_2.file'
  6023. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  6024. LINES TERMINATED BY '\n'
  6025. FROM schemata LIMIT 0, 5;
  6026. SELECT *
  6027. FROM schemata LIMIT 0, 5;
  6028. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  6029. NULL information_schema utf8 utf8_general_ci NULL
  6030. NULL db_datadict latin1 latin1_swedish_ci NULL
  6031. NULL test latin1 latin1_swedish_ci NULL
  6032. SELECT *
  6033. INTO OUTFILE '../tmp/out.innodb.user_2.db.file'
  6034. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  6035. LINES TERMINATED BY '\n'
  6036. FROM information_schema.schemata
  6037. WHERE schema_name LIKE 'db_%';
  6038. SELECT *
  6039. FROM information_schema.schemata
  6040. WHERE schema_name LIKE 'db_%';
  6041. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  6042. NULL db_datadict latin1 latin1_swedish_ci NULL
  6043. USE information_schema;
  6044. root@localhost information_schema
  6045. use db_datadict;
  6046. select table_catalog "1", table_schema "2", table_name "3", column_name "4"
  6047. from information_schema.columns
  6048. union
  6049. select table_catalog, table_schema, table_name,
  6050. concat( "*** type = ", table_type )
  6051. from information_schema.tables
  6052. order by 3, 4 desc, 1, 2 limit 30;
  6053. 1 2 3 4
  6054. NULL information_schema CHARACTER_SETS MAXLEN
  6055. NULL information_schema CHARACTER_SETS DESCRIPTION
  6056. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME
  6057. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME
  6058. NULL information_schema CHARACTER_SETS *** type = SYSTEM VIEW
  6059. NULL information_schema COLLATIONS SORTLEN
  6060. NULL information_schema COLLATIONS IS_DEFAULT
  6061. NULL information_schema COLLATIONS IS_COMPILED
  6062. NULL information_schema COLLATIONS ID
  6063. NULL information_schema COLLATIONS COLLATION_NAME
  6064. NULL information_schema COLLATIONS CHARACTER_SET_NAME
  6065. NULL information_schema COLLATIONS *** type = SYSTEM VIEW
  6066. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME
  6067. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME
  6068. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY *** type = SYSTEM VIEW
  6069. NULL information_schema COLUMNS TABLE_SCHEMA
  6070. NULL information_schema COLUMNS TABLE_NAME
  6071. NULL information_schema COLUMNS TABLE_CATALOG
  6072. NULL information_schema COLUMNS PRIVILEGES
  6073. NULL information_schema COLUMNS ORDINAL_POSITION
  6074. NULL information_schema COLUMNS NUMERIC_SCALE
  6075. NULL information_schema COLUMNS NUMERIC_PRECISION
  6076. NULL information_schema COLUMNS IS_NULLABLE
  6077. NULL information_schema COLUMNS EXTRA
  6078. NULL information_schema COLUMNS DATA_TYPE
  6079. NULL information_schema COLUMNS COLUMN_TYPE
  6080. NULL information_schema COLUMNS COLUMN_NAME
  6081. NULL information_schema COLUMNS COLUMN_KEY
  6082. NULL information_schema COLUMNS COLUMN_DEFAULT
  6083. NULL information_schema COLUMNS COLUMN_COMMENT
  6084. use information_schema;
  6085. select table_catalog "1", table_schema "2", table_name "3", column_name "4"
  6086. from columns
  6087. union
  6088. select table_catalog, table_schema, table_name,
  6089. concat( "*** type = ", table_type )
  6090. from tables
  6091. order by 3, 4 desc, 1, 2 limit 30;
  6092. 1 2 3 4
  6093. NULL information_schema CHARACTER_SETS MAXLEN
  6094. NULL information_schema CHARACTER_SETS DESCRIPTION
  6095. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME
  6096. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME
  6097. NULL information_schema CHARACTER_SETS *** type = SYSTEM VIEW
  6098. NULL information_schema COLLATIONS SORTLEN
  6099. NULL information_schema COLLATIONS IS_DEFAULT
  6100. NULL information_schema COLLATIONS IS_COMPILED
  6101. NULL information_schema COLLATIONS ID
  6102. NULL information_schema COLLATIONS COLLATION_NAME
  6103. NULL information_schema COLLATIONS CHARACTER_SET_NAME
  6104. NULL information_schema COLLATIONS *** type = SYSTEM VIEW
  6105. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME
  6106. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME
  6107. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY *** type = SYSTEM VIEW
  6108. NULL information_schema COLUMNS TABLE_SCHEMA
  6109. NULL information_schema COLUMNS TABLE_NAME
  6110. NULL information_schema COLUMNS TABLE_CATALOG
  6111. NULL information_schema COLUMNS PRIVILEGES
  6112. NULL information_schema COLUMNS ORDINAL_POSITION
  6113. NULL information_schema COLUMNS NUMERIC_SCALE
  6114. NULL information_schema COLUMNS NUMERIC_PRECISION
  6115. NULL information_schema COLUMNS IS_NULLABLE
  6116. NULL information_schema COLUMNS EXTRA
  6117. NULL information_schema COLUMNS DATA_TYPE
  6118. NULL information_schema COLUMNS COLUMN_TYPE
  6119. NULL information_schema COLUMNS COLUMN_NAME
  6120. NULL information_schema COLUMNS COLUMN_KEY
  6121. NULL information_schema COLUMNS COLUMN_DEFAULT
  6122. NULL information_schema COLUMNS COLUMN_COMMENT
  6123. DROP USER user_3212@localhost;
  6124. Testcase 3.2.1.3:
  6125. --------------------------------------------------------------------------------
  6126. insert into schemata (catalog_name, schema_name, default_character_set_name, sql_path)
  6127. values ('null', 'db1', 'latin1', 'null');
  6128. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6129. insert into tables (table_schema, table_name)values('db_datadict', 't1');
  6130. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6131. insert into columns (table_name, column_name)values('t3', 'f2');
  6132. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6133. insert into character_sets (character_set_name, default_collate_name, description, maxlen)
  6134. values('cp1251', 'cp1251_general_ci', 'windows cyrillic', 1);
  6135. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6136. insert into collations ( collation_name, character_set_name, id, is_default, is_compiled, sortlen)
  6137. values ('cp1251_bin', 'cp1251', 50, '', '', 0);
  6138. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6139. insert into collation_character_set_applicability (collation_name, character_set_name)
  6140. values (' big5_chinese_ci', 'big6');
  6141. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6142. insert into routines(routine_name, routine_type ) values ('p2', 'procedure');
  6143. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6144. insert into statistics(table_schema, table_name, index_name)
  6145. values ('mysql', 'db', 'primary');
  6146. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6147. insert into views(table_schema, table_name) values ('db2', 'v2');
  6148. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6149. insert into user_privileges (privilege_type, is_grantable) values ('select', 'yes');
  6150. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6151. insert into schema_privileges (table_schema, privilege_type) values('db2', 'insert');
  6152. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6153. insert into table_privileges (able_schema, table_name, privilege_type)
  6154. values('db2', 'v2', 'insert');
  6155. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6156. insert into column_privileges (table_name, column_name, privilege_type)
  6157. values ('t3', 'f3', 'insert');
  6158. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6159. insert into table_constraints ( constraint_schema, constraint_name, table_schema)
  6160. values ('primary', 'mysql', 'user');
  6161. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6162. insert into key_column_usage (constraint_schema, constraint_name, table_name)
  6163. values ('mysql', 'primary', 'db');
  6164. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6165. drop procedure if exists db_datadict.sp_4_1_3;
  6166. create procedure db_datadict.sp_4_1_3()
  6167. begin
  6168. insert into information_schema.schema_privileges (table_schema,privilege_type)
  6169. values('db2','insert');
  6170. end//
  6171. SELECT table_schema, privilege_type FROM information_schema.schema_privileges
  6172. WHERE table_schema LIKE 'db%';
  6173. table_schema privilege_type
  6174. call db_datadict.sp_4_1_3();
  6175. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6176. SELECT table_schema, privilege_type FROM information_schema.schema_privileges
  6177. WHERE table_schema LIKE 'db%';
  6178. table_schema privilege_type
  6179. drop procedure db_datadict.sp_4_1_3;
  6180. CREATE USER user_4_1_3@localhost;
  6181. connect(localhost,user_4_1_3,,test,MYSQL_PORT,MYSQL_SOCK);
  6182. user_4_1_3@localhost test
  6183. use information_schema;
  6184. insert into table_constraints ( constraint_schema, constraint_name, table_schema)
  6185. values ('primary', 'mysql', 'user');
  6186. ERROR 42000: Access denied for user 'user_4_1_3'@'localhost' to database 'information_schema'
  6187. root@localhost information_schema
  6188. Testcase 3.2.1.4:
  6189. --------------------------------------------------------------------------------
  6190. use information_schema;
  6191. root@localhost information_schema
  6192. update schemata set schema_name = 'db5' where default_character_set_name = 'latin1';
  6193. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6194. update tables set table_schema = 'db_datadict1' where table_name = 't1';
  6195. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6196. update columns set table_name = 't4' where column_name = 'f2';
  6197. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6198. update character_sets set character_set_name = 'cp1252' where maxlen = 1;
  6199. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6200. update collations set collation_name = 'cp1253_bin'
  6201. where character_set_name = 'cp1251';
  6202. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6203. update collation_character_set_applicability set collation_name = 'big6_chinese_ci'
  6204. where character_set_name = 'big6';
  6205. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6206. update routines set routine_name = p2 where routine_body = 'sql';
  6207. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6208. update statistics set table_schema = 'mysql1' where table_name = 'db';
  6209. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6210. update views set table_schema = 'db3' where table_name = 'v1';
  6211. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6212. update user_privileges set privilege_type = 'insert' where is_grantable = 'yes';
  6213. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6214. update schema_privileges set table_schema = 'db2' where privilege_type = 'select';
  6215. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6216. update table_privileges set table_name = 'v3' where privilege_type = 'select';
  6217. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6218. update column_privileges set table_name = 't4' where column_name = 'f3';
  6219. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6220. update table_constraints set constraint_schema = 'primary'
  6221. where table_schema = 'proc';
  6222. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6223. update key_column_usage set table_name = 'db1' where constraint_name = 'primary';
  6224. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6225. drop procedure if exists db_datadict.sp_4_1_4;
  6226. create procedure db_datadict.sp_4_1_4()
  6227. begin
  6228. update information_schema.routines set routine_name = 'p2'
  6229. where routine_name = 'sp_4_1_4';
  6230. end//
  6231. select * from information_schema.routines;
  6232. SPECIFIC_NAME ROUTINE_CATALOG ROUTINE_SCHEMA ROUTINE_NAME ROUTINE_TYPE DTD_IDENTIFIER ROUTINE_BODY ROUTINE_DEFINITION EXTERNAL_NAME EXTERNAL_LANGUAGE PARAMETER_STYLE IS_DETERMINISTIC SQL_DATA_ACCESS SQL_PATH SECURITY_TYPE CREATED LAST_ALTERED SQL_MODE ROUTINE_COMMENT DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  6233. sp_4_1_4 NULL db_datadict sp_4_1_4 PROCEDURE NULL SQL begin
  6234. update information_schema.routines set routine_name = 'p2'
  6235. where routine_name = 'sp_4_1_4';
  6236. end NULL NULL SQL NO CONTAINS SQL NULL DEFINER YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss root@localhost latin1 latin1_swedish_ci latin1_swedish_ci
  6237. call db_datadict.sp_4_1_4();
  6238. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6239. select * from information_schema.routines;
  6240. SPECIFIC_NAME ROUTINE_CATALOG ROUTINE_SCHEMA ROUTINE_NAME ROUTINE_TYPE DTD_IDENTIFIER ROUTINE_BODY ROUTINE_DEFINITION EXTERNAL_NAME EXTERNAL_LANGUAGE PARAMETER_STYLE IS_DETERMINISTIC SQL_DATA_ACCESS SQL_PATH SECURITY_TYPE CREATED LAST_ALTERED SQL_MODE ROUTINE_COMMENT DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  6241. sp_4_1_4 NULL db_datadict sp_4_1_4 PROCEDURE NULL SQL begin
  6242. update information_schema.routines set routine_name = 'p2'
  6243. where routine_name = 'sp_4_1_4';
  6244. end NULL NULL SQL NO CONTAINS SQL NULL DEFINER YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss root@localhost latin1 latin1_swedish_ci latin1_swedish_ci
  6245. drop procedure db_datadict.sp_4_1_4;
  6246. use information_schema;
  6247. user_4_1_3@localhost information_schema
  6248. update user_privileges set privilege_type = 'insert' where is_grantable = 'yes';
  6249. ERROR 42000: Access denied for user 'user_4_1_3'@'localhost' to database 'information_schema'
  6250. root@localhost information_schema
  6251. Testcase 3.2.1.5:
  6252. --------------------------------------------------------------------------------
  6253. use information_schema;
  6254. root: DELETE FROM any table in IS
  6255. ---------------------------------
  6256. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6257. ---------------------------------------------------------------------------
  6258. DELETE FROM schemata ;
  6259. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6260. DELETE FROM tables ;
  6261. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6262. DELETE FROM columns ;
  6263. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6264. DELETE FROM character_sets ;
  6265. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6266. DELETE FROM collations ;
  6267. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6268. DELETE FROM collation_character_set_applicability ;
  6269. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6270. DELETE FROM routines ;
  6271. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6272. DELETE FROM statistics ;
  6273. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6274. DELETE FROM views ;
  6275. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6276. DELETE FROM user_privileges ;
  6277. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6278. DELETE FROM schema_privileges ;
  6279. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6280. DELETE FROM table_privileges ;
  6281. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6282. DELETE FROM column_privileges ;
  6283. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6284. DELETE FROM table_constraints ;
  6285. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6286. DELETE FROM key_column_usage ;
  6287. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6288. DELETE FROM triggers ;
  6289. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6290. delete from schemata where schema_name = 'mysql';
  6291. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6292. delete from tables where table_name = 'abc';
  6293. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6294. delete from columns;
  6295. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6296. delete from character_sets;
  6297. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6298. delete from collations;
  6299. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6300. delete from collation_character_set_applicability;
  6301. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6302. delete from routines;
  6303. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6304. delete from statistics;
  6305. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6306. delete from views;
  6307. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6308. delete from user_privileges;
  6309. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6310. delete from schema_privileges;
  6311. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6312. delete from table_privileges;
  6313. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6314. delete from column_privileges;
  6315. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6316. delete from table_constraints;
  6317. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6318. delete from key_column_usage;
  6319. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6320. drop procedure if exists db_datadict.sp_4_1_5;
  6321. create procedure db_datadict.sp_4_1_5()
  6322. begin
  6323. delete from information_schema.column_privileges;
  6324. end//
  6325. call db_datadict.sp_4_1_5();
  6326. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6327. drop procedure db_datadict.sp_4_1_5;
  6328. use information_schema;
  6329. user_4_1_3@localhost information_schema
  6330. delete from tables where table_name = 'abc';
  6331. ERROR 42000: Access denied for user 'user_4_1_3'@'localhost' to database 'information_schema'
  6332. root@localhost information_schema
  6333. DROP USER user_4_1_3@localhost;
  6334. Testcase 3.2.1.6:
  6335. --------------------------------------------------------------------------------
  6336. use information_schema;
  6337. root: create a table with a name of an IS table directly in IS
  6338. --------------------------------------------------------------
  6339. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6340. ---------------------------------------------------------------------------
  6341. CREATE TABLE schemata ( c1 INT );
  6342. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6343. CREATE TABLE tables ( c1 INT );
  6344. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6345. CREATE TABLE columns ( c1 INT );
  6346. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6347. CREATE TABLE character_sets ( c1 INT );
  6348. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6349. CREATE TABLE collations ( c1 INT );
  6350. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6351. CREATE TABLE collation_character_set_applicability ( c1 INT );
  6352. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6353. CREATE TABLE routines ( c1 INT );
  6354. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6355. CREATE TABLE statistics ( c1 INT );
  6356. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6357. CREATE TABLE views ( c1 INT );
  6358. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6359. CREATE TABLE user_privileges ( c1 INT );
  6360. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6361. CREATE TABLE schema_privileges ( c1 INT );
  6362. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6363. CREATE TABLE table_privileges ( c1 INT );
  6364. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6365. CREATE TABLE column_privileges ( c1 INT );
  6366. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6367. CREATE TABLE table_constraints ( c1 INT );
  6368. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6369. CREATE TABLE key_column_usage ( c1 INT );
  6370. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6371. CREATE TABLE triggers ( c1 INT );
  6372. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6373. create table t1 (f1 int, f2 int, f3 int);
  6374. ERROR 42S02: Unknown table 't1' in information_schema
  6375. use db_datadict;
  6376. root: create a table with a name of an IS table from other db
  6377. -------------------------------------------------------------
  6378. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6379. ---------------------------------------------------------------------------
  6380. CREATE TABLE information_schema. schemata ( c1 INT );
  6381. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6382. CREATE TABLE information_schema. tables ( c1 INT );
  6383. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6384. CREATE TABLE information_schema. columns ( c1 INT );
  6385. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6386. CREATE TABLE information_schema. character_sets ( c1 INT );
  6387. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6388. CREATE TABLE information_schema. collations ( c1 INT );
  6389. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6390. CREATE TABLE information_schema. collation_character_set_applicability ( c1 INT );
  6391. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6392. CREATE TABLE information_schema. routines ( c1 INT );
  6393. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6394. CREATE TABLE information_schema. statistics ( c1 INT );
  6395. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6396. CREATE TABLE information_schema. views ( c1 INT );
  6397. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6398. CREATE TABLE information_schema. user_privileges ( c1 INT );
  6399. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6400. CREATE TABLE information_schema. schema_privileges ( c1 INT );
  6401. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6402. CREATE TABLE information_schema. table_privileges ( c1 INT );
  6403. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6404. CREATE TABLE information_schema. column_privileges ( c1 INT );
  6405. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6406. CREATE TABLE information_schema. table_constraints ( c1 INT );
  6407. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6408. CREATE TABLE information_schema. key_column_usage ( c1 INT );
  6409. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6410. CREATE TABLE information_schema. triggers ( c1 INT );
  6411. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6412. create table information_schema.t1 (f1 int, f2 int, f3 int);
  6413. ERROR 42S02: Unknown table 't1' in information_schema
  6414. CREATE USER user_4_1_6@localhost;
  6415. grant all on *.* to user_4_1_6@localhost;
  6416. FLUSH PRIVILEGES;
  6417. SHOW GRANTS FOR user_4_1_6@localhost;
  6418. Grants for user_4_1_6@localhost
  6419. GRANT ALL PRIVILEGES ON *.* TO 'user_4_1_6'@'localhost'
  6420. connect(localhost,user_4_1_6,,information_schema,MYSQL_PORT,MYSQL_SOCK);
  6421. user_4_1_6@localhost information_schema
  6422. use information_schema;
  6423. user: create a table with a name of an IS table directly in IS
  6424. --------------------------------------------------------------
  6425. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6426. ---------------------------------------------------------------------------
  6427. CREATE TABLE schemata ( c1 INT );
  6428. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6429. CREATE TABLE tables ( c1 INT );
  6430. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6431. CREATE TABLE columns ( c1 INT );
  6432. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6433. CREATE TABLE character_sets ( c1 INT );
  6434. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6435. CREATE TABLE collations ( c1 INT );
  6436. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6437. CREATE TABLE collation_character_set_applicability ( c1 INT );
  6438. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6439. CREATE TABLE routines ( c1 INT );
  6440. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6441. CREATE TABLE statistics ( c1 INT );
  6442. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6443. CREATE TABLE views ( c1 INT );
  6444. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6445. CREATE TABLE user_privileges ( c1 INT );
  6446. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6447. CREATE TABLE schema_privileges ( c1 INT );
  6448. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6449. CREATE TABLE table_privileges ( c1 INT );
  6450. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6451. CREATE TABLE column_privileges ( c1 INT );
  6452. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6453. CREATE TABLE table_constraints ( c1 INT );
  6454. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6455. CREATE TABLE key_column_usage ( c1 INT );
  6456. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6457. CREATE TABLE triggers ( c1 INT );
  6458. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6459. create table t1 (f1 int, f2 int, f3 int);
  6460. ERROR 42S02: Unknown table 't1' in information_schema
  6461. use test;
  6462. user: create a table with a name of an IS table from other db
  6463. -------------------------------------------------------------
  6464. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6465. ---------------------------------------------------------------------------
  6466. CREATE TABLE information_schema. schemata ( c1 INT );
  6467. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6468. CREATE TABLE information_schema. tables ( c1 INT );
  6469. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6470. CREATE TABLE information_schema. columns ( c1 INT );
  6471. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6472. CREATE TABLE information_schema. character_sets ( c1 INT );
  6473. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6474. CREATE TABLE information_schema. collations ( c1 INT );
  6475. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6476. CREATE TABLE information_schema. collation_character_set_applicability ( c1 INT );
  6477. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6478. CREATE TABLE information_schema. routines ( c1 INT );
  6479. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6480. CREATE TABLE information_schema. statistics ( c1 INT );
  6481. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6482. CREATE TABLE information_schema. views ( c1 INT );
  6483. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6484. CREATE TABLE information_schema. user_privileges ( c1 INT );
  6485. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6486. CREATE TABLE information_schema. schema_privileges ( c1 INT );
  6487. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6488. CREATE TABLE information_schema. table_privileges ( c1 INT );
  6489. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6490. CREATE TABLE information_schema. column_privileges ( c1 INT );
  6491. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6492. CREATE TABLE information_schema. table_constraints ( c1 INT );
  6493. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6494. CREATE TABLE information_schema. key_column_usage ( c1 INT );
  6495. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6496. CREATE TABLE information_schema. triggers ( c1 INT );
  6497. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6498. create table information_schema.t1 (f1 int, f2 int, f3 int);
  6499. ERROR 42S02: Unknown table 't1' in information_schema
  6500. root@localhost db_datadict
  6501. DROP USER user_4_1_6@localhost;
  6502. Testcase 3.2.1.7:
  6503. --------------------------------------------------------------------------------
  6504. use information_schema;
  6505. root: create a view with a name of an IS table directly in IS
  6506. -------------------------------------------------------------
  6507. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6508. ---------------------------------------------------------------------------
  6509. CREATE VIEW schemata AS SELECT * FROM mysql.time_zone;
  6510. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6511. CREATE VIEW tables AS SELECT * FROM mysql.time_zone;
  6512. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6513. CREATE VIEW columns AS SELECT * FROM mysql.time_zone;
  6514. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6515. CREATE VIEW character_sets AS SELECT * FROM mysql.time_zone;
  6516. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6517. CREATE VIEW collations AS SELECT * FROM mysql.time_zone;
  6518. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6519. CREATE VIEW collation_character_set_applicability AS SELECT * FROM mysql.time_zone;
  6520. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6521. CREATE VIEW routines AS SELECT * FROM mysql.time_zone;
  6522. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6523. CREATE VIEW statistics AS SELECT * FROM mysql.time_zone;
  6524. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6525. CREATE VIEW views AS SELECT * FROM mysql.time_zone;
  6526. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6527. CREATE VIEW user_privileges AS SELECT * FROM mysql.time_zone;
  6528. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6529. CREATE VIEW schema_privileges AS SELECT * FROM mysql.time_zone;
  6530. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6531. CREATE VIEW table_privileges AS SELECT * FROM mysql.time_zone;
  6532. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6533. CREATE VIEW column_privileges AS SELECT * FROM mysql.time_zone;
  6534. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6535. CREATE VIEW table_constraints AS SELECT * FROM mysql.time_zone;
  6536. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6537. CREATE VIEW key_column_usage AS SELECT * FROM mysql.time_zone;
  6538. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6539. CREATE VIEW triggers AS SELECT * FROM mysql.time_zone;
  6540. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6541. CREATE VIEW v1 AS SELECT * FROM information_schema.schemata;
  6542. ERROR 42S02: Unknown table 'v1' in information_schema
  6543. USE db_datadict;
  6544. root: create a view with a name of an IS table from other db
  6545. ------------------------------------------------------------
  6546. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6547. ---------------------------------------------------------------------------
  6548. CREATE VIEW information_schema. schemata AS SELECT * FROM mysql.time_zone;
  6549. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6550. CREATE VIEW information_schema. tables AS SELECT * FROM mysql.time_zone;
  6551. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6552. CREATE VIEW information_schema. columns AS SELECT * FROM mysql.time_zone;
  6553. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6554. CREATE VIEW information_schema. character_sets AS SELECT * FROM mysql.time_zone;
  6555. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6556. CREATE VIEW information_schema. collations AS SELECT * FROM mysql.time_zone;
  6557. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6558. CREATE VIEW information_schema. collation_character_set_applicability AS SELECT * FROM mysql.time_zone;
  6559. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6560. CREATE VIEW information_schema. routines AS SELECT * FROM mysql.time_zone;
  6561. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6562. CREATE VIEW information_schema. statistics AS SELECT * FROM mysql.time_zone;
  6563. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6564. CREATE VIEW information_schema. views AS SELECT * FROM mysql.time_zone;
  6565. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6566. CREATE VIEW information_schema. user_privileges AS SELECT * FROM mysql.time_zone;
  6567. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6568. CREATE VIEW information_schema. schema_privileges AS SELECT * FROM mysql.time_zone;
  6569. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6570. CREATE VIEW information_schema. table_privileges AS SELECT * FROM mysql.time_zone;
  6571. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6572. CREATE VIEW information_schema. column_privileges AS SELECT * FROM mysql.time_zone;
  6573. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6574. CREATE VIEW information_schema. table_constraints AS SELECT * FROM mysql.time_zone;
  6575. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6576. CREATE VIEW information_schema. key_column_usage AS SELECT * FROM mysql.time_zone;
  6577. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6578. CREATE VIEW information_schema. triggers AS SELECT * FROM mysql.time_zone;
  6579. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6580. CREATE VIEW v1 AS SELECT * FROM information_schema.columns;
  6581. SELECT * FROM v1 LIMIT 5;
  6582. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  6583. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  6584. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  6585. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  6586. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  6587. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  6588. CREATE USER user_4_1_7@localhost;
  6589. GRANT ALL ON db_datadict.* TO user_4_1_7@localhost;
  6590. GRANT ALL ON information_schema.* TO user_4_1_7@localhost;
  6591. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6592. FLUSH PRIVILEGES;
  6593. connect(localhost,user_4_1_7,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  6594. use information_schema;
  6595. user_4_1_7@localhost information_schema
  6596. user: create a view with a name of an IS table directly in IS
  6597. -------------------------------------------------------------
  6598. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6599. ---------------------------------------------------------------------------
  6600. CREATE VIEW schemata AS SELECT * FROM db_datadict.v1;
  6601. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6602. CREATE VIEW tables AS SELECT * FROM db_datadict.v1;
  6603. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6604. CREATE VIEW columns AS SELECT * FROM db_datadict.v1;
  6605. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6606. CREATE VIEW character_sets AS SELECT * FROM db_datadict.v1;
  6607. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6608. CREATE VIEW collations AS SELECT * FROM db_datadict.v1;
  6609. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6610. CREATE VIEW collation_character_set_applicability AS SELECT * FROM db_datadict.v1;
  6611. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6612. CREATE VIEW routines AS SELECT * FROM db_datadict.v1;
  6613. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6614. CREATE VIEW statistics AS SELECT * FROM db_datadict.v1;
  6615. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6616. CREATE VIEW views AS SELECT * FROM db_datadict.v1;
  6617. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6618. CREATE VIEW user_privileges AS SELECT * FROM db_datadict.v1;
  6619. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6620. CREATE VIEW schema_privileges AS SELECT * FROM db_datadict.v1;
  6621. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6622. CREATE VIEW table_privileges AS SELECT * FROM db_datadict.v1;
  6623. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6624. CREATE VIEW column_privileges AS SELECT * FROM db_datadict.v1;
  6625. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6626. CREATE VIEW table_constraints AS SELECT * FROM db_datadict.v1;
  6627. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6628. CREATE VIEW key_column_usage AS SELECT * FROM db_datadict.v1;
  6629. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6630. CREATE VIEW triggers AS SELECT * FROM db_datadict.v1;
  6631. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6632. create view v1 as select * from table_privileges;
  6633. ERROR 42S02: Unknown table 'v1' in information_schema
  6634. use db_datadict;
  6635. user: create a view with a name of an IS table from other db
  6636. ------------------------------------------------------------
  6637. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6638. ---------------------------------------------------------------------------
  6639. CREATE VIEW information_schema. schemata AS SELECT * FROM db_datadict.v1;
  6640. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6641. CREATE VIEW information_schema. tables AS SELECT * FROM db_datadict.v1;
  6642. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6643. CREATE VIEW information_schema. columns AS SELECT * FROM db_datadict.v1;
  6644. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6645. CREATE VIEW information_schema. character_sets AS SELECT * FROM db_datadict.v1;
  6646. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6647. CREATE VIEW information_schema. collations AS SELECT * FROM db_datadict.v1;
  6648. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6649. CREATE VIEW information_schema. collation_character_set_applicability AS SELECT * FROM db_datadict.v1;
  6650. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6651. CREATE VIEW information_schema. routines AS SELECT * FROM db_datadict.v1;
  6652. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6653. CREATE VIEW information_schema. statistics AS SELECT * FROM db_datadict.v1;
  6654. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6655. CREATE VIEW information_schema. views AS SELECT * FROM db_datadict.v1;
  6656. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6657. CREATE VIEW information_schema. user_privileges AS SELECT * FROM db_datadict.v1;
  6658. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6659. CREATE VIEW information_schema. schema_privileges AS SELECT * FROM db_datadict.v1;
  6660. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6661. CREATE VIEW information_schema. table_privileges AS SELECT * FROM db_datadict.v1;
  6662. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6663. CREATE VIEW information_schema. column_privileges AS SELECT * FROM db_datadict.v1;
  6664. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6665. CREATE VIEW information_schema. table_constraints AS SELECT * FROM db_datadict.v1;
  6666. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6667. CREATE VIEW information_schema. key_column_usage AS SELECT * FROM db_datadict.v1;
  6668. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6669. CREATE VIEW information_schema. triggers AS SELECT * FROM db_datadict.v1;
  6670. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6671. root@localhost db_datadict
  6672. DROP USER user_4_1_7@localhost;
  6673. DROP VIEW db_datadict.v1;
  6674. Testcase 3.2.1.8:
  6675. --------------------------------------------------------------------------------
  6676. use information_schema;
  6677. create index i1 on schemata(schema_name);
  6678. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6679. create index i2 on tables(table_schema);
  6680. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6681. create index i3 on columns(table_name);
  6682. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6683. create index i4 on character_sets(character_set_name);
  6684. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6685. create index i5 on collations( collation_name);
  6686. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6687. create index i6 on collation_character_set_applicability(collation_name);
  6688. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6689. create index i7 on routines(routine_name);
  6690. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6691. create index i8 on statistics(table_schema);
  6692. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6693. create index i9 on views(table_schema);
  6694. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6695. create index i10 on user_privileges(privilege_type);
  6696. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6697. create index i11 on schema_privileges(table_schema);
  6698. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6699. create index i12 on table_privileges(able_schema);
  6700. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6701. create index i13 on column_privileges(table_name);
  6702. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6703. create index i14 on table_constraints(constraint_schema);
  6704. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6705. create index i15 on key_column_usage(constraint_schema);
  6706. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6707. create index i16 on triggers(trigger_name);
  6708. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6709. use db_datadict;
  6710. create index i15 on information_schema.key_column_usage(constraint_schema);
  6711. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6712. use information_schema;
  6713. CREATE USER user_4_1_8@localhost;
  6714. grant select, index on *.* to user_4_1_8@localhost;
  6715. FLUSH PRIVILEGES;
  6716. connect(localhost,user_4_1_8,,test,MYSQL_PORT,MYSQL_SOCK);
  6717. user_4_1_8@localhost test
  6718. use information_schema;
  6719. create index i1 on schemata(schema_name);
  6720. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6721. create index i2 on tables(table_schema);
  6722. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6723. create index i3 on columns(table_name);
  6724. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6725. create index i4 on character_sets(character_set_name);
  6726. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6727. create index i5 on collations( collation_name);
  6728. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6729. create index i6 on collation_character_set_applicability(collation_name);
  6730. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6731. create index i7 on routines(routine_name);
  6732. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6733. create index i8 on statistics(table_schema);
  6734. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6735. create index i9 on views(table_schema);
  6736. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6737. create index i10 on user_privileges(privilege_type);
  6738. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6739. create index i11 on schema_privileges(table_schema);
  6740. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6741. create index i12 on table_privileges(able_schema);
  6742. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6743. create index i13 on column_privileges(table_name);
  6744. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6745. create index i14 on table_constraints(constraint_schema);
  6746. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6747. create index i15 on key_column_usage(constraint_schema);
  6748. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6749. create index i16 on triggers(trigger_name);
  6750. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6751. use db_datadict;
  6752. create index i15 on information_schema.key_column_usage(constraint_schema);
  6753. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6754. root@localhost information_schema
  6755. DROP USER user_4_1_8@localhost;
  6756. Testcase 3.2.1.9:
  6757. --------------------------------------------------------------------------------
  6758. root: alter a table from other db
  6759. ---------------------------------
  6760. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6761. ---------------------------------------------------------------------------
  6762. ALTER TABLE information_schema. schemata ADD f1 INT;
  6763. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6764. ALTER TABLE information_schema. tables ADD f1 INT;
  6765. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6766. ALTER TABLE information_schema. columns ADD f1 INT;
  6767. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6768. ALTER TABLE information_schema. character_sets ADD f1 INT;
  6769. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6770. ALTER TABLE information_schema. collations ADD f1 INT;
  6771. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6772. ALTER TABLE information_schema. collation_character_set_applicability ADD f1 INT;
  6773. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6774. ALTER TABLE information_schema. routines ADD f1 INT;
  6775. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6776. ALTER TABLE information_schema. statistics ADD f1 INT;
  6777. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6778. ALTER TABLE information_schema. views ADD f1 INT;
  6779. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6780. ALTER TABLE information_schema. user_privileges ADD f1 INT;
  6781. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6782. ALTER TABLE information_schema. schema_privileges ADD f1 INT;
  6783. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6784. ALTER TABLE information_schema. table_privileges ADD f1 INT;
  6785. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6786. ALTER TABLE information_schema. column_privileges ADD f1 INT;
  6787. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6788. ALTER TABLE information_schema. table_constraints ADD f1 INT;
  6789. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6790. ALTER TABLE information_schema. key_column_usage ADD f1 INT;
  6791. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6792. ALTER TABLE information_schema. triggers ADD f1 INT;
  6793. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6794. use information_schema;
  6795. root: alter a table from directly
  6796. ---------------------------------
  6797. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6798. ---------------------------------------------------------------------------
  6799. ALTER TABLE schemata ADD f1 INT;
  6800. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6801. ALTER TABLE tables ADD f1 INT;
  6802. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6803. ALTER TABLE columns ADD f1 INT;
  6804. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6805. ALTER TABLE character_sets ADD f1 INT;
  6806. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6807. ALTER TABLE collations ADD f1 INT;
  6808. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6809. ALTER TABLE collation_character_set_applicability ADD f1 INT;
  6810. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6811. ALTER TABLE routines ADD f1 INT;
  6812. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6813. ALTER TABLE statistics ADD f1 INT;
  6814. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6815. ALTER TABLE views ADD f1 INT;
  6816. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6817. ALTER TABLE user_privileges ADD f1 INT;
  6818. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6819. ALTER TABLE schema_privileges ADD f1 INT;
  6820. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6821. ALTER TABLE table_privileges ADD f1 INT;
  6822. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6823. ALTER TABLE column_privileges ADD f1 INT;
  6824. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6825. ALTER TABLE table_constraints ADD f1 INT;
  6826. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6827. ALTER TABLE key_column_usage ADD f1 INT;
  6828. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6829. ALTER TABLE triggers ADD f1 INT;
  6830. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6831. alter table schemata add f1 int;
  6832. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6833. alter table tables drop primary key;
  6834. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6835. alter table columns add f1 int;
  6836. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6837. alter table character_sets disable keys;
  6838. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6839. alter table collations enable keys;
  6840. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6841. alter table collation_character_set_applicability add f1 int;
  6842. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6843. alter table routines discard tablespace;
  6844. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6845. alter table statistics import tablespace;
  6846. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6847. alter table views drop column table_name;
  6848. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6849. alter table user_privileges drop index privilege_type;
  6850. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6851. alter table schema_privileges drop column is_grantable;
  6852. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6853. alter table table_privileges order by constraint_type;
  6854. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6855. alter table column_privileges rename to aaxyz;
  6856. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6857. alter table table_constraints order by schema_name;
  6858. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6859. alter table key_column_usage rename to information_schema.aabxyz;
  6860. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6861. alter table triggers rename to information_schema.sql_mode;
  6862. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6863. CREATE USER user_4_1_9@localhost;
  6864. grant select, alter, create, insert on *.* to user_4_1_9@localhost;
  6865. FLUSH PRIVILEGES;
  6866. connect(localhost,user_4_1_9,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  6867. user_4_1_9@localhost db_datadict
  6868. use db_datadict;
  6869. user: alter a table from other db
  6870. ---------------------------------
  6871. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6872. ---------------------------------------------------------------------------
  6873. ALTER TABLE information_schema. schemata ADD f1 INT;
  6874. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6875. ALTER TABLE information_schema. tables ADD f1 INT;
  6876. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6877. ALTER TABLE information_schema. columns ADD f1 INT;
  6878. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6879. ALTER TABLE information_schema. character_sets ADD f1 INT;
  6880. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6881. ALTER TABLE information_schema. collations ADD f1 INT;
  6882. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6883. ALTER TABLE information_schema. collation_character_set_applicability ADD f1 INT;
  6884. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6885. ALTER TABLE information_schema. routines ADD f1 INT;
  6886. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6887. ALTER TABLE information_schema. statistics ADD f1 INT;
  6888. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6889. ALTER TABLE information_schema. views ADD f1 INT;
  6890. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6891. ALTER TABLE information_schema. user_privileges ADD f1 INT;
  6892. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6893. ALTER TABLE information_schema. schema_privileges ADD f1 INT;
  6894. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6895. ALTER TABLE information_schema. table_privileges ADD f1 INT;
  6896. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6897. ALTER TABLE information_schema. column_privileges ADD f1 INT;
  6898. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6899. ALTER TABLE information_schema. table_constraints ADD f1 INT;
  6900. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6901. ALTER TABLE information_schema. key_column_usage ADD f1 INT;
  6902. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6903. ALTER TABLE information_schema. triggers ADD f1 INT;
  6904. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6905. use information_schema;
  6906. user: alter a table from directly
  6907. ---------------------------------
  6908. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6909. ---------------------------------------------------------------------------
  6910. ALTER TABLE schemata ADD f1 INT;
  6911. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6912. ALTER TABLE tables ADD f1 INT;
  6913. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6914. ALTER TABLE columns ADD f1 INT;
  6915. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6916. ALTER TABLE character_sets ADD f1 INT;
  6917. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6918. ALTER TABLE collations ADD f1 INT;
  6919. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6920. ALTER TABLE collation_character_set_applicability ADD f1 INT;
  6921. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6922. ALTER TABLE routines ADD f1 INT;
  6923. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6924. ALTER TABLE statistics ADD f1 INT;
  6925. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6926. ALTER TABLE views ADD f1 INT;
  6927. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6928. ALTER TABLE user_privileges ADD f1 INT;
  6929. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6930. ALTER TABLE schema_privileges ADD f1 INT;
  6931. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6932. ALTER TABLE table_privileges ADD f1 INT;
  6933. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6934. ALTER TABLE column_privileges ADD f1 INT;
  6935. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6936. ALTER TABLE table_constraints ADD f1 INT;
  6937. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6938. ALTER TABLE key_column_usage ADD f1 INT;
  6939. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6940. ALTER TABLE triggers ADD f1 INT;
  6941. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6942. root@localhost information_schema
  6943. DROP USER user_4_1_9@localhost;
  6944. Testcase 3.2.1.10:
  6945. --------------------------------------------------------------------------------
  6946. use information_schema;
  6947. root: drop a table from IS
  6948. --------------------------
  6949. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6950. ---------------------------------------------------------------------------
  6951. DROP TABLE schemata ;
  6952. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6953. DROP TABLE tables ;
  6954. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6955. DROP TABLE columns ;
  6956. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6957. DROP TABLE character_sets ;
  6958. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6959. DROP TABLE collations ;
  6960. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6961. DROP TABLE collation_character_set_applicability ;
  6962. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6963. DROP TABLE routines ;
  6964. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6965. DROP TABLE statistics ;
  6966. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6967. DROP TABLE views ;
  6968. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6969. DROP TABLE user_privileges ;
  6970. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6971. DROP TABLE schema_privileges ;
  6972. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6973. DROP TABLE table_privileges ;
  6974. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6975. DROP TABLE column_privileges ;
  6976. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6977. DROP TABLE table_constraints ;
  6978. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6979. DROP TABLE key_column_usage ;
  6980. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6981. DROP TABLE triggers ;
  6982. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6983. use db_datadict;
  6984. root: drop a table from other db
  6985. --------------------------------
  6986. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6987. ---------------------------------------------------------------------------
  6988. DROP TABLE information_schema. schemata ;
  6989. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6990. DROP TABLE information_schema. tables ;
  6991. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6992. DROP TABLE information_schema. columns ;
  6993. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6994. DROP TABLE information_schema. character_sets ;
  6995. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6996. DROP TABLE information_schema. collations ;
  6997. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6998. DROP TABLE information_schema. collation_character_set_applicability ;
  6999. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7000. DROP TABLE information_schema. routines ;
  7001. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7002. DROP TABLE information_schema. statistics ;
  7003. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7004. DROP TABLE information_schema. views ;
  7005. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7006. DROP TABLE information_schema. user_privileges ;
  7007. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7008. DROP TABLE information_schema. schema_privileges ;
  7009. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7010. DROP TABLE information_schema. table_privileges ;
  7011. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7012. DROP TABLE information_schema. column_privileges ;
  7013. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7014. DROP TABLE information_schema. table_constraints ;
  7015. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7016. DROP TABLE information_schema. key_column_usage ;
  7017. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7018. DROP TABLE information_schema. triggers ;
  7019. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7020. use information_schema;
  7021. CREATE USER user_4_1_10@localhost;
  7022. GRANT SELECT, DROP ON *.* TO user_4_1_10@localhost;
  7023. FLUSH PRIVILEGES;
  7024. connect(localhost,user_4_1_10,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  7025. use information_schema;
  7026. user_4_1_10@localhost information_schema
  7027. user: drop a table from IS
  7028. --------------------------
  7029. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  7030. ---------------------------------------------------------------------------
  7031. DROP TABLE schemata ;
  7032. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7033. DROP TABLE tables ;
  7034. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7035. DROP TABLE columns ;
  7036. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7037. DROP TABLE character_sets ;
  7038. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7039. DROP TABLE collations ;
  7040. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7041. DROP TABLE collation_character_set_applicability ;
  7042. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7043. DROP TABLE routines ;
  7044. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7045. DROP TABLE statistics ;
  7046. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7047. DROP TABLE views ;
  7048. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7049. DROP TABLE user_privileges ;
  7050. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7051. DROP TABLE schema_privileges ;
  7052. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7053. DROP TABLE table_privileges ;
  7054. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7055. DROP TABLE column_privileges ;
  7056. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7057. DROP TABLE table_constraints ;
  7058. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7059. DROP TABLE key_column_usage ;
  7060. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7061. DROP TABLE triggers ;
  7062. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7063. use db_datadict;
  7064. user: drop a table from other db
  7065. --------------------------------
  7066. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  7067. ---------------------------------------------------------------------------
  7068. DROP TABLE information_schema. schemata ;
  7069. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7070. DROP TABLE information_schema. tables ;
  7071. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7072. DROP TABLE information_schema. columns ;
  7073. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7074. DROP TABLE information_schema. character_sets ;
  7075. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7076. DROP TABLE information_schema. collations ;
  7077. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7078. DROP TABLE information_schema. collation_character_set_applicability ;
  7079. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7080. DROP TABLE information_schema. routines ;
  7081. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7082. DROP TABLE information_schema. statistics ;
  7083. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7084. DROP TABLE information_schema. views ;
  7085. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7086. DROP TABLE information_schema. user_privileges ;
  7087. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7088. DROP TABLE information_schema. schema_privileges ;
  7089. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7090. DROP TABLE information_schema. table_privileges ;
  7091. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7092. DROP TABLE information_schema. column_privileges ;
  7093. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7094. DROP TABLE information_schema. table_constraints ;
  7095. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7096. DROP TABLE information_schema. key_column_usage ;
  7097. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7098. DROP TABLE information_schema. triggers ;
  7099. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  7100. root@localhost information_schema
  7101. DROP USER user_4_1_10@localhost;
  7102. CREATE USER user_4_1_11@localhost;
  7103. GRANT SUPER ON *.* TO user_4_1_11@localhost;
  7104. FLUSH PRIVILEGES;
  7105. connect(localhost,user_4_1_11,,test,MYSQL_PORT,MYSQL_SOCK);
  7106. use information_schema;
  7107. user_4_1_11@localhost information_schema
  7108. drop table routines;
  7109. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  7110. alter table collations enable keys;
  7111. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  7112. create index i5 on collations( collation_name );
  7113. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  7114. create view v1 as select * from schemata;
  7115. ERROR 42S02: Unknown table 'v1' in information_schema
  7116. delete from columns;
  7117. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  7118. update columns set table_name = 't4' where column_name = 'f2';
  7119. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  7120. insert into collations ( collation_name, character_set_name, id, is_default,
  7121. is_compiled, sortlen)
  7122. values ('cp1251_bin', 'cp1251', 50, '', '', 0);
  7123. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  7124. root@localhost information_schema
  7125. DROP USER user_4_1_11@localhost;
  7126. Testcase 3.2.1.11:
  7127. --------------------------------------------------------------------------------
  7128. DROP DATABASE IF EXISTS db_datadict;
  7129. CREATE DATABASE db_datadict;
  7130. CREATE USER 'u_6_401011'@'localhost';
  7131. GRANT ALL ON information_schema.* TO 'u_6_401011'@'localhost';
  7132. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7133. GRANT ALL ON db_datadict.* TO 'u_6_401011'@'localhost';
  7134. FLUSH PRIVILEGES;
  7135. ALTER TABLE information_schema.schemata RENAME db_datadict.schemata;
  7136. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7137. root: move table to other DB
  7138. ----------------------------
  7139. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  7140. ---------------------------------------------------------------------------
  7141. ALTER TABLE information_schema. schemata RENAME db_datadict.tb_01;
  7142. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7143. ALTER TABLE information_schema. tables RENAME db_datadict.tb_01;
  7144. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7145. ALTER TABLE information_schema. columns RENAME db_datadict.tb_01;
  7146. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7147. ALTER TABLE information_schema. character_sets RENAME db_datadict.tb_01;
  7148. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7149. ALTER TABLE information_schema. collations RENAME db_datadict.tb_01;
  7150. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7151. ALTER TABLE information_schema. collation_character_set_applicability RENAME db_datadict.tb_01;
  7152. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7153. ALTER TABLE information_schema. routines RENAME db_datadict.tb_01;
  7154. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7155. ALTER TABLE information_schema. statistics RENAME db_datadict.tb_01;
  7156. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7157. ALTER TABLE information_schema. views RENAME db_datadict.tb_01;
  7158. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7159. ALTER TABLE information_schema. user_privileges RENAME db_datadict.tb_01;
  7160. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7161. ALTER TABLE information_schema. schema_privileges RENAME db_datadict.tb_01;
  7162. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7163. ALTER TABLE information_schema. table_privileges RENAME db_datadict.tb_01;
  7164. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7165. ALTER TABLE information_schema. column_privileges RENAME db_datadict.tb_01;
  7166. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7167. ALTER TABLE information_schema. table_constraints RENAME db_datadict.tb_01;
  7168. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7169. ALTER TABLE information_schema. key_column_usage RENAME db_datadict.tb_01;
  7170. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7171. ALTER TABLE information_schema. triggers RENAME db_datadict.tb_01;
  7172. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7173. connect(localhost,u_6_401011,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  7174. USE information_schema;
  7175. u_6_401011@localhost information_schema
  7176. ALTER TABLE information_schema.schemata RENAME db_datadict.schemata;
  7177. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7178. user: move table to other DB
  7179. ----------------------------
  7180. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  7181. ---------------------------------------------------------------------------
  7182. ALTER TABLE information_schema. schemata RENAME db_datadict.tb_01;
  7183. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7184. ALTER TABLE information_schema. tables RENAME db_datadict.tb_01;
  7185. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7186. ALTER TABLE information_schema. columns RENAME db_datadict.tb_01;
  7187. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7188. ALTER TABLE information_schema. character_sets RENAME db_datadict.tb_01;
  7189. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7190. ALTER TABLE information_schema. collations RENAME db_datadict.tb_01;
  7191. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7192. ALTER TABLE information_schema. collation_character_set_applicability RENAME db_datadict.tb_01;
  7193. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7194. ALTER TABLE information_schema. routines RENAME db_datadict.tb_01;
  7195. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7196. ALTER TABLE information_schema. statistics RENAME db_datadict.tb_01;
  7197. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7198. ALTER TABLE information_schema. views RENAME db_datadict.tb_01;
  7199. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7200. ALTER TABLE information_schema. user_privileges RENAME db_datadict.tb_01;
  7201. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7202. ALTER TABLE information_schema. schema_privileges RENAME db_datadict.tb_01;
  7203. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7204. ALTER TABLE information_schema. table_privileges RENAME db_datadict.tb_01;
  7205. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7206. ALTER TABLE information_schema. column_privileges RENAME db_datadict.tb_01;
  7207. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7208. ALTER TABLE information_schema. table_constraints RENAME db_datadict.tb_01;
  7209. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7210. ALTER TABLE information_schema. key_column_usage RENAME db_datadict.tb_01;
  7211. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7212. ALTER TABLE information_schema. triggers RENAME db_datadict.tb_01;
  7213. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  7214. root@localhost information_schema
  7215. DROP TABLE IF EXISTS db_datadict.schemata;
  7216. DROP USER 'u_6_401011'@'localhost';
  7217. Testcase 3.2.1.12:
  7218. --------------------------------------------------------------------------------
  7219. root: delete from IS tables
  7220. ---------------------------
  7221. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  7222. ---------------------------------------------------------------------------
  7223. DELETE FROM information_schema. schemata ;
  7224. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7225. DELETE FROM information_schema. tables ;
  7226. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7227. DELETE FROM information_schema. columns ;
  7228. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7229. DELETE FROM information_schema. character_sets ;
  7230. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7231. DELETE FROM information_schema. collations ;
  7232. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7233. DELETE FROM information_schema. collation_character_set_applicability ;
  7234. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7235. DELETE FROM information_schema. routines ;
  7236. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7237. DELETE FROM information_schema. statistics ;
  7238. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7239. DELETE FROM information_schema. views ;
  7240. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7241. DELETE FROM information_schema. user_privileges ;
  7242. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7243. DELETE FROM information_schema. schema_privileges ;
  7244. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7245. DELETE FROM information_schema. table_privileges ;
  7246. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7247. DELETE FROM information_schema. column_privileges ;
  7248. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7249. DELETE FROM information_schema. table_constraints ;
  7250. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7251. DELETE FROM information_schema. key_column_usage ;
  7252. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7253. DELETE FROM information_schema. triggers ;
  7254. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7255. UPDATE information_schema.tables SET table_name = 't_4711';
  7256. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7257. UPDATE information_schema.columns SET table_name = 't_4711';
  7258. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7259. UPDATE information_schema.statistics SET table_name = 't_4711';
  7260. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7261. UPDATE information_schema.views SET table_name = 't_4711';
  7262. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7263. UPDATE information_schema.table_privileges SET table_name = 't_4711';
  7264. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7265. UPDATE information_schema.column_privileges SET table_name = 't_4711';
  7266. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7267. UPDATE information_schema.table_constraints SET table_name = 't_4711';
  7268. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7269. UPDATE information_schema.key_column_usage SET table_name = 't_4711';
  7270. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7271. UPDATE information_schema.schemata SET catalog_name = 't_4711';
  7272. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7273. UPDATE information_schema.character_sets SET description = 't_4711';
  7274. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7275. UPDATE information_schema.collations SET character_set_name = 't_4711';
  7276. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7277. UPDATE information_schema.collation_character_set_applicability
  7278. SET character_set_name = 't_4711';
  7279. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7280. UPDATE information_schema.routines SET routine_type = 't_4711';
  7281. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7282. UPDATE information_schema.user_privileges SET grantee = 't_4711';
  7283. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7284. UPDATE information_schema.schema_privileges SET grantee = 't_4711';
  7285. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7286. UPDATE information_schema.triggers SET sql_mode = 't_4711';
  7287. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7288. CREATE USER 'u_6_401012'@'localhost';
  7289. connect(localhost,u_6_401012,,test,MYSQL_PORT,MYSQL_SOCK);
  7290. use information_schema;
  7291. insert into information_schema.schemata (catalog_name, schema_name,
  7292. default_character_set_name, sql_path)
  7293. values (null, information_schema1, utf16, null);
  7294. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7295. alter table information_schema.schemata rename db_datadict1.schemata;
  7296. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7297. alter table information_schema.tables drop column checksum;
  7298. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7299. alter table information_schema.statistics modify packed int;
  7300. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7301. alter table information_schema.routines modify created int not null;
  7302. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7303. alter table information_schema.key_column_usage drop column ordinal_position;
  7304. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7305. alter table information_schema.table_privileges
  7306. change privilege_type rights_approved varchar(32);
  7307. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7308. update columns set table_name = 't4' where column_name = 'f2';
  7309. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7310. delete from information_schema.collations;
  7311. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7312. root@localhost information_schema
  7313. drop table if exists db_datadict1.schemata;
  7314. DROP USER 'u_6_401012'@'localhost';
  7315. Testcase 3.2.1.13:
  7316. --------------------------------------------------------------------------------
  7317. use information_schema;
  7318. first check status >before< creating the objects ...
  7319. ----------------------------------------------------
  7320. select *
  7321. from information_schema.schemata
  7322. where schema_name like 'db_datadict%';
  7323. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7324. NULL db_datadict latin1 latin1_swedish_ci NULL
  7325. select table_catalog, table_schema, engine
  7326. from information_schema.tables
  7327. where table_schema like 'db_datadict%';
  7328. table_catalog table_schema engine
  7329. select *
  7330. from information_schema.columns
  7331. where table_schema like 'db_datadict%';
  7332. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  7333. select table_schema, table_name, is_updatable
  7334. from information_schema.views
  7335. where table_schema like 'db_datadict%';
  7336. table_schema table_name is_updatable
  7337. select routine_name, routine_type, security_type, sql_mode
  7338. from information_schema.routines
  7339. where routine_schema like 'db_datadict%';
  7340. routine_name routine_type security_type sql_mode
  7341. select table_name, index_schema, index_name, index_type
  7342. from information_schema.statistics
  7343. where table_schema like 'db_datadict%';
  7344. table_name index_schema index_name index_type
  7345. select *
  7346. from information_schema.user_privileges;
  7347. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7348. 'root'@'127.0.0.1' NULL ALTER YES
  7349. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7350. 'root'@'127.0.0.1' NULL CREATE YES
  7351. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7352. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7353. 'root'@'127.0.0.1' NULL CREATE USER YES
  7354. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7355. 'root'@'127.0.0.1' NULL DELETE YES
  7356. 'root'@'127.0.0.1' NULL DROP YES
  7357. 'root'@'127.0.0.1' NULL EVENT YES
  7358. 'root'@'127.0.0.1' NULL EXECUTE YES
  7359. 'root'@'127.0.0.1' NULL FILE YES
  7360. 'root'@'127.0.0.1' NULL INDEX YES
  7361. 'root'@'127.0.0.1' NULL INSERT YES
  7362. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7363. 'root'@'127.0.0.1' NULL PROCESS YES
  7364. 'root'@'127.0.0.1' NULL REFERENCES YES
  7365. 'root'@'127.0.0.1' NULL RELOAD YES
  7366. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7367. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7368. 'root'@'127.0.0.1' NULL SELECT YES
  7369. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7370. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7371. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7372. 'root'@'127.0.0.1' NULL SUPER YES
  7373. 'root'@'127.0.0.1' NULL TRIGGER YES
  7374. 'root'@'127.0.0.1' NULL UPDATE YES
  7375. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7376. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7377. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7378. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7379. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7380. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7381. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7382. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7383. 'root'@'<SERVER_NAME>' NULL DROP YES
  7384. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7385. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7386. 'root'@'<SERVER_NAME>' NULL FILE YES
  7387. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7388. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7389. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7390. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7391. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7392. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7393. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7394. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7395. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7396. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7397. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7398. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7399. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7400. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7401. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7402. 'root'@'localhost' NULL ALTER YES
  7403. 'root'@'localhost' NULL ALTER ROUTINE YES
  7404. 'root'@'localhost' NULL CREATE YES
  7405. 'root'@'localhost' NULL CREATE ROUTINE YES
  7406. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7407. 'root'@'localhost' NULL CREATE USER YES
  7408. 'root'@'localhost' NULL CREATE VIEW YES
  7409. 'root'@'localhost' NULL DELETE YES
  7410. 'root'@'localhost' NULL DROP YES
  7411. 'root'@'localhost' NULL EVENT YES
  7412. 'root'@'localhost' NULL EXECUTE YES
  7413. 'root'@'localhost' NULL FILE YES
  7414. 'root'@'localhost' NULL INDEX YES
  7415. 'root'@'localhost' NULL INSERT YES
  7416. 'root'@'localhost' NULL LOCK TABLES YES
  7417. 'root'@'localhost' NULL PROCESS YES
  7418. 'root'@'localhost' NULL REFERENCES YES
  7419. 'root'@'localhost' NULL RELOAD YES
  7420. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7421. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7422. 'root'@'localhost' NULL SELECT YES
  7423. 'root'@'localhost' NULL SHOW DATABASES YES
  7424. 'root'@'localhost' NULL SHOW VIEW YES
  7425. 'root'@'localhost' NULL SHUTDOWN YES
  7426. 'root'@'localhost' NULL SUPER YES
  7427. 'root'@'localhost' NULL TRIGGER YES
  7428. 'root'@'localhost' NULL UPDATE YES
  7429. select *
  7430. from information_schema.column_privileges
  7431. where table_schema like 'db_datadict%';
  7432. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7433. select *
  7434. from information_schema.table_privileges
  7435. where table_schema like 'db_datadict%';
  7436. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7437. select *
  7438. from information_schema.key_column_usage
  7439. where table_schema like 'db_datadict%';
  7440. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION POSITION_IN_UNIQUE_CONSTRAINT REFERENCED_TABLE_SCHEMA REFERENCED_TABLE_NAME REFERENCED_COLUMN_NAME
  7441. SELECT *
  7442. FROM information_schema.triggers
  7443. WHERE trigger_schema LIKE 'db_datadict%';
  7444. TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  7445. DROP DATABASE IF EXISTS db_datadict;
  7446. CREATE DATABASE db_datadict;
  7447. USE db_datadict;
  7448. create table res_t_401013(f1 char(10), f2 char(25), f3 int)
  7449. engine = innodb;
  7450. create view res_v_401013 as select * from res_t_401013;
  7451. CREATE USER u_6_401013@localhost;
  7452. create procedure sp_6_401013() select 'db_datadict';
  7453. create function fn_6_401013() returns int return 0;
  7454. create index i_6_401013 on res_t_401013(f3);
  7455. use information_schema;
  7456. now check whether all new objects exists in IS ...
  7457. --------------------------------------------------
  7458. select *
  7459. from information_schema.schemata
  7460. where schema_name like 'db_datadict%';
  7461. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7462. NULL db_datadict latin1 latin1_swedish_ci NULL
  7463. select table_catalog, table_schema, engine
  7464. from information_schema.tables
  7465. where table_schema like 'db_datadict%';
  7466. table_catalog table_schema engine
  7467. NULL db_datadict InnoDB
  7468. NULL db_datadict NULL
  7469. select *
  7470. from information_schema.columns
  7471. where table_schema like 'db_datadict%';
  7472. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  7473. NULL db_datadict res_t_401013 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
  7474. NULL db_datadict res_t_401013 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  7475. NULL db_datadict res_t_401013 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) MUL select,insert,update,references
  7476. NULL db_datadict res_v_401013 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
  7477. NULL db_datadict res_v_401013 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  7478. NULL db_datadict res_v_401013 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7479. select table_schema, table_name, is_updatable
  7480. from information_schema.views
  7481. where table_schema like 'db_datadict%';
  7482. table_schema table_name is_updatable
  7483. db_datadict res_v_401013 YES
  7484. select routine_name, routine_type, security_type, sql_mode
  7485. from information_schema.routines
  7486. where routine_schema like 'db_datadict%';
  7487. routine_name routine_type security_type sql_mode
  7488. fn_6_401013 FUNCTION DEFINER
  7489. sp_6_401013 PROCEDURE DEFINER
  7490. select table_name, index_schema, index_name, index_type
  7491. from information_schema.statistics
  7492. where table_schema like 'db_datadict%';
  7493. table_name index_schema index_name index_type
  7494. res_t_401013 db_datadict i_6_401013 BTREE
  7495. select *
  7496. from information_schema.user_privileges;
  7497. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7498. 'root'@'127.0.0.1' NULL ALTER YES
  7499. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7500. 'root'@'127.0.0.1' NULL CREATE YES
  7501. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7502. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7503. 'root'@'127.0.0.1' NULL CREATE USER YES
  7504. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7505. 'root'@'127.0.0.1' NULL DELETE YES
  7506. 'root'@'127.0.0.1' NULL DROP YES
  7507. 'root'@'127.0.0.1' NULL EVENT YES
  7508. 'root'@'127.0.0.1' NULL EXECUTE YES
  7509. 'root'@'127.0.0.1' NULL FILE YES
  7510. 'root'@'127.0.0.1' NULL INDEX YES
  7511. 'root'@'127.0.0.1' NULL INSERT YES
  7512. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7513. 'root'@'127.0.0.1' NULL PROCESS YES
  7514. 'root'@'127.0.0.1' NULL REFERENCES YES
  7515. 'root'@'127.0.0.1' NULL RELOAD YES
  7516. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7517. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7518. 'root'@'127.0.0.1' NULL SELECT YES
  7519. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7520. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7521. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7522. 'root'@'127.0.0.1' NULL SUPER YES
  7523. 'root'@'127.0.0.1' NULL TRIGGER YES
  7524. 'root'@'127.0.0.1' NULL UPDATE YES
  7525. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7526. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7527. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7528. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7529. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7530. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7531. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7532. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7533. 'root'@'<SERVER_NAME>' NULL DROP YES
  7534. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7535. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7536. 'root'@'<SERVER_NAME>' NULL FILE YES
  7537. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7538. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7539. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7540. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7541. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7542. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7543. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7544. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7545. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7546. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7547. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7548. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7549. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7550. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7551. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7552. 'root'@'localhost' NULL ALTER YES
  7553. 'root'@'localhost' NULL ALTER ROUTINE YES
  7554. 'root'@'localhost' NULL CREATE YES
  7555. 'root'@'localhost' NULL CREATE ROUTINE YES
  7556. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7557. 'root'@'localhost' NULL CREATE USER YES
  7558. 'root'@'localhost' NULL CREATE VIEW YES
  7559. 'root'@'localhost' NULL DELETE YES
  7560. 'root'@'localhost' NULL DROP YES
  7561. 'root'@'localhost' NULL EVENT YES
  7562. 'root'@'localhost' NULL EXECUTE YES
  7563. 'root'@'localhost' NULL FILE YES
  7564. 'root'@'localhost' NULL INDEX YES
  7565. 'root'@'localhost' NULL INSERT YES
  7566. 'root'@'localhost' NULL LOCK TABLES YES
  7567. 'root'@'localhost' NULL PROCESS YES
  7568. 'root'@'localhost' NULL REFERENCES YES
  7569. 'root'@'localhost' NULL RELOAD YES
  7570. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7571. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7572. 'root'@'localhost' NULL SELECT YES
  7573. 'root'@'localhost' NULL SHOW DATABASES YES
  7574. 'root'@'localhost' NULL SHOW VIEW YES
  7575. 'root'@'localhost' NULL SHUTDOWN YES
  7576. 'root'@'localhost' NULL SUPER YES
  7577. 'root'@'localhost' NULL TRIGGER YES
  7578. 'root'@'localhost' NULL UPDATE YES
  7579. 'u_6_401013'@'localhost' NULL USAGE NO
  7580. select *
  7581. from information_schema.column_privileges
  7582. where table_schema like 'db_datadict%';
  7583. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7584. select *
  7585. from information_schema.table_privileges
  7586. where table_schema like 'db_datadict%';
  7587. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7588. select *
  7589. from information_schema.key_column_usage
  7590. where table_schema like 'db_datadict%';
  7591. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION POSITION_IN_UNIQUE_CONSTRAINT REFERENCED_TABLE_SCHEMA REFERENCED_TABLE_NAME REFERENCED_COLUMN_NAME
  7592. SELECT *
  7593. FROM information_schema.triggers
  7594. WHERE trigger_schema LIKE 'db_datadict%';
  7595. TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  7596. use db_datadict;
  7597. drop index i_6_401013 on res_t_401013;
  7598. drop table db_datadict.res_t_401013;
  7599. drop view db_datadict.res_v_401013;
  7600. DROP USER u_6_401013@localhost;
  7601. drop procedure sp_6_401013;
  7602. drop function fn_6_401013;
  7603. drop database db_datadict;
  7604. use information_schema;
  7605. and now check whether all objects are removed from IS ...
  7606. ---------------------------------------------------------
  7607. select *
  7608. from information_schema.schemata
  7609. where schema_name like 'db_datadict%';
  7610. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7611. select table_catalog, table_schema, engine
  7612. from information_schema.tables
  7613. where table_schema like 'db_datadict%';
  7614. table_catalog table_schema engine
  7615. select *
  7616. from information_schema.columns
  7617. where table_schema like 'db_datadict%';
  7618. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  7619. select table_schema, table_name, is_updatable
  7620. from information_schema.views
  7621. where table_schema like 'db_datadict%';
  7622. table_schema table_name is_updatable
  7623. select routine_name, routine_type, security_type, sql_mode
  7624. from information_schema.routines
  7625. where routine_schema like 'db_datadict%';
  7626. routine_name routine_type security_type sql_mode
  7627. select table_name, index_schema, index_name, index_type
  7628. from information_schema.statistics
  7629. where table_schema like 'db_datadict%';
  7630. table_name index_schema index_name index_type
  7631. select *
  7632. from information_schema.user_privileges;
  7633. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7634. 'root'@'127.0.0.1' NULL ALTER YES
  7635. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7636. 'root'@'127.0.0.1' NULL CREATE YES
  7637. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7638. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7639. 'root'@'127.0.0.1' NULL CREATE USER YES
  7640. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7641. 'root'@'127.0.0.1' NULL DELETE YES
  7642. 'root'@'127.0.0.1' NULL DROP YES
  7643. 'root'@'127.0.0.1' NULL EVENT YES
  7644. 'root'@'127.0.0.1' NULL EXECUTE YES
  7645. 'root'@'127.0.0.1' NULL FILE YES
  7646. 'root'@'127.0.0.1' NULL INDEX YES
  7647. 'root'@'127.0.0.1' NULL INSERT YES
  7648. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7649. 'root'@'127.0.0.1' NULL PROCESS YES
  7650. 'root'@'127.0.0.1' NULL REFERENCES YES
  7651. 'root'@'127.0.0.1' NULL RELOAD YES
  7652. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7653. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7654. 'root'@'127.0.0.1' NULL SELECT YES
  7655. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7656. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7657. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7658. 'root'@'127.0.0.1' NULL SUPER YES
  7659. 'root'@'127.0.0.1' NULL TRIGGER YES
  7660. 'root'@'127.0.0.1' NULL UPDATE YES
  7661. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7662. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7663. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7664. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7665. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7666. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7667. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7668. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7669. 'root'@'<SERVER_NAME>' NULL DROP YES
  7670. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7671. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7672. 'root'@'<SERVER_NAME>' NULL FILE YES
  7673. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7674. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7675. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7676. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7677. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7678. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7679. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7680. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7681. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7682. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7683. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7684. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7685. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7686. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7687. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7688. 'root'@'localhost' NULL ALTER YES
  7689. 'root'@'localhost' NULL ALTER ROUTINE YES
  7690. 'root'@'localhost' NULL CREATE YES
  7691. 'root'@'localhost' NULL CREATE ROUTINE YES
  7692. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7693. 'root'@'localhost' NULL CREATE USER YES
  7694. 'root'@'localhost' NULL CREATE VIEW YES
  7695. 'root'@'localhost' NULL DELETE YES
  7696. 'root'@'localhost' NULL DROP YES
  7697. 'root'@'localhost' NULL EVENT YES
  7698. 'root'@'localhost' NULL EXECUTE YES
  7699. 'root'@'localhost' NULL FILE YES
  7700. 'root'@'localhost' NULL INDEX YES
  7701. 'root'@'localhost' NULL INSERT YES
  7702. 'root'@'localhost' NULL LOCK TABLES YES
  7703. 'root'@'localhost' NULL PROCESS YES
  7704. 'root'@'localhost' NULL REFERENCES YES
  7705. 'root'@'localhost' NULL RELOAD YES
  7706. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7707. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7708. 'root'@'localhost' NULL SELECT YES
  7709. 'root'@'localhost' NULL SHOW DATABASES YES
  7710. 'root'@'localhost' NULL SHOW VIEW YES
  7711. 'root'@'localhost' NULL SHUTDOWN YES
  7712. 'root'@'localhost' NULL SUPER YES
  7713. 'root'@'localhost' NULL TRIGGER YES
  7714. 'root'@'localhost' NULL UPDATE YES
  7715. select *
  7716. from information_schema.column_privileges
  7717. where table_schema like 'db_datadict%';
  7718. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7719. select *
  7720. from information_schema.table_privileges
  7721. where table_schema like 'db_datadict%';
  7722. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7723. select *
  7724. from information_schema.key_column_usage
  7725. where table_schema like 'db_datadict%';
  7726. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION POSITION_IN_UNIQUE_CONSTRAINT REFERENCED_TABLE_SCHEMA REFERENCED_TABLE_NAME REFERENCED_COLUMN_NAME
  7727. SELECT *
  7728. FROM information_schema.triggers
  7729. WHERE trigger_schema LIKE 'db_datadict%';
  7730. TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  7731. Testcase 3.2.1.14:
  7732. --------------------------------------------------------------------------------
  7733. DROP DATABASE IF EXISTS db_datadict;
  7734. CREATE DATABASE db_datadict;
  7735. USE db_datadict;
  7736. create table res_t_401014(f1 char(10), f2 varchar(25), f3 int);
  7737. create view res_v_401014 as select * from res_t_401014;
  7738. create procedure sp_6_401014() select 'db_datadict';
  7739. create function fn_6_401014() returns int return 0;
  7740. show existing objects >before< changing them ...
  7741. ------------------------------------------------
  7742. select *
  7743. from information_schema.schemata
  7744. where schema_name like 'db_datadict%';
  7745. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7746. NULL db_datadict latin1 latin1_swedish_ci NULL
  7747. select table_catalog, table_schema, engine
  7748. from information_schema.tables
  7749. where table_schema like 'db_datadict%';
  7750. table_catalog table_schema engine
  7751. NULL db_datadict MyISAM
  7752. NULL db_datadict NULL
  7753. select *
  7754. from information_schema.columns
  7755. where table_schema like 'db_datadict%';
  7756. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  7757. NULL db_datadict res_t_401014 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
  7758. NULL db_datadict res_t_401014 f2 2 NULL YES varchar 25 25 NULL NULL latin1 latin1_swedish_ci varchar(25) select,insert,update,references
  7759. NULL db_datadict res_t_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7760. NULL db_datadict res_v_401014 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
  7761. NULL db_datadict res_v_401014 f2 2 NULL YES varchar 25 25 NULL NULL latin1 latin1_swedish_ci varchar(25) select,insert,update,references
  7762. NULL db_datadict res_v_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7763. select table_schema, table_name, is_updatable
  7764. from information_schema.views
  7765. where table_schema like 'db_datadict%';
  7766. table_schema table_name is_updatable
  7767. db_datadict res_v_401014 YES
  7768. select routine_name, routine_type, security_type, sql_mode
  7769. from information_schema.routines
  7770. where routine_schema like 'db_datadict%';
  7771. routine_name routine_type security_type sql_mode
  7772. fn_6_401014 FUNCTION DEFINER
  7773. sp_6_401014 PROCEDURE DEFINER
  7774. select table_name, index_schema, index_name, index_type
  7775. from information_schema.statistics
  7776. where table_schema like 'db_datadict%';
  7777. table_name index_schema index_name index_type
  7778. select *
  7779. from information_schema.user_privileges;
  7780. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7781. 'root'@'127.0.0.1' NULL ALTER YES
  7782. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7783. 'root'@'127.0.0.1' NULL CREATE YES
  7784. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7785. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7786. 'root'@'127.0.0.1' NULL CREATE USER YES
  7787. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7788. 'root'@'127.0.0.1' NULL DELETE YES
  7789. 'root'@'127.0.0.1' NULL DROP YES
  7790. 'root'@'127.0.0.1' NULL EVENT YES
  7791. 'root'@'127.0.0.1' NULL EXECUTE YES
  7792. 'root'@'127.0.0.1' NULL FILE YES
  7793. 'root'@'127.0.0.1' NULL INDEX YES
  7794. 'root'@'127.0.0.1' NULL INSERT YES
  7795. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7796. 'root'@'127.0.0.1' NULL PROCESS YES
  7797. 'root'@'127.0.0.1' NULL REFERENCES YES
  7798. 'root'@'127.0.0.1' NULL RELOAD YES
  7799. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7800. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7801. 'root'@'127.0.0.1' NULL SELECT YES
  7802. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7803. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7804. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7805. 'root'@'127.0.0.1' NULL SUPER YES
  7806. 'root'@'127.0.0.1' NULL TRIGGER YES
  7807. 'root'@'127.0.0.1' NULL UPDATE YES
  7808. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7809. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7810. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7811. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7812. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7813. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7814. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7815. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7816. 'root'@'<SERVER_NAME>' NULL DROP YES
  7817. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7818. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7819. 'root'@'<SERVER_NAME>' NULL FILE YES
  7820. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7821. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7822. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7823. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7824. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7825. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7826. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7827. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7828. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7829. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7830. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7831. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7832. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7833. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7834. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7835. 'root'@'localhost' NULL ALTER YES
  7836. 'root'@'localhost' NULL ALTER ROUTINE YES
  7837. 'root'@'localhost' NULL CREATE YES
  7838. 'root'@'localhost' NULL CREATE ROUTINE YES
  7839. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7840. 'root'@'localhost' NULL CREATE USER YES
  7841. 'root'@'localhost' NULL CREATE VIEW YES
  7842. 'root'@'localhost' NULL DELETE YES
  7843. 'root'@'localhost' NULL DROP YES
  7844. 'root'@'localhost' NULL EVENT YES
  7845. 'root'@'localhost' NULL EXECUTE YES
  7846. 'root'@'localhost' NULL FILE YES
  7847. 'root'@'localhost' NULL INDEX YES
  7848. 'root'@'localhost' NULL INSERT YES
  7849. 'root'@'localhost' NULL LOCK TABLES YES
  7850. 'root'@'localhost' NULL PROCESS YES
  7851. 'root'@'localhost' NULL REFERENCES YES
  7852. 'root'@'localhost' NULL RELOAD YES
  7853. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7854. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7855. 'root'@'localhost' NULL SELECT YES
  7856. 'root'@'localhost' NULL SHOW DATABASES YES
  7857. 'root'@'localhost' NULL SHOW VIEW YES
  7858. 'root'@'localhost' NULL SHUTDOWN YES
  7859. 'root'@'localhost' NULL SUPER YES
  7860. 'root'@'localhost' NULL TRIGGER YES
  7861. 'root'@'localhost' NULL UPDATE YES
  7862. select *
  7863. from information_schema.column_privileges
  7864. where table_schema like 'db_datadict%';
  7865. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7866. select *
  7867. from information_schema.table_privileges
  7868. where table_schema like 'db_datadict%';
  7869. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7870. select *
  7871. from information_schema.key_column_usage
  7872. where table_schema like 'db_datadict%';
  7873. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION POSITION_IN_UNIQUE_CONSTRAINT REFERENCED_TABLE_SCHEMA REFERENCED_TABLE_NAME REFERENCED_COLUMN_NAME
  7874. SELECT *
  7875. FROM information_schema.triggers
  7876. WHERE trigger_schema LIKE 'db_datadict%';
  7877. TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  7878. use db_datadict;
  7879. alter table res_t_401014 change f1 ff1 int;
  7880. alter table res_t_401014 engine = MEMORY;
  7881. alter table res_t_401014 change f3 f3_new bigint;
  7882. alter view res_v_401014 as select ff1 from res_t_401014;
  7883. alter procedure sp_6_401014 sql security invoker;
  7884. alter function fn_6_401014 comment 'updated comments';
  7885. alter database db_datadict character set utf8;
  7886. now check whether the changes are visible in IS ...
  7887. ---------------------------------------------------
  7888. select *
  7889. from information_schema.schemata
  7890. where schema_name like 'db_datadict%';
  7891. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7892. NULL db_datadict utf8 utf8_general_ci NULL
  7893. select table_catalog, table_schema, engine
  7894. from information_schema.tables
  7895. where table_schema like 'db_datadict%';
  7896. table_catalog table_schema engine
  7897. NULL db_datadict MEMORY
  7898. NULL db_datadict NULL
  7899. select *
  7900. from information_schema.columns
  7901. where table_schema like 'db_datadict%';
  7902. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  7903. NULL db_datadict res_t_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7904. NULL db_datadict res_t_401014 f2 2 NULL YES varchar 25 25 NULL NULL latin1 latin1_swedish_ci varchar(25) select,insert,update,references
  7905. NULL db_datadict res_t_401014 f3_new 3 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  7906. NULL db_datadict res_v_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7907. select table_schema, table_name, is_updatable
  7908. from information_schema.views
  7909. where table_schema like 'db_datadict%';
  7910. table_schema table_name is_updatable
  7911. db_datadict res_v_401014 YES
  7912. select routine_name, routine_type, security_type, sql_mode
  7913. from information_schema.routines
  7914. where routine_schema like 'db_datadict%';
  7915. routine_name routine_type security_type sql_mode
  7916. fn_6_401014 FUNCTION DEFINER
  7917. sp_6_401014 PROCEDURE INVOKER
  7918. select table_name, index_schema, index_name, index_type
  7919. from information_schema.statistics
  7920. where table_schema like 'db_datadict%';
  7921. table_name index_schema index_name index_type
  7922. select *
  7923. from information_schema.user_privileges;
  7924. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7925. 'root'@'127.0.0.1' NULL ALTER YES
  7926. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7927. 'root'@'127.0.0.1' NULL CREATE YES
  7928. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7929. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7930. 'root'@'127.0.0.1' NULL CREATE USER YES
  7931. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7932. 'root'@'127.0.0.1' NULL DELETE YES
  7933. 'root'@'127.0.0.1' NULL DROP YES
  7934. 'root'@'127.0.0.1' NULL EVENT YES
  7935. 'root'@'127.0.0.1' NULL EXECUTE YES
  7936. 'root'@'127.0.0.1' NULL FILE YES
  7937. 'root'@'127.0.0.1' NULL INDEX YES
  7938. 'root'@'127.0.0.1' NULL INSERT YES
  7939. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7940. 'root'@'127.0.0.1' NULL PROCESS YES
  7941. 'root'@'127.0.0.1' NULL REFERENCES YES
  7942. 'root'@'127.0.0.1' NULL RELOAD YES
  7943. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7944. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7945. 'root'@'127.0.0.1' NULL SELECT YES
  7946. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7947. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7948. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7949. 'root'@'127.0.0.1' NULL SUPER YES
  7950. 'root'@'127.0.0.1' NULL TRIGGER YES
  7951. 'root'@'127.0.0.1' NULL UPDATE YES
  7952. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7953. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7954. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7955. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7956. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7957. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7958. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7959. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7960. 'root'@'<SERVER_NAME>' NULL DROP YES
  7961. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7962. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7963. 'root'@'<SERVER_NAME>' NULL FILE YES
  7964. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7965. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7966. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7967. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7968. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7969. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7970. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7971. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7972. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7973. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7974. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7975. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7976. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7977. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7978. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7979. 'root'@'localhost' NULL ALTER YES
  7980. 'root'@'localhost' NULL ALTER ROUTINE YES
  7981. 'root'@'localhost' NULL CREATE YES
  7982. 'root'@'localhost' NULL CREATE ROUTINE YES
  7983. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7984. 'root'@'localhost' NULL CREATE USER YES
  7985. 'root'@'localhost' NULL CREATE VIEW YES
  7986. 'root'@'localhost' NULL DELETE YES
  7987. 'root'@'localhost' NULL DROP YES
  7988. 'root'@'localhost' NULL EVENT YES
  7989. 'root'@'localhost' NULL EXECUTE YES
  7990. 'root'@'localhost' NULL FILE YES
  7991. 'root'@'localhost' NULL INDEX YES
  7992. 'root'@'localhost' NULL INSERT YES
  7993. 'root'@'localhost' NULL LOCK TABLES YES
  7994. 'root'@'localhost' NULL PROCESS YES
  7995. 'root'@'localhost' NULL REFERENCES YES
  7996. 'root'@'localhost' NULL RELOAD YES
  7997. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7998. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7999. 'root'@'localhost' NULL SELECT YES
  8000. 'root'@'localhost' NULL SHOW DATABASES YES
  8001. 'root'@'localhost' NULL SHOW VIEW YES
  8002. 'root'@'localhost' NULL SHUTDOWN YES
  8003. 'root'@'localhost' NULL SUPER YES
  8004. 'root'@'localhost' NULL TRIGGER YES
  8005. 'root'@'localhost' NULL UPDATE YES
  8006. select *
  8007. from information_schema.column_privileges
  8008. where table_schema like 'db_datadict%';
  8009. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  8010. select *
  8011. from information_schema.table_privileges
  8012. where table_schema like 'db_datadict%';
  8013. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  8014. select *
  8015. from information_schema.key_column_usage
  8016. where table_schema like 'db_datadict%';
  8017. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION POSITION_IN_UNIQUE_CONSTRAINT REFERENCED_TABLE_SCHEMA REFERENCED_TABLE_NAME REFERENCED_COLUMN_NAME
  8018. SELECT *
  8019. FROM information_schema.triggers
  8020. WHERE trigger_schema LIKE 'db_datadict%';
  8021. TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  8022. use db_datadict;
  8023. drop table db_datadict.res_t_401014;
  8024. drop view db_datadict.res_v_401014;
  8025. drop procedure sp_6_401014;
  8026. drop function fn_6_401014;
  8027. drop database db_datadict;
  8028. Testcase 3.2.1.15:
  8029. --------------------------------------------------------------------------------
  8030. DROP DATABASE IF EXISTS db_datadict;
  8031. CREATE DATABASE db_datadict;
  8032. USE db_datadict;
  8033. create table res_t_401015(f1 char(10), f2 text(25), f3 int);
  8034. create view res_v_401015 as select * from res_t_401015;
  8035. CREATE USER u_6_401015@localhost;
  8036. create procedure sp_6_401015() select 'test';
  8037. create function fn_6_401015() returns int return 0;
  8038. create index i_6_401015 on res_t_401015(f3);
  8039. show existing objects >before< dropping them ...
  8040. ------------------------------------------------
  8041. select *
  8042. from information_schema.schemata
  8043. where schema_name like 'db_datadict%';
  8044. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  8045. NULL db_datadict latin1 latin1_swedish_ci NULL
  8046. select table_catalog, table_schema, engine
  8047. from information_schema.tables
  8048. where table_schema like 'db_datadict%';
  8049. table_catalog table_schema engine
  8050. NULL db_datadict MyISAM
  8051. NULL db_datadict NULL
  8052. select *
  8053. from information_schema.columns
  8054. where table_schema like 'db_datadict%';
  8055. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  8056. NULL db_datadict res_t_401015 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
  8057. NULL db_datadict res_t_401015 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  8058. NULL db_datadict res_t_401015 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) MUL select,insert,update,references
  8059. NULL db_datadict res_v_401015 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
  8060. NULL db_datadict res_v_401015 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  8061. NULL db_datadict res_v_401015 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  8062. select table_schema, table_name, is_updatable
  8063. from information_schema.views
  8064. where table_schema like 'db_datadict%';
  8065. table_schema table_name is_updatable
  8066. db_datadict res_v_401015 YES
  8067. select routine_name, routine_type, security_type, sql_mode
  8068. from information_schema.routines
  8069. where routine_schema like 'db_datadict%';
  8070. routine_name routine_type security_type sql_mode
  8071. fn_6_401015 FUNCTION DEFINER
  8072. sp_6_401015 PROCEDURE DEFINER
  8073. select table_name, index_schema, index_name, index_type
  8074. from information_schema.statistics
  8075. where table_schema like 'db_datadict%';
  8076. table_name index_schema index_name index_type
  8077. res_t_401015 db_datadict i_6_401015 BTREE
  8078. select *
  8079. from information_schema.user_privileges;
  8080. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  8081. 'root'@'127.0.0.1' NULL ALTER YES
  8082. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  8083. 'root'@'127.0.0.1' NULL CREATE YES
  8084. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  8085. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  8086. 'root'@'127.0.0.1' NULL CREATE USER YES
  8087. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  8088. 'root'@'127.0.0.1' NULL DELETE YES
  8089. 'root'@'127.0.0.1' NULL DROP YES
  8090. 'root'@'127.0.0.1' NULL EVENT YES
  8091. 'root'@'127.0.0.1' NULL EXECUTE YES
  8092. 'root'@'127.0.0.1' NULL FILE YES
  8093. 'root'@'127.0.0.1' NULL INDEX YES
  8094. 'root'@'127.0.0.1' NULL INSERT YES
  8095. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  8096. 'root'@'127.0.0.1' NULL PROCESS YES
  8097. 'root'@'127.0.0.1' NULL REFERENCES YES
  8098. 'root'@'127.0.0.1' NULL RELOAD YES
  8099. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  8100. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  8101. 'root'@'127.0.0.1' NULL SELECT YES
  8102. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  8103. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  8104. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  8105. 'root'@'127.0.0.1' NULL SUPER YES
  8106. 'root'@'127.0.0.1' NULL TRIGGER YES
  8107. 'root'@'127.0.0.1' NULL UPDATE YES
  8108. 'root'@'<SERVER_NAME>' NULL ALTER YES
  8109. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  8110. 'root'@'<SERVER_NAME>' NULL CREATE YES
  8111. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  8112. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  8113. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  8114. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  8115. 'root'@'<SERVER_NAME>' NULL DELETE YES
  8116. 'root'@'<SERVER_NAME>' NULL DROP YES
  8117. 'root'@'<SERVER_NAME>' NULL EVENT YES
  8118. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  8119. 'root'@'<SERVER_NAME>' NULL FILE YES
  8120. 'root'@'<SERVER_NAME>' NULL INDEX YES
  8121. 'root'@'<SERVER_NAME>' NULL INSERT YES
  8122. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  8123. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  8124. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  8125. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  8126. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  8127. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  8128. 'root'@'<SERVER_NAME>' NULL SELECT YES
  8129. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  8130. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  8131. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  8132. 'root'@'<SERVER_NAME>' NULL SUPER YES
  8133. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  8134. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  8135. 'root'@'localhost' NULL ALTER YES
  8136. 'root'@'localhost' NULL ALTER ROUTINE YES
  8137. 'root'@'localhost' NULL CREATE YES
  8138. 'root'@'localhost' NULL CREATE ROUTINE YES
  8139. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  8140. 'root'@'localhost' NULL CREATE USER YES
  8141. 'root'@'localhost' NULL CREATE VIEW YES
  8142. 'root'@'localhost' NULL DELETE YES
  8143. 'root'@'localhost' NULL DROP YES
  8144. 'root'@'localhost' NULL EVENT YES
  8145. 'root'@'localhost' NULL EXECUTE YES
  8146. 'root'@'localhost' NULL FILE YES
  8147. 'root'@'localhost' NULL INDEX YES
  8148. 'root'@'localhost' NULL INSERT YES
  8149. 'root'@'localhost' NULL LOCK TABLES YES
  8150. 'root'@'localhost' NULL PROCESS YES
  8151. 'root'@'localhost' NULL REFERENCES YES
  8152. 'root'@'localhost' NULL RELOAD YES
  8153. 'root'@'localhost' NULL REPLICATION CLIENT YES
  8154. 'root'@'localhost' NULL REPLICATION SLAVE YES
  8155. 'root'@'localhost' NULL SELECT YES
  8156. 'root'@'localhost' NULL SHOW DATABASES YES
  8157. 'root'@'localhost' NULL SHOW VIEW YES
  8158. 'root'@'localhost' NULL SHUTDOWN YES
  8159. 'root'@'localhost' NULL SUPER YES
  8160. 'root'@'localhost' NULL TRIGGER YES
  8161. 'root'@'localhost' NULL UPDATE YES
  8162. 'u_6_401015'@'localhost' NULL USAGE NO
  8163. select *
  8164. from information_schema.column_privileges
  8165. where table_schema like 'db_datadict%';
  8166. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  8167. select *
  8168. from information_schema.table_privileges
  8169. where table_schema like 'db_datadict%';
  8170. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  8171. select *
  8172. from information_schema.key_column_usage
  8173. where table_schema like 'db_datadict%';
  8174. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION POSITION_IN_UNIQUE_CONSTRAINT REFERENCED_TABLE_SCHEMA REFERENCED_TABLE_NAME REFERENCED_COLUMN_NAME
  8175. SELECT *
  8176. FROM information_schema.triggers
  8177. WHERE trigger_schema LIKE 'db_datadict%';
  8178. TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  8179. use db_datadict;
  8180. drop index i_6_401015 on res_t_401015;
  8181. drop table db_datadict.res_t_401015;
  8182. drop view db_datadict.res_v_401015;
  8183. DROP USER u_6_401015@localhost;
  8184. drop procedure sp_6_401015;
  8185. drop function fn_6_401015;
  8186. now check they are really gone ...
  8187. ----------------------------------
  8188. select *
  8189. from information_schema.schemata
  8190. where schema_name like 'db_datadict%';
  8191. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  8192. NULL db_datadict latin1 latin1_swedish_ci NULL
  8193. select table_catalog, table_schema, engine
  8194. from information_schema.tables
  8195. where table_schema like 'db_datadict%';
  8196. table_catalog table_schema engine
  8197. select *
  8198. from information_schema.columns
  8199. where table_schema like 'db_datadict%';
  8200. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  8201. select table_schema, table_name, is_updatable
  8202. from information_schema.views
  8203. where table_schema like 'db_datadict%';
  8204. table_schema table_name is_updatable
  8205. select routine_name, routine_type, security_type, sql_mode
  8206. from information_schema.routines
  8207. where routine_schema like 'db_datadict%';
  8208. routine_name routine_type security_type sql_mode
  8209. select table_name, index_schema, index_name, index_type
  8210. from information_schema.statistics
  8211. where table_schema like 'db_datadict%';
  8212. table_name index_schema index_name index_type
  8213. select *
  8214. from information_schema.user_privileges;
  8215. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  8216. 'root'@'127.0.0.1' NULL ALTER YES
  8217. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  8218. 'root'@'127.0.0.1' NULL CREATE YES
  8219. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  8220. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  8221. 'root'@'127.0.0.1' NULL CREATE USER YES
  8222. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  8223. 'root'@'127.0.0.1' NULL DELETE YES
  8224. 'root'@'127.0.0.1' NULL DROP YES
  8225. 'root'@'127.0.0.1' NULL EVENT YES
  8226. 'root'@'127.0.0.1' NULL EXECUTE YES
  8227. 'root'@'127.0.0.1' NULL FILE YES
  8228. 'root'@'127.0.0.1' NULL INDEX YES
  8229. 'root'@'127.0.0.1' NULL INSERT YES
  8230. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  8231. 'root'@'127.0.0.1' NULL PROCESS YES
  8232. 'root'@'127.0.0.1' NULL REFERENCES YES
  8233. 'root'@'127.0.0.1' NULL RELOAD YES
  8234. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  8235. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  8236. 'root'@'127.0.0.1' NULL SELECT YES
  8237. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  8238. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  8239. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  8240. 'root'@'127.0.0.1' NULL SUPER YES
  8241. 'root'@'127.0.0.1' NULL TRIGGER YES
  8242. 'root'@'127.0.0.1' NULL UPDATE YES
  8243. 'root'@'<SERVER_NAME>' NULL ALTER YES
  8244. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  8245. 'root'@'<SERVER_NAME>' NULL CREATE YES
  8246. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  8247. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  8248. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  8249. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  8250. 'root'@'<SERVER_NAME>' NULL DELETE YES
  8251. 'root'@'<SERVER_NAME>' NULL DROP YES
  8252. 'root'@'<SERVER_NAME>' NULL EVENT YES
  8253. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  8254. 'root'@'<SERVER_NAME>' NULL FILE YES
  8255. 'root'@'<SERVER_NAME>' NULL INDEX YES
  8256. 'root'@'<SERVER_NAME>' NULL INSERT YES
  8257. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  8258. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  8259. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  8260. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  8261. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  8262. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  8263. 'root'@'<SERVER_NAME>' NULL SELECT YES
  8264. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  8265. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  8266. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  8267. 'root'@'<SERVER_NAME>' NULL SUPER YES
  8268. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  8269. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  8270. 'root'@'localhost' NULL ALTER YES
  8271. 'root'@'localhost' NULL ALTER ROUTINE YES
  8272. 'root'@'localhost' NULL CREATE YES
  8273. 'root'@'localhost' NULL CREATE ROUTINE YES
  8274. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  8275. 'root'@'localhost' NULL CREATE USER YES
  8276. 'root'@'localhost' NULL CREATE VIEW YES
  8277. 'root'@'localhost' NULL DELETE YES
  8278. 'root'@'localhost' NULL DROP YES
  8279. 'root'@'localhost' NULL EVENT YES
  8280. 'root'@'localhost' NULL EXECUTE YES
  8281. 'root'@'localhost' NULL FILE YES
  8282. 'root'@'localhost' NULL INDEX YES
  8283. 'root'@'localhost' NULL INSERT YES
  8284. 'root'@'localhost' NULL LOCK TABLES YES
  8285. 'root'@'localhost' NULL PROCESS YES
  8286. 'root'@'localhost' NULL REFERENCES YES
  8287. 'root'@'localhost' NULL RELOAD YES
  8288. 'root'@'localhost' NULL REPLICATION CLIENT YES
  8289. 'root'@'localhost' NULL REPLICATION SLAVE YES
  8290. 'root'@'localhost' NULL SELECT YES
  8291. 'root'@'localhost' NULL SHOW DATABASES YES
  8292. 'root'@'localhost' NULL SHOW VIEW YES
  8293. 'root'@'localhost' NULL SHUTDOWN YES
  8294. 'root'@'localhost' NULL SUPER YES
  8295. 'root'@'localhost' NULL TRIGGER YES
  8296. 'root'@'localhost' NULL UPDATE YES
  8297. select *
  8298. from information_schema.column_privileges
  8299. where table_schema like 'db_datadict%';
  8300. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  8301. select *
  8302. from information_schema.table_privileges
  8303. where table_schema like 'db_datadict%';
  8304. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  8305. select *
  8306. from information_schema.key_column_usage
  8307. where table_schema like 'db_datadict%';
  8308. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION POSITION_IN_UNIQUE_CONSTRAINT REFERENCED_TABLE_SCHEMA REFERENCED_TABLE_NAME REFERENCED_COLUMN_NAME
  8309. SELECT *
  8310. FROM information_schema.triggers
  8311. WHERE trigger_schema LIKE 'db_datadict%';
  8312. TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  8313. Testcase 3.2.1.16:
  8314. --------------------------------------------------------------------------------
  8315. DROP DATABASE IF EXISTS db_datadict;
  8316. CREATE DATABASE db_datadict;
  8317. CREATE DATABASE db_hidden;
  8318. USE db_hidden;
  8319. CREATE TABLE tb_hidden ( c1 TEXT );
  8320. USE db_datadict;
  8321. CREATE TABLE res_t_401016(f1 char(10),f2 text(25),f3 int);
  8322. CREATE TABLE res_t_401016_1(f1 char(10),f2 text(25),f3 int);
  8323. CREATE USER 'u_6_401016'@'localhost';
  8324. GRANT SELECT ON db_datadict.res_t_401016 TO 'u_6_401016'@'localhost';
  8325. FLUSH PRIVILEGES;
  8326. connect(localhost,u_6_401016,,test,MYSQL_PORT,MYSQL_SOCK);
  8327. USE information_schema;
  8328. SELECT table_schema, table_name, engine
  8329. FROM TABLES;
  8330. table_schema table_name engine
  8331. information_schema CHARACTER_SETS MEMORY
  8332. information_schema COLLATIONS MEMORY
  8333. information_schema COLLATION_CHARACTER_SET_APPLICABILITY MEMORY
  8334. information_schema COLUMNS MyISAM
  8335. information_schema COLUMN_PRIVILEGES MEMORY
  8336. information_schema ENGINES MEMORY
  8337. information_schema EVENTS MyISAM
  8338. information_schema FILES MEMORY
  8339. information_schema GLOBAL_STATUS MEMORY
  8340. information_schema GLOBAL_VARIABLES MEMORY
  8341. information_schema KEY_COLUMN_USAGE MEMORY
  8342. information_schema PARTITIONS MyISAM
  8343. information_schema PLUGINS MyISAM
  8344. information_schema PROCESSLIST MyISAM
  8345. information_schema PROFILING MEMORY
  8346. information_schema REFERENTIAL_CONSTRAINTS MEMORY
  8347. information_schema ROUTINES MyISAM
  8348. information_schema SCHEMATA MEMORY
  8349. information_schema SCHEMA_PRIVILEGES MEMORY
  8350. information_schema SESSION_STATUS MEMORY
  8351. information_schema SESSION_VARIABLES MEMORY
  8352. information_schema STATISTICS MEMORY
  8353. information_schema TABLES MEMORY
  8354. information_schema TABLE_CONSTRAINTS MEMORY
  8355. information_schema TABLE_PRIVILEGES MEMORY
  8356. information_schema TRIGGERS MyISAM
  8357. information_schema USER_PRIVILEGES MEMORY
  8358. information_schema VIEWS MyISAM
  8359. db_datadict res_t_401016 MyISAM
  8360. test t1 InnoDB
  8361. test t10 InnoDB
  8362. test t11 InnoDB
  8363. test t2 InnoDB
  8364. test t3 InnoDB
  8365. test t4 InnoDB
  8366. test t7 InnoDB
  8367. test t8 InnoDB
  8368. test t9 InnoDB
  8369. test tb1 InnoDB
  8370. test tb2 InnoDB
  8371. test tb3 InnoDB
  8372. test tb4 InnoDB
  8373. SHOW TABLES;
  8374. Tables_in_information_schema
  8375. CHARACTER_SETS
  8376. COLLATIONS
  8377. COLLATION_CHARACTER_SET_APPLICABILITY
  8378. COLUMNS
  8379. COLUMN_PRIVILEGES
  8380. ENGINES
  8381. EVENTS
  8382. FILES
  8383. GLOBAL_STATUS
  8384. GLOBAL_VARIABLES
  8385. KEY_COLUMN_USAGE
  8386. PARTITIONS
  8387. PLUGINS
  8388. PROCESSLIST
  8389. PROFILING
  8390. REFERENTIAL_CONSTRAINTS
  8391. ROUTINES
  8392. SCHEMATA
  8393. SCHEMA_PRIVILEGES
  8394. SESSION_STATUS
  8395. SESSION_VARIABLES
  8396. STATISTICS
  8397. TABLES
  8398. TABLE_CONSTRAINTS
  8399. TABLE_PRIVILEGES
  8400. TRIGGERS
  8401. USER_PRIVILEGES
  8402. VIEWS
  8403. SELECT * FROM schemata;
  8404. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  8405. NULL information_schema utf8 utf8_general_ci NULL
  8406. NULL db_datadict latin1 latin1_swedish_ci NULL
  8407. NULL test latin1 latin1_swedish_ci NULL
  8408. root@localhost db_datadict
  8409. grant usage on information_schema.* to 'u_6_401016'@'localhost';
  8410. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8411. FLUSH PRIVILEGES;
  8412. connect(localhost,u_6_401016,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  8413. USE information_schema;
  8414. SHOW TABLES;
  8415. Tables_in_information_schema
  8416. CHARACTER_SETS
  8417. COLLATIONS
  8418. COLLATION_CHARACTER_SET_APPLICABILITY
  8419. COLUMNS
  8420. COLUMN_PRIVILEGES
  8421. ENGINES
  8422. EVENTS
  8423. FILES
  8424. GLOBAL_STATUS
  8425. GLOBAL_VARIABLES
  8426. KEY_COLUMN_USAGE
  8427. PARTITIONS
  8428. PLUGINS
  8429. PROCESSLIST
  8430. PROFILING
  8431. REFERENTIAL_CONSTRAINTS
  8432. ROUTINES
  8433. SCHEMATA
  8434. SCHEMA_PRIVILEGES
  8435. SESSION_STATUS
  8436. SESSION_VARIABLES
  8437. STATISTICS
  8438. TABLES
  8439. TABLE_CONSTRAINTS
  8440. TABLE_PRIVILEGES
  8441. TRIGGERS
  8442. USER_PRIVILEGES
  8443. VIEWS
  8444. SELECT * FROM schemata;
  8445. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  8446. NULL information_schema utf8 utf8_general_ci NULL
  8447. NULL db_datadict latin1 latin1_swedish_ci NULL
  8448. NULL test latin1 latin1_swedish_ci NULL
  8449. use db_datadict;
  8450. root@localhost db_datadict
  8451. DROP USER 'u_6_401016'@'localhost';
  8452. drop table res_t_401016;
  8453. drop table res_t_401016_1;
  8454. DROP DATABASE db_hidden;
  8455. Testcase 3.2.1.17:
  8456. --------------------------------------------------------------------------------
  8457. CREATE USER 'u_6_401017'@'localhost';
  8458. grant select on information_schema.* to u_6_401017@localhost;
  8459. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8460. FLUSH PRIVILEGES;
  8461. connect(localhost,u_6_401017,,test,MYSQL_PORT,MYSQL_SOCK);
  8462. use information_schema;
  8463. select * from collation_character_set_applicability
  8464. where collation_name <> 'utf8_general_cs';
  8465. COLLATION_NAME CHARACTER_SET_NAME
  8466. big5_chinese_ci big5
  8467. big5_bin big5
  8468. dec8_swedish_ci dec8
  8469. dec8_bin dec8
  8470. cp850_general_ci cp850
  8471. cp850_bin cp850
  8472. hp8_english_ci hp8
  8473. hp8_bin hp8
  8474. koi8r_general_ci koi8r
  8475. koi8r_bin koi8r
  8476. latin1_german1_ci latin1
  8477. latin1_swedish_ci latin1
  8478. latin1_danish_ci latin1
  8479. latin1_german2_ci latin1
  8480. latin1_bin latin1
  8481. latin1_general_ci latin1
  8482. latin1_general_cs latin1
  8483. latin1_spanish_ci latin1
  8484. latin2_czech_cs latin2
  8485. latin2_general_ci latin2
  8486. latin2_hungarian_ci latin2
  8487. latin2_croatian_ci latin2
  8488. latin2_bin latin2
  8489. swe7_swedish_ci swe7
  8490. swe7_bin swe7
  8491. ascii_general_ci ascii
  8492. ascii_bin ascii
  8493. ujis_japanese_ci ujis
  8494. ujis_bin ujis
  8495. sjis_japanese_ci sjis
  8496. sjis_bin sjis
  8497. hebrew_general_ci hebrew
  8498. hebrew_bin hebrew
  8499. filename filename
  8500. tis620_thai_ci tis620
  8501. tis620_bin tis620
  8502. euckr_korean_ci euckr
  8503. euckr_bin euckr
  8504. koi8u_general_ci koi8u
  8505. koi8u_bin koi8u
  8506. gb2312_chinese_ci gb2312
  8507. gb2312_bin gb2312
  8508. greek_general_ci greek
  8509. greek_bin greek
  8510. cp1250_general_ci cp1250
  8511. cp1250_czech_cs cp1250
  8512. cp1250_croatian_ci cp1250
  8513. cp1250_bin cp1250
  8514. cp1250_polish_ci cp1250
  8515. gbk_chinese_ci gbk
  8516. gbk_bin gbk
  8517. latin5_turkish_ci latin5
  8518. latin5_bin latin5
  8519. armscii8_general_ci armscii8
  8520. armscii8_bin armscii8
  8521. utf8_general_ci utf8
  8522. utf8_bin utf8
  8523. utf8_unicode_ci utf8
  8524. utf8_icelandic_ci utf8
  8525. utf8_latvian_ci utf8
  8526. utf8_romanian_ci utf8
  8527. utf8_slovenian_ci utf8
  8528. utf8_polish_ci utf8
  8529. utf8_estonian_ci utf8
  8530. utf8_spanish_ci utf8
  8531. utf8_swedish_ci utf8
  8532. utf8_turkish_ci utf8
  8533. utf8_czech_ci utf8
  8534. utf8_danish_ci utf8
  8535. utf8_lithuanian_ci utf8
  8536. utf8_slovak_ci utf8
  8537. utf8_spanish2_ci utf8
  8538. utf8_roman_ci utf8
  8539. utf8_persian_ci utf8
  8540. utf8_esperanto_ci utf8
  8541. utf8_hungarian_ci utf8
  8542. ucs2_general_ci ucs2
  8543. ucs2_bin ucs2
  8544. ucs2_unicode_ci ucs2
  8545. ucs2_icelandic_ci ucs2
  8546. ucs2_latvian_ci ucs2
  8547. ucs2_romanian_ci ucs2
  8548. ucs2_slovenian_ci ucs2
  8549. ucs2_polish_ci ucs2
  8550. ucs2_estonian_ci ucs2
  8551. ucs2_spanish_ci ucs2
  8552. ucs2_swedish_ci ucs2
  8553. ucs2_turkish_ci ucs2
  8554. ucs2_czech_ci ucs2
  8555. ucs2_danish_ci ucs2
  8556. ucs2_lithuanian_ci ucs2
  8557. ucs2_slovak_ci ucs2
  8558. ucs2_spanish2_ci ucs2
  8559. ucs2_roman_ci ucs2
  8560. ucs2_persian_ci ucs2
  8561. ucs2_esperanto_ci ucs2
  8562. ucs2_hungarian_ci ucs2
  8563. cp866_general_ci cp866
  8564. cp866_bin cp866
  8565. keybcs2_general_ci keybcs2
  8566. keybcs2_bin keybcs2
  8567. macce_general_ci macce
  8568. macce_bin macce
  8569. macroman_general_ci macroman
  8570. macroman_bin macroman
  8571. cp852_general_ci cp852
  8572. cp852_bin cp852
  8573. latin7_estonian_cs latin7
  8574. latin7_general_ci latin7
  8575. latin7_general_cs latin7
  8576. latin7_bin latin7
  8577. cp1251_bulgarian_ci cp1251
  8578. cp1251_ukrainian_ci cp1251
  8579. cp1251_bin cp1251
  8580. cp1251_general_ci cp1251
  8581. cp1251_general_cs cp1251
  8582. cp1256_general_ci cp1256
  8583. cp1256_bin cp1256
  8584. cp1257_lithuanian_ci cp1257
  8585. cp1257_bin cp1257
  8586. cp1257_general_ci cp1257
  8587. binary binary
  8588. geostd8_general_ci geostd8
  8589. geostd8_bin geostd8
  8590. cp932_japanese_ci cp932
  8591. cp932_bin cp932
  8592. eucjpms_japanese_ci eucjpms
  8593. eucjpms_bin eucjpms
  8594. select * from schemata;
  8595. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  8596. NULL information_schema utf8 utf8_general_ci NULL
  8597. NULL test latin1 latin1_swedish_ci NULL
  8598. select table_name from tables;
  8599. table_name
  8600. CHARACTER_SETS
  8601. COLLATIONS
  8602. COLLATION_CHARACTER_SET_APPLICABILITY
  8603. COLUMNS
  8604. COLUMN_PRIVILEGES
  8605. ENGINES
  8606. EVENTS
  8607. FILES
  8608. GLOBAL_STATUS
  8609. GLOBAL_VARIABLES
  8610. KEY_COLUMN_USAGE
  8611. PARTITIONS
  8612. PLUGINS
  8613. PROCESSLIST
  8614. PROFILING
  8615. REFERENTIAL_CONSTRAINTS
  8616. ROUTINES
  8617. SCHEMATA
  8618. SCHEMA_PRIVILEGES
  8619. SESSION_STATUS
  8620. SESSION_VARIABLES
  8621. STATISTICS
  8622. TABLES
  8623. TABLE_CONSTRAINTS
  8624. TABLE_PRIVILEGES
  8625. TRIGGERS
  8626. USER_PRIVILEGES
  8627. VIEWS
  8628. t1
  8629. t10
  8630. t11
  8631. t2
  8632. t3
  8633. t4
  8634. t7
  8635. t8
  8636. t9
  8637. tb1
  8638. tb2
  8639. tb3
  8640. tb4
  8641. select table_name, column_name, column_type from columns;
  8642. table_name column_name column_type
  8643. CHARACTER_SETS CHARACTER_SET_NAME varchar(64)
  8644. CHARACTER_SETS DEFAULT_COLLATE_NAME varchar(64)
  8645. CHARACTER_SETS DESCRIPTION varchar(60)
  8646. CHARACTER_SETS MAXLEN bigint(3)
  8647. COLLATIONS COLLATION_NAME varchar(64)
  8648. COLLATIONS CHARACTER_SET_NAME varchar(64)
  8649. COLLATIONS ID bigint(11)
  8650. COLLATIONS IS_DEFAULT varchar(3)
  8651. COLLATIONS IS_COMPILED varchar(3)
  8652. COLLATIONS SORTLEN bigint(3)
  8653. COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME varchar(64)
  8654. COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME varchar(64)
  8655. COLUMNS TABLE_CATALOG varchar(4096)
  8656. COLUMNS TABLE_SCHEMA varchar(64)
  8657. COLUMNS TABLE_NAME varchar(64)
  8658. COLUMNS COLUMN_NAME varchar(64)
  8659. COLUMNS ORDINAL_POSITION bigint(21) unsigned
  8660. COLUMNS COLUMN_DEFAULT longtext
  8661. COLUMNS IS_NULLABLE varchar(3)
  8662. COLUMNS DATA_TYPE varchar(64)
  8663. COLUMNS CHARACTER_MAXIMUM_LENGTH bigint(21) unsigned
  8664. COLUMNS CHARACTER_OCTET_LENGTH bigint(21) unsigned
  8665. COLUMNS NUMERIC_PRECISION bigint(21) unsigned
  8666. COLUMNS NUMERIC_SCALE bigint(21) unsigned
  8667. COLUMNS CHARACTER_SET_NAME varchar(64)
  8668. COLUMNS COLLATION_NAME varchar(64)
  8669. COLUMNS COLUMN_TYPE longtext
  8670. COLUMNS COLUMN_KEY varchar(3)
  8671. COLUMNS EXTRA varchar(27)
  8672. COLUMNS PRIVILEGES varchar(80)
  8673. COLUMNS COLUMN_COMMENT varchar(255)
  8674. COLUMN_PRIVILEGES GRANTEE varchar(81)
  8675. COLUMN_PRIVILEGES TABLE_CATALOG varchar(4096)
  8676. COLUMN_PRIVILEGES TABLE_SCHEMA varchar(64)
  8677. COLUMN_PRIVILEGES TABLE_NAME varchar(64)
  8678. COLUMN_PRIVILEGES COLUMN_NAME varchar(64)
  8679. COLUMN_PRIVILEGES PRIVILEGE_TYPE varchar(64)
  8680. COLUMN_PRIVILEGES IS_GRANTABLE varchar(3)
  8681. ENGINES ENGINE varchar(64)
  8682. ENGINES SUPPORT varchar(8)
  8683. ENGINES COMMENT varchar(80)
  8684. ENGINES TRANSACTIONS varchar(3)
  8685. ENGINES XA varchar(3)
  8686. ENGINES SAVEPOINTS varchar(3)
  8687. EVENTS EVENT_CATALOG varchar(64)
  8688. EVENTS EVENT_SCHEMA varchar(64)
  8689. EVENTS EVENT_NAME varchar(64)
  8690. EVENTS DEFINER varchar(77)
  8691. EVENTS TIME_ZONE varchar(64)
  8692. EVENTS EVENT_BODY varchar(8)
  8693. EVENTS EVENT_DEFINITION longtext
  8694. EVENTS EVENT_TYPE varchar(9)
  8695. EVENTS EXECUTE_AT datetime
  8696. EVENTS INTERVAL_VALUE varchar(256)
  8697. EVENTS INTERVAL_FIELD varchar(18)
  8698. EVENTS SQL_MODE longtext
  8699. EVENTS STARTS datetime
  8700. EVENTS ENDS datetime
  8701. EVENTS STATUS varchar(18)
  8702. EVENTS ON_COMPLETION varchar(12)
  8703. EVENTS CREATED datetime
  8704. EVENTS LAST_ALTERED datetime
  8705. EVENTS LAST_EXECUTED datetime
  8706. EVENTS EVENT_COMMENT varchar(64)
  8707. EVENTS ORIGINATOR bigint(10)
  8708. EVENTS CHARACTER_SET_CLIENT varchar(32)
  8709. EVENTS COLLATION_CONNECTION varchar(32)
  8710. EVENTS DATABASE_COLLATION varchar(32)
  8711. FILES FILE_ID bigint(4)
  8712. FILES FILE_NAME varchar(64)
  8713. FILES FILE_TYPE varchar(20)
  8714. FILES TABLESPACE_NAME varchar(64)
  8715. FILES TABLE_CATALOG varchar(64)
  8716. FILES TABLE_SCHEMA varchar(64)
  8717. FILES TABLE_NAME varchar(64)
  8718. FILES LOGFILE_GROUP_NAME varchar(64)
  8719. FILES LOGFILE_GROUP_NUMBER bigint(4)
  8720. FILES ENGINE varchar(64)
  8721. FILES FULLTEXT_KEYS varchar(64)
  8722. FILES DELETED_ROWS bigint(4)
  8723. FILES UPDATE_COUNT bigint(4)
  8724. FILES FREE_EXTENTS bigint(4)
  8725. FILES TOTAL_EXTENTS bigint(4)
  8726. FILES EXTENT_SIZE bigint(4)
  8727. FILES INITIAL_SIZE bigint(21) unsigned
  8728. FILES MAXIMUM_SIZE bigint(21) unsigned
  8729. FILES AUTOEXTEND_SIZE bigint(21) unsigned
  8730. FILES CREATION_TIME datetime
  8731. FILES LAST_UPDATE_TIME datetime
  8732. FILES LAST_ACCESS_TIME datetime
  8733. FILES RECOVER_TIME bigint(4)
  8734. FILES TRANSACTION_COUNTER bigint(4)
  8735. FILES VERSION bigint(21) unsigned
  8736. FILES ROW_FORMAT varchar(10)
  8737. FILES TABLE_ROWS bigint(21) unsigned
  8738. FILES AVG_ROW_LENGTH bigint(21) unsigned
  8739. FILES DATA_LENGTH bigint(21) unsigned
  8740. FILES MAX_DATA_LENGTH bigint(21) unsigned
  8741. FILES INDEX_LENGTH bigint(21) unsigned
  8742. FILES DATA_FREE bigint(21) unsigned
  8743. FILES CREATE_TIME datetime
  8744. FILES UPDATE_TIME datetime
  8745. FILES CHECK_TIME datetime
  8746. FILES CHECKSUM bigint(21) unsigned
  8747. FILES STATUS varchar(20)
  8748. FILES EXTRA varchar(255)
  8749. GLOBAL_STATUS VARIABLE_NAME varchar(64)
  8750. GLOBAL_STATUS VARIABLE_VALUE varchar(20480)
  8751. GLOBAL_VARIABLES VARIABLE_NAME varchar(64)
  8752. GLOBAL_VARIABLES VARIABLE_VALUE varchar(20480)
  8753. KEY_COLUMN_USAGE CONSTRAINT_CATALOG varchar(4096)
  8754. KEY_COLUMN_USAGE CONSTRAINT_SCHEMA varchar(64)
  8755. KEY_COLUMN_USAGE CONSTRAINT_NAME varchar(64)
  8756. KEY_COLUMN_USAGE TABLE_CATALOG varchar(4096)
  8757. KEY_COLUMN_USAGE TABLE_SCHEMA varchar(64)
  8758. KEY_COLUMN_USAGE TABLE_NAME varchar(64)
  8759. KEY_COLUMN_USAGE COLUMN_NAME varchar(64)
  8760. KEY_COLUMN_USAGE ORDINAL_POSITION bigint(10)
  8761. KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT bigint(10)
  8762. KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA varchar(64)
  8763. KEY_COLUMN_USAGE REFERENCED_TABLE_NAME varchar(64)
  8764. KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME varchar(64)
  8765. PARTITIONS TABLE_CATALOG varchar(4096)
  8766. PARTITIONS TABLE_SCHEMA varchar(64)
  8767. PARTITIONS TABLE_NAME varchar(64)
  8768. PARTITIONS PARTITION_NAME varchar(64)
  8769. PARTITIONS SUBPARTITION_NAME varchar(64)
  8770. PARTITIONS PARTITION_ORDINAL_POSITION bigint(21) unsigned
  8771. PARTITIONS SUBPARTITION_ORDINAL_POSITION bigint(21) unsigned
  8772. PARTITIONS PARTITION_METHOD varchar(12)
  8773. PARTITIONS SUBPARTITION_METHOD varchar(12)
  8774. PARTITIONS PARTITION_EXPRESSION longtext
  8775. PARTITIONS SUBPARTITION_EXPRESSION longtext
  8776. PARTITIONS PARTITION_DESCRIPTION longtext
  8777. PARTITIONS TABLE_ROWS bigint(21) unsigned
  8778. PARTITIONS AVG_ROW_LENGTH bigint(21) unsigned
  8779. PARTITIONS DATA_LENGTH bigint(21) unsigned
  8780. PARTITIONS MAX_DATA_LENGTH bigint(21) unsigned
  8781. PARTITIONS INDEX_LENGTH bigint(21) unsigned
  8782. PARTITIONS DATA_FREE bigint(21) unsigned
  8783. PARTITIONS CREATE_TIME datetime
  8784. PARTITIONS UPDATE_TIME datetime
  8785. PARTITIONS CHECK_TIME datetime
  8786. PARTITIONS CHECKSUM bigint(21) unsigned
  8787. PARTITIONS PARTITION_COMMENT varchar(80)
  8788. PARTITIONS NODEGROUP varchar(12)
  8789. PARTITIONS TABLESPACE_NAME varchar(64)
  8790. PLUGINS PLUGIN_NAME varchar(64)
  8791. PLUGINS PLUGIN_VERSION varchar(20)
  8792. PLUGINS PLUGIN_STATUS varchar(10)
  8793. PLUGINS PLUGIN_TYPE varchar(80)
  8794. PLUGINS PLUGIN_TYPE_VERSION varchar(20)
  8795. PLUGINS PLUGIN_LIBRARY varchar(64)
  8796. PLUGINS PLUGIN_LIBRARY_VERSION varchar(20)
  8797. PLUGINS PLUGIN_AUTHOR varchar(64)
  8798. PLUGINS PLUGIN_DESCRIPTION longtext
  8799. PLUGINS PLUGIN_LICENSE varchar(80)
  8800. PROCESSLIST ID bigint(4)
  8801. PROCESSLIST USER varchar(16)
  8802. PROCESSLIST HOST varchar(64)
  8803. PROCESSLIST DB varchar(64)
  8804. PROCESSLIST COMMAND varchar(16)
  8805. PROCESSLIST TIME bigint(7)
  8806. PROCESSLIST STATE varchar(64)
  8807. PROCESSLIST INFO longtext
  8808. PROFILING QUERY_ID int(20)
  8809. PROFILING SEQ int(20)
  8810. PROFILING STATE varchar(30)
  8811. PROFILING DURATION decimal(9,6)
  8812. PROFILING CPU_USER decimal(9,6)
  8813. PROFILING CPU_SYSTEM decimal(9,6)
  8814. PROFILING CONTEXT_VOLUNTARY int(20)
  8815. PROFILING CONTEXT_INVOLUNTARY int(20)
  8816. PROFILING BLOCK_OPS_IN int(20)
  8817. PROFILING BLOCK_OPS_OUT int(20)
  8818. PROFILING MESSAGES_SENT int(20)
  8819. PROFILING MESSAGES_RECEIVED int(20)
  8820. PROFILING PAGE_FAULTS_MAJOR int(20)
  8821. PROFILING PAGE_FAULTS_MINOR int(20)
  8822. PROFILING SWAPS int(20)
  8823. PROFILING SOURCE_FUNCTION varchar(30)
  8824. PROFILING SOURCE_FILE varchar(20)
  8825. PROFILING SOURCE_LINE int(20)
  8826. REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG varchar(4096)
  8827. REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA varchar(64)
  8828. REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME varchar(64)
  8829. REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG varchar(4096)
  8830. REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA varchar(64)
  8831. REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME varchar(64)
  8832. REFERENTIAL_CONSTRAINTS MATCH_OPTION varchar(64)
  8833. REFERENTIAL_CONSTRAINTS UPDATE_RULE varchar(64)
  8834. REFERENTIAL_CONSTRAINTS DELETE_RULE varchar(64)
  8835. REFERENTIAL_CONSTRAINTS TABLE_NAME varchar(64)
  8836. REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME varchar(64)
  8837. ROUTINES SPECIFIC_NAME varchar(64)
  8838. ROUTINES ROUTINE_CATALOG varchar(4096)
  8839. ROUTINES ROUTINE_SCHEMA varchar(64)
  8840. ROUTINES ROUTINE_NAME varchar(64)
  8841. ROUTINES ROUTINE_TYPE varchar(9)
  8842. ROUTINES DTD_IDENTIFIER varchar(64)
  8843. ROUTINES ROUTINE_BODY varchar(8)
  8844. ROUTINES ROUTINE_DEFINITION longtext
  8845. ROUTINES EXTERNAL_NAME varchar(64)
  8846. ROUTINES EXTERNAL_LANGUAGE varchar(64)
  8847. ROUTINES PARAMETER_STYLE varchar(8)
  8848. ROUTINES IS_DETERMINISTIC varchar(3)
  8849. ROUTINES SQL_DATA_ACCESS varchar(64)
  8850. ROUTINES SQL_PATH varchar(64)
  8851. ROUTINES SECURITY_TYPE varchar(7)
  8852. ROUTINES CREATED datetime
  8853. ROUTINES LAST_ALTERED datetime
  8854. ROUTINES SQL_MODE longtext
  8855. ROUTINES ROUTINE_COMMENT varchar(64)
  8856. ROUTINES DEFINER varchar(77)
  8857. ROUTINES CHARACTER_SET_CLIENT varchar(32)
  8858. ROUTINES COLLATION_CONNECTION varchar(32)
  8859. ROUTINES DATABASE_COLLATION varchar(32)
  8860. SCHEMATA CATALOG_NAME varchar(4096)
  8861. SCHEMATA SCHEMA_NAME varchar(64)
  8862. SCHEMATA DEFAULT_CHARACTER_SET_NAME varchar(64)
  8863. SCHEMATA DEFAULT_COLLATION_NAME varchar(64)
  8864. SCHEMATA SQL_PATH varchar(4096)
  8865. SCHEMA_PRIVILEGES GRANTEE varchar(81)
  8866. SCHEMA_PRIVILEGES TABLE_CATALOG varchar(4096)
  8867. SCHEMA_PRIVILEGES TABLE_SCHEMA varchar(64)
  8868. SCHEMA_PRIVILEGES PRIVILEGE_TYPE varchar(64)
  8869. SCHEMA_PRIVILEGES IS_GRANTABLE varchar(3)
  8870. SESSION_STATUS VARIABLE_NAME varchar(64)
  8871. SESSION_STATUS VARIABLE_VALUE varchar(20480)
  8872. SESSION_VARIABLES VARIABLE_NAME varchar(64)
  8873. SESSION_VARIABLES VARIABLE_VALUE varchar(20480)
  8874. STATISTICS TABLE_CATALOG varchar(4096)
  8875. STATISTICS TABLE_SCHEMA varchar(64)
  8876. STATISTICS TABLE_NAME varchar(64)
  8877. STATISTICS NON_UNIQUE bigint(1)
  8878. STATISTICS INDEX_SCHEMA varchar(64)
  8879. STATISTICS INDEX_NAME varchar(64)
  8880. STATISTICS SEQ_IN_INDEX bigint(2)
  8881. STATISTICS COLUMN_NAME varchar(64)
  8882. STATISTICS COLLATION varchar(1)
  8883. STATISTICS CARDINALITY bigint(21)
  8884. STATISTICS SUB_PART bigint(3)
  8885. STATISTICS PACKED varchar(10)
  8886. STATISTICS NULLABLE varchar(3)
  8887. STATISTICS INDEX_TYPE varchar(16)
  8888. STATISTICS COMMENT varchar(16)
  8889. TABLES TABLE_CATALOG varchar(4096)
  8890. TABLES TABLE_SCHEMA varchar(64)
  8891. TABLES TABLE_NAME varchar(64)
  8892. TABLES TABLE_TYPE varchar(64)
  8893. TABLES ENGINE varchar(64)
  8894. TABLES VERSION bigint(21) unsigned
  8895. TABLES ROW_FORMAT varchar(10)
  8896. TABLES TABLE_ROWS bigint(21) unsigned
  8897. TABLES AVG_ROW_LENGTH bigint(21) unsigned
  8898. TABLES DATA_LENGTH bigint(21) unsigned
  8899. TABLES MAX_DATA_LENGTH bigint(21) unsigned
  8900. TABLES INDEX_LENGTH bigint(21) unsigned
  8901. TABLES DATA_FREE bigint(21) unsigned
  8902. TABLES AUTO_INCREMENT bigint(21) unsigned
  8903. TABLES CREATE_TIME datetime
  8904. TABLES UPDATE_TIME datetime
  8905. TABLES CHECK_TIME datetime
  8906. TABLES TABLE_COLLATION varchar(64)
  8907. TABLES CHECKSUM bigint(21) unsigned
  8908. TABLES CREATE_OPTIONS varchar(255)
  8909. TABLES TABLE_COMMENT varchar(80)
  8910. TABLE_CONSTRAINTS CONSTRAINT_CATALOG varchar(4096)
  8911. TABLE_CONSTRAINTS CONSTRAINT_SCHEMA varchar(64)
  8912. TABLE_CONSTRAINTS CONSTRAINT_NAME varchar(64)
  8913. TABLE_CONSTRAINTS TABLE_SCHEMA varchar(64)
  8914. TABLE_CONSTRAINTS TABLE_NAME varchar(64)
  8915. TABLE_CONSTRAINTS CONSTRAINT_TYPE varchar(64)
  8916. TABLE_PRIVILEGES GRANTEE varchar(81)
  8917. TABLE_PRIVILEGES TABLE_CATALOG varchar(4096)
  8918. TABLE_PRIVILEGES TABLE_SCHEMA varchar(64)
  8919. TABLE_PRIVILEGES TABLE_NAME varchar(64)
  8920. TABLE_PRIVILEGES PRIVILEGE_TYPE varchar(64)
  8921. TABLE_PRIVILEGES IS_GRANTABLE varchar(3)
  8922. TRIGGERS TRIGGER_CATALOG varchar(4096)
  8923. TRIGGERS TRIGGER_SCHEMA varchar(64)
  8924. TRIGGERS TRIGGER_NAME varchar(64)
  8925. TRIGGERS EVENT_MANIPULATION varchar(6)
  8926. TRIGGERS EVENT_OBJECT_CATALOG varchar(4096)
  8927. TRIGGERS EVENT_OBJECT_SCHEMA varchar(64)
  8928. TRIGGERS EVENT_OBJECT_TABLE varchar(64)
  8929. TRIGGERS ACTION_ORDER bigint(4)
  8930. TRIGGERS ACTION_CONDITION longtext
  8931. TRIGGERS ACTION_STATEMENT longtext
  8932. TRIGGERS ACTION_ORIENTATION varchar(9)
  8933. TRIGGERS ACTION_TIMING varchar(6)
  8934. TRIGGERS ACTION_REFERENCE_OLD_TABLE varchar(64)
  8935. TRIGGERS ACTION_REFERENCE_NEW_TABLE varchar(64)
  8936. TRIGGERS ACTION_REFERENCE_OLD_ROW varchar(3)
  8937. TRIGGERS ACTION_REFERENCE_NEW_ROW varchar(3)
  8938. TRIGGERS CREATED datetime
  8939. TRIGGERS SQL_MODE longtext
  8940. TRIGGERS DEFINER longtext
  8941. TRIGGERS CHARACTER_SET_CLIENT varchar(32)
  8942. TRIGGERS COLLATION_CONNECTION varchar(32)
  8943. TRIGGERS DATABASE_COLLATION varchar(32)
  8944. USER_PRIVILEGES GRANTEE varchar(81)
  8945. USER_PRIVILEGES TABLE_CATALOG varchar(4096)
  8946. USER_PRIVILEGES PRIVILEGE_TYPE varchar(64)
  8947. USER_PRIVILEGES IS_GRANTABLE varchar(3)
  8948. VIEWS TABLE_CATALOG varchar(4096)
  8949. VIEWS TABLE_SCHEMA varchar(64)
  8950. VIEWS TABLE_NAME varchar(64)
  8951. VIEWS VIEW_DEFINITION longtext
  8952. VIEWS CHECK_OPTION varchar(8)
  8953. VIEWS IS_UPDATABLE varchar(3)
  8954. VIEWS DEFINER varchar(77)
  8955. VIEWS SECURITY_TYPE varchar(7)
  8956. VIEWS CHARACTER_SET_CLIENT varchar(32)
  8957. VIEWS COLLATION_CONNECTION varchar(32)
  8958. t1 f1 char(20)
  8959. t1 f2 char(25)
  8960. t1 f3 date
  8961. t1 f4 int(11)
  8962. t1 f5 char(25)
  8963. t1 f6 int(11)
  8964. t10 f1 char(20)
  8965. t10 f2 char(25)
  8966. t10 f3 date
  8967. t10 f4 int(11)
  8968. t10 f5 char(25)
  8969. t10 f6 int(11)
  8970. t11 f1 char(20)
  8971. t11 f2 char(25)
  8972. t11 f3 date
  8973. t11 f4 int(11)
  8974. t11 f5 char(25)
  8975. t11 f6 int(11)
  8976. t2 f1 char(20)
  8977. t2 f2 char(25)
  8978. t2 f3 date
  8979. t2 f4 int(11)
  8980. t2 f5 char(25)
  8981. t2 f6 int(11)
  8982. t3 f1 char(20)
  8983. t3 f2 char(20)
  8984. t3 f3 int(11)
  8985. t4 f1 char(20)
  8986. t4 f2 char(25)
  8987. t4 f3 date
  8988. t4 f4 int(11)
  8989. t4 f5 char(25)
  8990. t4 f6 int(11)
  8991. t7 f1 char(20)
  8992. t7 f2 char(25)
  8993. t7 f3 date
  8994. t7 f4 int(11)
  8995. t8 f1 char(20)
  8996. t8 f2 char(25)
  8997. t8 f3 date
  8998. t8 f4 int(11)
  8999. t9 f1 int(11)
  9000. t9 f2 char(25)
  9001. t9 f3 int(11)
  9002. tb1 f1 char(0)
  9003. tb1 f2 char(0)
  9004. tb1 f3 char(0)
  9005. tb1 f4 tinytext
  9006. tb1 f5 text
  9007. tb1 f6 mediumtext
  9008. tb1 f7 longtext
  9009. tb1 f8 tinyblob
  9010. tb1 f9 blob
  9011. tb1 f10 mediumblob
  9012. tb1 f11 longblob
  9013. tb1 f12 binary(1)
  9014. tb1 f13 tinyint(4)
  9015. tb1 f14 tinyint(3) unsigned
  9016. tb1 f15 tinyint(3) unsigned zerofill
  9017. tb1 f16 tinyint(3) unsigned zerofill
  9018. tb1 f17 smallint(6)
  9019. tb1 f18 smallint(5) unsigned
  9020. tb1 f19 smallint(5) unsigned zerofill
  9021. tb1 f20 smallint(5) unsigned zerofill
  9022. tb1 f21 mediumint(9)
  9023. tb1 f22 mediumint(8) unsigned
  9024. tb1 f23 mediumint(8) unsigned zerofill
  9025. tb1 f24 mediumint(8) unsigned zerofill
  9026. tb1 f25 int(11)
  9027. tb1 f26 int(10) unsigned
  9028. tb1 f27 int(10) unsigned zerofill
  9029. tb1 f28 int(10) unsigned zerofill
  9030. tb1 f29 bigint(20)
  9031. tb1 f30 bigint(20) unsigned
  9032. tb1 f31 bigint(20) unsigned zerofill
  9033. tb1 f32 bigint(20) unsigned zerofill
  9034. tb1 f33 decimal(10,0)
  9035. tb1 f34 decimal(10,0) unsigned
  9036. tb1 f35 decimal(10,0) unsigned zerofill
  9037. tb1 f36 decimal(10,0) unsigned zerofill
  9038. tb1 f37 decimal(10,0)
  9039. tb1 f38 decimal(64,0)
  9040. tb1 f39 decimal(10,0) unsigned
  9041. tb1 f40 decimal(64,0) unsigned
  9042. tb1 f41 decimal(10,0) unsigned zerofill
  9043. tb1 f42 decimal(64,0) unsigned zerofill
  9044. tb1 f43 decimal(10,0) unsigned zerofill
  9045. tb1 f44 decimal(64,0) unsigned zerofill
  9046. tb1 f45 decimal(10,0)
  9047. tb1 f46 decimal(63,30)
  9048. tb1 f47 decimal(10,0) unsigned
  9049. tb1 f48 decimal(63,30) unsigned
  9050. tb1 f49 decimal(10,0) unsigned zerofill
  9051. tb1 f50 decimal(63,30) unsigned zerofill
  9052. tb1 f51 decimal(10,0) unsigned zerofill
  9053. tb1 f52 decimal(63,30) unsigned zerofill
  9054. tb1 f53 decimal(10,0)
  9055. tb1 f54 decimal(10,0) unsigned
  9056. tb1 f55 decimal(10,0) unsigned zerofill
  9057. tb1 f56 decimal(10,0) unsigned zerofill
  9058. tb1 f57 decimal(10,0)
  9059. tb1 f58 decimal(64,0)
  9060. tb2 f59 decimal(10,0) unsigned
  9061. tb2 f60 decimal(64,0) unsigned
  9062. tb2 f61 decimal(10,0) unsigned zerofill
  9063. tb2 f62 decimal(64,0) unsigned zerofill
  9064. tb2 f63 decimal(10,0) unsigned zerofill
  9065. tb2 f64 decimal(64,0) unsigned zerofill
  9066. tb2 f65 decimal(10,0)
  9067. tb2 f66 decimal(63,30)
  9068. tb2 f67 decimal(10,0) unsigned
  9069. tb2 f68 decimal(63,30) unsigned
  9070. tb2 f69 decimal(10,0) unsigned zerofill
  9071. tb2 f70 decimal(63,30) unsigned zerofill
  9072. tb2 f71 decimal(10,0) unsigned zerofill
  9073. tb2 f72 decimal(63,30) unsigned zerofill
  9074. tb2 f73 double
  9075. tb2 f74 double unsigned
  9076. tb2 f75 double unsigned zerofill
  9077. tb2 f76 double unsigned zerofill
  9078. tb2 f77 double
  9079. tb2 f78 double unsigned
  9080. tb2 f79 double unsigned zerofill
  9081. tb2 f80 double unsigned zerofill
  9082. tb2 f81 float
  9083. tb2 f82 float unsigned
  9084. tb2 f83 float unsigned zerofill
  9085. tb2 f84 float unsigned zerofill
  9086. tb2 f85 float
  9087. tb2 f86 float
  9088. tb2 f87 float unsigned
  9089. tb2 f88 float unsigned
  9090. tb2 f89 float unsigned zerofill
  9091. tb2 f90 float unsigned zerofill
  9092. tb2 f91 float unsigned zerofill
  9093. tb2 f92 float unsigned zerofill
  9094. tb2 f93 float
  9095. tb2 f94 double
  9096. tb2 f95 float unsigned
  9097. tb2 f96 double unsigned
  9098. tb2 f97 float unsigned zerofill
  9099. tb2 f98 double unsigned zerofill
  9100. tb2 f99 float unsigned zerofill
  9101. tb2 f100 double unsigned zerofill
  9102. tb2 f101 date
  9103. tb2 f102 time
  9104. tb2 f103 datetime
  9105. tb2 f104 timestamp
  9106. tb2 f105 year(4)
  9107. tb2 f106 year(4)
  9108. tb2 f107 year(4)
  9109. tb2 f108 enum('1enum','2enum')
  9110. tb2 f109 set('1set','2set')
  9111. tb3 f118 char(1)
  9112. tb3 f119 char(1)
  9113. tb3 f120 char(1)
  9114. tb3 f121 tinytext
  9115. tb3 f122 text
  9116. tb3 f123 mediumtext
  9117. tb3 f124 longtext
  9118. tb3 f125 tinyblob
  9119. tb3 f126 blob
  9120. tb3 f127 mediumblob
  9121. tb3 f128 longblob
  9122. tb3 f129 binary(1)
  9123. tb3 f130 tinyint(4)
  9124. tb3 f131 tinyint(3) unsigned
  9125. tb3 f132 tinyint(3) unsigned zerofill
  9126. tb3 f133 tinyint(3) unsigned zerofill
  9127. tb3 f134 smallint(6)
  9128. tb3 f135 smallint(5) unsigned
  9129. tb3 f136 smallint(5) unsigned zerofill
  9130. tb3 f137 smallint(5) unsigned zerofill
  9131. tb3 f138 mediumint(9)
  9132. tb3 f139 mediumint(8) unsigned
  9133. tb3 f140 mediumint(8) unsigned zerofill
  9134. tb3 f141 mediumint(8) unsigned zerofill
  9135. tb3 f142 int(11)
  9136. tb3 f143 int(10) unsigned
  9137. tb3 f144 int(10) unsigned zerofill
  9138. tb3 f145 int(10) unsigned zerofill
  9139. tb3 f146 bigint(20)
  9140. tb3 f147 bigint(20) unsigned
  9141. tb3 f148 bigint(20) unsigned zerofill
  9142. tb3 f149 bigint(20) unsigned zerofill
  9143. tb3 f150 decimal(10,0)
  9144. tb3 f151 decimal(10,0) unsigned
  9145. tb3 f152 decimal(10,0) unsigned zerofill
  9146. tb3 f153 decimal(10,0) unsigned zerofill
  9147. tb3 f154 decimal(10,0)
  9148. tb3 f155 decimal(64,0)
  9149. tb3 f156 decimal(10,0) unsigned
  9150. tb3 f157 decimal(64,0) unsigned
  9151. tb3 f158 decimal(10,0) unsigned zerofill
  9152. tb3 f159 decimal(64,0) unsigned zerofill
  9153. tb3 f160 decimal(10,0) unsigned zerofill
  9154. tb3 f161 decimal(64,0) unsigned zerofill
  9155. tb3 f162 decimal(10,0)
  9156. tb3 f163 decimal(63,30)
  9157. tb3 f164 decimal(10,0) unsigned
  9158. tb3 f165 decimal(63,30) unsigned
  9159. tb3 f166 decimal(10,0) unsigned zerofill
  9160. tb3 f167 decimal(63,30) unsigned zerofill
  9161. tb3 f168 decimal(10,0) unsigned zerofill
  9162. tb3 f169 decimal(63,30) unsigned zerofill
  9163. tb3 f170 decimal(10,0)
  9164. tb3 f171 decimal(10,0) unsigned
  9165. tb3 f172 decimal(10,0) unsigned zerofill
  9166. tb3 f173 decimal(10,0) unsigned zerofill
  9167. tb3 f174 decimal(10,0)
  9168. tb3 f175 decimal(64,0)
  9169. tb4 f176 decimal(10,0) unsigned
  9170. tb4 f177 decimal(64,0) unsigned
  9171. tb4 f178 decimal(10,0) unsigned zerofill
  9172. tb4 f179 decimal(64,0) unsigned zerofill
  9173. tb4 f180 decimal(10,0) unsigned zerofill
  9174. tb4 f181 decimal(64,0) unsigned zerofill
  9175. tb4 f182 decimal(10,0)
  9176. tb4 f183 decimal(63,30)
  9177. tb4 f184 decimal(10,0) unsigned
  9178. tb4 f185 decimal(63,30) unsigned
  9179. tb4 f186 decimal(10,0) unsigned zerofill
  9180. tb4 f187 decimal(63,30) unsigned zerofill
  9181. tb4 f188 decimal(10,0) unsigned zerofill
  9182. tb4 f189 decimal(63,30) unsigned zerofill
  9183. tb4 f190 double
  9184. tb4 f191 double unsigned
  9185. tb4 f192 double unsigned zerofill
  9186. tb4 f193 double unsigned zerofill
  9187. tb4 f194 double
  9188. tb4 f195 double unsigned
  9189. tb4 f196 double unsigned zerofill
  9190. tb4 f197 double unsigned zerofill
  9191. tb4 f198 float
  9192. tb4 f199 float unsigned
  9193. tb4 f200 float unsigned zerofill
  9194. tb4 f201 float unsigned zerofill
  9195. tb4 f202 float
  9196. tb4 f203 float
  9197. tb4 f204 float unsigned
  9198. tb4 f205 float unsigned
  9199. tb4 f206 float unsigned zerofill
  9200. tb4 f207 float unsigned zerofill
  9201. tb4 f208 float unsigned zerofill
  9202. tb4 f209 float unsigned zerofill
  9203. tb4 f210 float
  9204. tb4 f211 double
  9205. tb4 f212 float unsigned
  9206. tb4 f213 double unsigned
  9207. tb4 f214 float unsigned zerofill
  9208. tb4 f215 double unsigned zerofill
  9209. tb4 f216 float unsigned zerofill
  9210. tb4 f217 double unsigned zerofill
  9211. tb4 f218 date
  9212. tb4 f219 time
  9213. tb4 f220 datetime
  9214. tb4 f221 timestamp
  9215. tb4 f222 year(4)
  9216. tb4 f223 year(4)
  9217. tb4 f224 year(4)
  9218. tb4 f225 enum('1enum','2enum')
  9219. tb4 f226 set('1set','2set')
  9220. tb4 f235 char(0)
  9221. tb4 f236 char(90)
  9222. tb4 f237 char(255)
  9223. tb4 f238 varchar(0)
  9224. tb4 f239 varchar(20000)
  9225. tb4 f240 varchar(2000)
  9226. tb4 f241 char(100)
  9227. select character_set_name from character_sets;
  9228. character_set_name
  9229. big5
  9230. dec8
  9231. cp850
  9232. hp8
  9233. koi8r
  9234. latin1
  9235. latin2
  9236. swe7
  9237. ascii
  9238. ujis
  9239. sjis
  9240. hebrew
  9241. tis620
  9242. euckr
  9243. koi8u
  9244. gb2312
  9245. greek
  9246. cp1250
  9247. gbk
  9248. latin5
  9249. armscii8
  9250. utf8
  9251. ucs2
  9252. cp866
  9253. keybcs2
  9254. macce
  9255. macroman
  9256. cp852
  9257. latin7
  9258. cp1251
  9259. cp1256
  9260. cp1257
  9261. binary
  9262. geostd8
  9263. cp932
  9264. eucjpms
  9265. select collation_name from collations where collation_name <> 'utf8_general_cs';
  9266. collation_name
  9267. big5_chinese_ci
  9268. big5_bin
  9269. dec8_swedish_ci
  9270. dec8_bin
  9271. cp850_general_ci
  9272. cp850_bin
  9273. hp8_english_ci
  9274. hp8_bin
  9275. koi8r_general_ci
  9276. koi8r_bin
  9277. latin1_german1_ci
  9278. latin1_swedish_ci
  9279. latin1_danish_ci
  9280. latin1_german2_ci
  9281. latin1_bin
  9282. latin1_general_ci
  9283. latin1_general_cs
  9284. latin1_spanish_ci
  9285. latin2_czech_cs
  9286. latin2_general_ci
  9287. latin2_hungarian_ci
  9288. latin2_croatian_ci
  9289. latin2_bin
  9290. swe7_swedish_ci
  9291. swe7_bin
  9292. ascii_general_ci
  9293. ascii_bin
  9294. ujis_japanese_ci
  9295. ujis_bin
  9296. sjis_japanese_ci
  9297. sjis_bin
  9298. hebrew_general_ci
  9299. hebrew_bin
  9300. tis620_thai_ci
  9301. tis620_bin
  9302. euckr_korean_ci
  9303. euckr_bin
  9304. koi8u_general_ci
  9305. koi8u_bin
  9306. gb2312_chinese_ci
  9307. gb2312_bin
  9308. greek_general_ci
  9309. greek_bin
  9310. cp1250_general_ci
  9311. cp1250_czech_cs
  9312. cp1250_croatian_ci
  9313. cp1250_bin
  9314. cp1250_polish_ci
  9315. gbk_chinese_ci
  9316. gbk_bin
  9317. latin5_turkish_ci
  9318. latin5_bin
  9319. armscii8_general_ci
  9320. armscii8_bin
  9321. utf8_general_ci
  9322. utf8_bin
  9323. utf8_unicode_ci
  9324. utf8_icelandic_ci
  9325. utf8_latvian_ci
  9326. utf8_romanian_ci
  9327. utf8_slovenian_ci
  9328. utf8_polish_ci
  9329. utf8_estonian_ci
  9330. utf8_spanish_ci
  9331. utf8_swedish_ci
  9332. utf8_turkish_ci
  9333. utf8_czech_ci
  9334. utf8_danish_ci
  9335. utf8_lithuanian_ci
  9336. utf8_slovak_ci
  9337. utf8_spanish2_ci
  9338. utf8_roman_ci
  9339. utf8_persian_ci
  9340. utf8_esperanto_ci
  9341. utf8_hungarian_ci
  9342. ucs2_general_ci
  9343. ucs2_bin
  9344. ucs2_unicode_ci
  9345. ucs2_icelandic_ci
  9346. ucs2_latvian_ci
  9347. ucs2_romanian_ci
  9348. ucs2_slovenian_ci
  9349. ucs2_polish_ci
  9350. ucs2_estonian_ci
  9351. ucs2_spanish_ci
  9352. ucs2_swedish_ci
  9353. ucs2_turkish_ci
  9354. ucs2_czech_ci
  9355. ucs2_danish_ci
  9356. ucs2_lithuanian_ci
  9357. ucs2_slovak_ci
  9358. ucs2_spanish2_ci
  9359. ucs2_roman_ci
  9360. ucs2_persian_ci
  9361. ucs2_esperanto_ci
  9362. ucs2_hungarian_ci
  9363. cp866_general_ci
  9364. cp866_bin
  9365. keybcs2_general_ci
  9366. keybcs2_bin
  9367. macce_general_ci
  9368. macce_bin
  9369. macroman_general_ci
  9370. macroman_bin
  9371. cp852_general_ci
  9372. cp852_bin
  9373. latin7_estonian_cs
  9374. latin7_general_ci
  9375. latin7_general_cs
  9376. latin7_bin
  9377. cp1251_bulgarian_ci
  9378. cp1251_ukrainian_ci
  9379. cp1251_bin
  9380. cp1251_general_ci
  9381. cp1251_general_cs
  9382. cp1256_general_ci
  9383. cp1256_bin
  9384. cp1257_lithuanian_ci
  9385. cp1257_bin
  9386. cp1257_general_ci
  9387. binary
  9388. geostd8_general_ci
  9389. geostd8_bin
  9390. cp932_japanese_ci
  9391. cp932_bin
  9392. eucjpms_japanese_ci
  9393. eucjpms_bin
  9394. select routine_name, routine_type from routines;
  9395. routine_name routine_type
  9396. select table_name, index_name from statistics;
  9397. table_name index_name
  9398. select table_name from views;
  9399. table_name
  9400. select privilege_type from user_privileges;
  9401. privilege_type
  9402. USAGE
  9403. select grantee, privilege_type from schema_privileges;
  9404. grantee privilege_type
  9405. select * from table_privileges;
  9406. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9407. select column_name, privilege_type from column_privileges;
  9408. column_name privilege_type
  9409. select table_name,constraint_type from table_constraints;
  9410. table_name constraint_type
  9411. select table_schema, table_name, column_name from key_column_usage;
  9412. table_schema table_name column_name
  9413. root@localhost db_datadict
  9414. DROP USER 'u_6_401017'@'localhost';
  9415. Testcase 3.2.1.18:
  9416. --------------------------------------------------------------------------------
  9417. CREATE USER 'u_6_401018'@'localhost';
  9418. GRANT CREATE VIEW ON information_schema.* TO 'u_6_401018'@'localhost';
  9419. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9420. GRANT ALL ON db_datadict.* TO 'u_6_401018'@'localhost';
  9421. SHOW GRANTS FOR 'u_6_401018'@'localhost';
  9422. Grants for u_6_401018@localhost
  9423. GRANT USAGE ON *.* TO 'u_6_401018'@'localhost'
  9424. GRANT ALL PRIVILEGES ON `db_datadict`.* TO 'u_6_401018'@'localhost'
  9425. FLUSH PRIVILEGES;
  9426. DROP DATABASE IF EXISTS db_datadict;
  9427. CREATE DATABASE db_datadict;
  9428. connect(localhost,u_6_401018,,test,MYSQL_PORT,MYSQL_SOCK);
  9429. USE db_datadict;
  9430. create view db_datadict.v_401018 as
  9431. select * from information_schema.schemata;
  9432. SELECT * FROM v_401018 ORDER BY 2 DESC;
  9433. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  9434. NULL test latin1 latin1_swedish_ci NULL
  9435. NULL information_schema utf8 utf8_general_ci NULL
  9436. NULL db_datadict latin1 latin1_swedish_ci NULL
  9437. root@localhost NULL
  9438. DROP USER 'u_6_401018'@'localhost';
  9439. DROP DATABASE db_datadict;
  9440. Testcase 3.2.1.19:
  9441. --------------------------------------------------------------------------------
  9442. CREATE USER 'u_6_401019'@'localhost';
  9443. grant alter on information_schema.* to 'u_6_401019'@'localhost';
  9444. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9445. grant alter routine on information_schema.* to 'u_6_401019'@'localhost';
  9446. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9447. grant create on information_schema.* to 'u_6_401019'@'localhost';
  9448. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9449. grant create routine on information_schema.* to 'u_6_401019'@'localhost';
  9450. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9451. grant create temporary tables
  9452. on information_schema.* to 'u_6_401019'@'localhost';
  9453. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9454. grant delete on information_schema.* to 'u_6_401019'@'localhost';
  9455. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9456. grant drop on information_schema.* to 'u_6_401019'@'localhost';
  9457. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9458. grant execute on information_schema.* to 'u_6_401019'@'localhost';
  9459. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9460. grant index on information_schema.* to 'u_6_401019'@'localhost';
  9461. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9462. grant insert on information_schema.* to 'u_6_401019'@'localhost';
  9463. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9464. grant lock tables on information_schema.* to 'u_6_401019'@'localhost';
  9465. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9466. grant update on information_schema.* to 'u_6_401019'@'localhost';
  9467. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9468. SELECT * FROM information_schema.table_privileges
  9469. WHERE table_schema = "information_schema";
  9470. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9471. SELECT * FROM information_schema.column_privileges
  9472. WHERE table_schema = "information_schema";
  9473. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9474. DROP USER 'u_6_401019'@'localhost';
  9475. Testcase 3.2.1.20:
  9476. --------------------------------------------------------------------------------
  9477. CREATE USER 'u_6_401020'@'localhost';
  9478. connect(localhost,u_6_401020,,test,MYSQL_PORT,MYSQL_SOCK);
  9479. USE information_schema;
  9480. SELECT * FROM schemata;
  9481. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  9482. NULL information_schema utf8 utf8_general_ci NULL
  9483. NULL test latin1 latin1_swedish_ci NULL
  9484. CREATE TABLE tb_not_allowed ( col TEXT );
  9485. ERROR 42S02: Unknown table 'tb_not_allowed' in information_schema
  9486. create view res_v1 as select * from information_schema.schemata;
  9487. ERROR 42S02: Unknown table 'res_v1' in information_schema
  9488. alter table schemata modify catalog_name varchar(255);
  9489. ERROR 42000: Access denied for user 'u_6_401020'@'localhost' to database 'information_schema'
  9490. update schemata set catalog_name = 'abc'
  9491. where schema_name = 'information_schema';
  9492. ERROR 42000: Access denied for user 'u_6_401020'@'localhost' to database 'information_schema'
  9493. CREATE PROCEDURE sp_3_2_1_20()
  9494. BEGIN
  9495. INSERT INTO information_schema.schema_privileges (table_schema,privilege_type)
  9496. VALUES('db2','insert');
  9497. END//
  9498. ERROR 42000: Unknown database 'information_schema'
  9499. DELETE FROM schemata WHERE schema_name = 'information_schema';
  9500. ERROR 42000: Access denied for user 'u_6_401020'@'localhost' to database 'information_schema'
  9501. root@localhost NULL
  9502. DROP USER 'u_6_401020'@'localhost';
  9503. Testcase 3.2.2.1:
  9504. --------------------------------------------------------------------------------
  9505. USE information_schema;
  9506. DESC character_sets;
  9507. Field Type Null Key Default Extra
  9508. CHARACTER_SET_NAME varchar(64) NO
  9509. DEFAULT_COLLATE_NAME varchar(64) NO
  9510. DESCRIPTION varchar(60) NO
  9511. MAXLEN bigint(3) NO 0
  9512. SHOW CREATE TABLE character_sets;
  9513. Table Create Table
  9514. CHARACTER_SETS CREATE TEMPORARY TABLE `CHARACTER_SETS` (
  9515. `CHARACTER_SET_NAME` varchar(64) NOT NULL DEFAULT '',
  9516. `DEFAULT_COLLATE_NAME` varchar(64) NOT NULL DEFAULT '',
  9517. `DESCRIPTION` varchar(60) NOT NULL DEFAULT '',
  9518. `MAXLEN` bigint(3) NOT NULL DEFAULT '0'
  9519. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  9520. SELECT COUNT(*) FROM information_schema.columns
  9521. WHERE table_schema = 'information_schema'
  9522. AND table_name = 'character_sets'
  9523. ORDER BY ordinal_position;
  9524. COUNT(*)
  9525. 4
  9526. SELECT * FROM information_schema.columns
  9527. WHERE table_schema = 'information_schema'
  9528. AND table_name = 'character_sets'
  9529. ORDER BY ordinal_position;
  9530. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  9531. NULL information_schema character_sets CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9532. NULL information_schema character_sets DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9533. NULL information_schema character_sets DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  9534. NULL information_schema character_sets MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  9535. Testcase 3.2.2.2:
  9536. --------------------------------------------------------------------------------
  9537. root@localhost information_schema
  9538. SELECT * FROM information_schema.character_sets;
  9539. CHARACTER_SET_NAME DEFAULT_COLLATE_NAME DESCRIPTION MAXLEN
  9540. big5 big5_chinese_ci Big5 Traditional Chinese 2
  9541. dec8 dec8_swedish_ci DEC West European 1
  9542. cp850 cp850_general_ci DOS West European 1
  9543. hp8 hp8_english_ci HP West European 1
  9544. koi8r koi8r_general_ci KOI8-R Relcom Russian 1
  9545. latin1 latin1_swedish_ci cp1252 West European 1
  9546. latin2 latin2_general_ci ISO 8859-2 Central European 1
  9547. swe7 swe7_swedish_ci 7bit Swedish 1
  9548. ascii ascii_general_ci US ASCII 1
  9549. ujis ujis_japanese_ci EUC-JP Japanese 3
  9550. sjis sjis_japanese_ci Shift-JIS Japanese 2
  9551. hebrew hebrew_general_ci ISO 8859-8 Hebrew 1
  9552. tis620 tis620_thai_ci TIS620 Thai 1
  9553. euckr euckr_korean_ci EUC-KR Korean 2
  9554. koi8u koi8u_general_ci KOI8-U Ukrainian 1
  9555. gb2312 gb2312_chinese_ci GB2312 Simplified Chinese 2
  9556. greek greek_general_ci ISO 8859-7 Greek 1
  9557. cp1250 cp1250_general_ci Windows Central European 1
  9558. gbk gbk_chinese_ci GBK Simplified Chinese 2
  9559. latin5 latin5_turkish_ci ISO 8859-9 Turkish 1
  9560. armscii8 armscii8_general_ci ARMSCII-8 Armenian 1
  9561. utf8 utf8_general_ci UTF-8 Unicode 3
  9562. ucs2 ucs2_general_ci UCS-2 Unicode 2
  9563. cp866 cp866_general_ci DOS Russian 1
  9564. keybcs2 keybcs2_general_ci DOS Kamenicky Czech-Slovak 1
  9565. macce macce_general_ci Mac Central European 1
  9566. macroman macroman_general_ci Mac West European 1
  9567. cp852 cp852_general_ci DOS Central European 1
  9568. latin7 latin7_general_ci ISO 8859-13 Baltic 1
  9569. cp1251 cp1251_general_ci Windows Cyrillic 1
  9570. cp1256 cp1256_general_ci Windows Arabic 1
  9571. cp1257 cp1257_general_ci Windows Baltic 1
  9572. binary binary Binary pseudo charset 1
  9573. geostd8 geostd8_general_ci GEOSTD8 Georgian 1
  9574. cp932 cp932_japanese_ci SJIS for Windows Japanese 2
  9575. eucjpms eucjpms_japanese_ci UJIS for Windows Japanese 3
  9576. Testcase 3.2.2.3:
  9577. --------------------------------------------------------------------------------
  9578. Testcase 3.2.3.1:
  9579. --------------------------------------------------------------------------------
  9580. USE information_schema;
  9581. DESC collations;
  9582. Field Type Null Key Default Extra
  9583. COLLATION_NAME varchar(64) NO
  9584. CHARACTER_SET_NAME varchar(64) NO
  9585. ID bigint(11) NO 0
  9586. IS_DEFAULT varchar(3) NO
  9587. IS_COMPILED varchar(3) NO
  9588. SORTLEN bigint(3) NO 0
  9589. SHOW CREATE TABLE collations;
  9590. Table Create Table
  9591. COLLATIONS CREATE TEMPORARY TABLE `COLLATIONS` (
  9592. `COLLATION_NAME` varchar(64) NOT NULL DEFAULT '',
  9593. `CHARACTER_SET_NAME` varchar(64) NOT NULL DEFAULT '',
  9594. `ID` bigint(11) NOT NULL DEFAULT '0',
  9595. `IS_DEFAULT` varchar(3) NOT NULL DEFAULT '',
  9596. `IS_COMPILED` varchar(3) NOT NULL DEFAULT '',
  9597. `SORTLEN` bigint(3) NOT NULL DEFAULT '0'
  9598. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  9599. SELECT COUNT(*) FROM information_schema.columns
  9600. WHERE table_schema = 'information_schema'
  9601. AND table_name = 'collations'
  9602. ORDER BY ordinal_position;
  9603. COUNT(*)
  9604. 6
  9605. SELECT * FROM information_schema.columns
  9606. WHERE table_schema = 'information_schema'
  9607. AND table_name = 'collations'
  9608. ORDER BY ordinal_position;
  9609. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  9610. NULL information_schema collations COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9611. NULL information_schema collations CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9612. NULL information_schema collations ID 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(11) select
  9613. NULL information_schema collations IS_DEFAULT 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9614. NULL information_schema collations IS_COMPILED 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9615. NULL information_schema collations SORTLEN 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  9616. Testcase 3.2.3.2:
  9617. --------------------------------------------------------------------------------
  9618. SELECT * FROM collations where collation_name <> 'utf8_general_cs';
  9619. COLLATION_NAME CHARACTER_SET_NAME ID IS_DEFAULT IS_COMPILED SORTLEN
  9620. big5_chinese_ci big5 1 Yes Yes 1
  9621. big5_bin big5 84 Yes 1
  9622. dec8_swedish_ci dec8 3 Yes 0
  9623. dec8_bin dec8 69 0
  9624. cp850_general_ci cp850 4 Yes 0
  9625. cp850_bin cp850 80 0
  9626. hp8_english_ci hp8 6 Yes 0
  9627. hp8_bin hp8 72 0
  9628. koi8r_general_ci koi8r 7 Yes 0
  9629. koi8r_bin koi8r 74 0
  9630. latin1_german1_ci latin1 5 Yes 1
  9631. latin1_swedish_ci latin1 8 Yes Yes 1
  9632. latin1_danish_ci latin1 15 Yes 1
  9633. latin1_german2_ci latin1 31 Yes 2
  9634. latin1_bin latin1 47 Yes 1
  9635. latin1_general_ci latin1 48 Yes 1
  9636. latin1_general_cs latin1 49 Yes 1
  9637. latin1_spanish_ci latin1 94 Yes 1
  9638. latin2_czech_cs latin2 2 Yes 4
  9639. latin2_general_ci latin2 9 Yes Yes 1
  9640. latin2_hungarian_ci latin2 21 Yes 1
  9641. latin2_croatian_ci latin2 27 Yes 1
  9642. latin2_bin latin2 77 Yes 1
  9643. swe7_swedish_ci swe7 10 Yes 0
  9644. swe7_bin swe7 82 0
  9645. ascii_general_ci ascii 11 Yes 0
  9646. ascii_bin ascii 65 0
  9647. ujis_japanese_ci ujis 12 Yes Yes 1
  9648. ujis_bin ujis 91 Yes 1
  9649. sjis_japanese_ci sjis 13 Yes Yes 1
  9650. sjis_bin sjis 88 Yes 1
  9651. hebrew_general_ci hebrew 16 Yes 0
  9652. hebrew_bin hebrew 71 0
  9653. tis620_thai_ci tis620 18 Yes Yes 4
  9654. tis620_bin tis620 89 Yes 1
  9655. euckr_korean_ci euckr 19 Yes Yes 1
  9656. euckr_bin euckr 85 Yes 1
  9657. koi8u_general_ci koi8u 22 Yes 0
  9658. koi8u_bin koi8u 75 0
  9659. gb2312_chinese_ci gb2312 24 Yes Yes 1
  9660. gb2312_bin gb2312 86 Yes 1
  9661. greek_general_ci greek 25 Yes 0
  9662. greek_bin greek 70 0
  9663. cp1250_general_ci cp1250 26 Yes Yes 1
  9664. cp1250_czech_cs cp1250 34 Yes 2
  9665. cp1250_croatian_ci cp1250 44 Yes 1
  9666. cp1250_bin cp1250 66 Yes 1
  9667. cp1250_polish_ci cp1250 99 Yes 1
  9668. gbk_chinese_ci gbk 28 Yes Yes 1
  9669. gbk_bin gbk 87 Yes 1
  9670. latin5_turkish_ci latin5 30 Yes 0
  9671. latin5_bin latin5 78 0
  9672. armscii8_general_ci armscii8 32 Yes 0
  9673. armscii8_bin armscii8 64 0
  9674. utf8_general_ci utf8 33 Yes Yes 1
  9675. utf8_bin utf8 83 Yes 1
  9676. utf8_unicode_ci utf8 192 Yes 8
  9677. utf8_icelandic_ci utf8 193 Yes 8
  9678. utf8_latvian_ci utf8 194 Yes 8
  9679. utf8_romanian_ci utf8 195 Yes 8
  9680. utf8_slovenian_ci utf8 196 Yes 8
  9681. utf8_polish_ci utf8 197 Yes 8
  9682. utf8_estonian_ci utf8 198 Yes 8
  9683. utf8_spanish_ci utf8 199 Yes 8
  9684. utf8_swedish_ci utf8 200 Yes 8
  9685. utf8_turkish_ci utf8 201 Yes 8
  9686. utf8_czech_ci utf8 202 Yes 8
  9687. utf8_danish_ci utf8 203 Yes 8
  9688. utf8_lithuanian_ci utf8 204 Yes 8
  9689. utf8_slovak_ci utf8 205 Yes 8
  9690. utf8_spanish2_ci utf8 206 Yes 8
  9691. utf8_roman_ci utf8 207 Yes 8
  9692. utf8_persian_ci utf8 208 Yes 8
  9693. utf8_esperanto_ci utf8 209 Yes 8
  9694. utf8_hungarian_ci utf8 210 Yes 8
  9695. ucs2_general_ci ucs2 35 Yes Yes 1
  9696. ucs2_bin ucs2 90 Yes 1
  9697. ucs2_unicode_ci ucs2 128 Yes 8
  9698. ucs2_icelandic_ci ucs2 129 Yes 8
  9699. ucs2_latvian_ci ucs2 130 Yes 8
  9700. ucs2_romanian_ci ucs2 131 Yes 8
  9701. ucs2_slovenian_ci ucs2 132 Yes 8
  9702. ucs2_polish_ci ucs2 133 Yes 8
  9703. ucs2_estonian_ci ucs2 134 Yes 8
  9704. ucs2_spanish_ci ucs2 135 Yes 8
  9705. ucs2_swedish_ci ucs2 136 Yes 8
  9706. ucs2_turkish_ci ucs2 137 Yes 8
  9707. ucs2_czech_ci ucs2 138 Yes 8
  9708. ucs2_danish_ci ucs2 139 Yes 8
  9709. ucs2_lithuanian_ci ucs2 140 Yes 8
  9710. ucs2_slovak_ci ucs2 141 Yes 8
  9711. ucs2_spanish2_ci ucs2 142 Yes 8
  9712. ucs2_roman_ci ucs2 143 Yes 8
  9713. ucs2_persian_ci ucs2 144 Yes 8
  9714. ucs2_esperanto_ci ucs2 145 Yes 8
  9715. ucs2_hungarian_ci ucs2 146 Yes 8
  9716. cp866_general_ci cp866 36 Yes 0
  9717. cp866_bin cp866 68 0
  9718. keybcs2_general_ci keybcs2 37 Yes 0
  9719. keybcs2_bin keybcs2 73 0
  9720. macce_general_ci macce 38 Yes 0
  9721. macce_bin macce 43 0
  9722. macroman_general_ci macroman 39 Yes 0
  9723. macroman_bin macroman 53 0
  9724. cp852_general_ci cp852 40 Yes 0
  9725. cp852_bin cp852 81 0
  9726. latin7_estonian_cs latin7 20 0
  9727. latin7_general_ci latin7 41 Yes 0
  9728. latin7_general_cs latin7 42 0
  9729. latin7_bin latin7 79 0
  9730. cp1251_bulgarian_ci cp1251 14 0
  9731. cp1251_ukrainian_ci cp1251 23 0
  9732. cp1251_bin cp1251 50 0
  9733. cp1251_general_ci cp1251 51 Yes 0
  9734. cp1251_general_cs cp1251 52 0
  9735. cp1256_general_ci cp1256 57 Yes 0
  9736. cp1256_bin cp1256 67 0
  9737. cp1257_lithuanian_ci cp1257 29 0
  9738. cp1257_bin cp1257 58 0
  9739. cp1257_general_ci cp1257 59 Yes 0
  9740. binary binary 63 Yes Yes 1
  9741. geostd8_general_ci geostd8 92 Yes 0
  9742. geostd8_bin geostd8 93 0
  9743. cp932_japanese_ci cp932 95 Yes Yes 1
  9744. cp932_bin cp932 96 Yes 1
  9745. eucjpms_japanese_ci eucjpms 97 Yes Yes 1
  9746. eucjpms_bin eucjpms 98 Yes 1
  9747. Testcase 3.2.3.3:
  9748. --------------------------------------------------------------------------------
  9749. Testcase 3.2.4.1:
  9750. --------------------------------------------------------------------------------
  9751. USE information_schema;
  9752. DESC collation_character_set_applicability;
  9753. Field Type Null Key Default Extra
  9754. COLLATION_NAME varchar(64) NO
  9755. CHARACTER_SET_NAME varchar(64) NO
  9756. SHOW CREATE TABLE collation_character_set_applicability;
  9757. Table Create Table
  9758. COLLATION_CHARACTER_SET_APPLICABILITY CREATE TEMPORARY TABLE `COLLATION_CHARACTER_SET_APPLICABILITY` (
  9759. `COLLATION_NAME` varchar(64) NOT NULL DEFAULT '',
  9760. `CHARACTER_SET_NAME` varchar(64) NOT NULL DEFAULT ''
  9761. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  9762. SELECT COUNT(*) FROM information_schema.columns
  9763. WHERE table_schema = 'information_schema'
  9764. AND table_name = 'collation_character_set_applicability'
  9765. ORDER BY ordinal_position;
  9766. COUNT(*)
  9767. 2
  9768. SELECT * FROM information_schema.columns
  9769. WHERE table_schema = 'information_schema'
  9770. AND table_name = 'collation_character_set_applicability'
  9771. ORDER BY ordinal_position;
  9772. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  9773. NULL information_schema collation_character_set_applicability COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9774. NULL information_schema collation_character_set_applicability CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9775. Testcase 3.2.4.2:
  9776. --------------------------------------------------------------------------------
  9777. SELECT * FROM collation_character_set_applicability
  9778. where collation_name <> 'utf8_general_cs';
  9779. COLLATION_NAME CHARACTER_SET_NAME
  9780. big5_chinese_ci big5
  9781. big5_bin big5
  9782. dec8_swedish_ci dec8
  9783. dec8_bin dec8
  9784. cp850_general_ci cp850
  9785. cp850_bin cp850
  9786. hp8_english_ci hp8
  9787. hp8_bin hp8
  9788. koi8r_general_ci koi8r
  9789. koi8r_bin koi8r
  9790. latin1_german1_ci latin1
  9791. latin1_swedish_ci latin1
  9792. latin1_danish_ci latin1
  9793. latin1_german2_ci latin1
  9794. latin1_bin latin1
  9795. latin1_general_ci latin1
  9796. latin1_general_cs latin1
  9797. latin1_spanish_ci latin1
  9798. latin2_czech_cs latin2
  9799. latin2_general_ci latin2
  9800. latin2_hungarian_ci latin2
  9801. latin2_croatian_ci latin2
  9802. latin2_bin latin2
  9803. swe7_swedish_ci swe7
  9804. swe7_bin swe7
  9805. ascii_general_ci ascii
  9806. ascii_bin ascii
  9807. ujis_japanese_ci ujis
  9808. ujis_bin ujis
  9809. sjis_japanese_ci sjis
  9810. sjis_bin sjis
  9811. hebrew_general_ci hebrew
  9812. hebrew_bin hebrew
  9813. filename filename
  9814. tis620_thai_ci tis620
  9815. tis620_bin tis620
  9816. euckr_korean_ci euckr
  9817. euckr_bin euckr
  9818. koi8u_general_ci koi8u
  9819. koi8u_bin koi8u
  9820. gb2312_chinese_ci gb2312
  9821. gb2312_bin gb2312
  9822. greek_general_ci greek
  9823. greek_bin greek
  9824. cp1250_general_ci cp1250
  9825. cp1250_czech_cs cp1250
  9826. cp1250_croatian_ci cp1250
  9827. cp1250_bin cp1250
  9828. cp1250_polish_ci cp1250
  9829. gbk_chinese_ci gbk
  9830. gbk_bin gbk
  9831. latin5_turkish_ci latin5
  9832. latin5_bin latin5
  9833. armscii8_general_ci armscii8
  9834. armscii8_bin armscii8
  9835. utf8_general_ci utf8
  9836. utf8_bin utf8
  9837. utf8_unicode_ci utf8
  9838. utf8_icelandic_ci utf8
  9839. utf8_latvian_ci utf8
  9840. utf8_romanian_ci utf8
  9841. utf8_slovenian_ci utf8
  9842. utf8_polish_ci utf8
  9843. utf8_estonian_ci utf8
  9844. utf8_spanish_ci utf8
  9845. utf8_swedish_ci utf8
  9846. utf8_turkish_ci utf8
  9847. utf8_czech_ci utf8
  9848. utf8_danish_ci utf8
  9849. utf8_lithuanian_ci utf8
  9850. utf8_slovak_ci utf8
  9851. utf8_spanish2_ci utf8
  9852. utf8_roman_ci utf8
  9853. utf8_persian_ci utf8
  9854. utf8_esperanto_ci utf8
  9855. utf8_hungarian_ci utf8
  9856. ucs2_general_ci ucs2
  9857. ucs2_bin ucs2
  9858. ucs2_unicode_ci ucs2
  9859. ucs2_icelandic_ci ucs2
  9860. ucs2_latvian_ci ucs2
  9861. ucs2_romanian_ci ucs2
  9862. ucs2_slovenian_ci ucs2
  9863. ucs2_polish_ci ucs2
  9864. ucs2_estonian_ci ucs2
  9865. ucs2_spanish_ci ucs2
  9866. ucs2_swedish_ci ucs2
  9867. ucs2_turkish_ci ucs2
  9868. ucs2_czech_ci ucs2
  9869. ucs2_danish_ci ucs2
  9870. ucs2_lithuanian_ci ucs2
  9871. ucs2_slovak_ci ucs2
  9872. ucs2_spanish2_ci ucs2
  9873. ucs2_roman_ci ucs2
  9874. ucs2_persian_ci ucs2
  9875. ucs2_esperanto_ci ucs2
  9876. ucs2_hungarian_ci ucs2
  9877. cp866_general_ci cp866
  9878. cp866_bin cp866
  9879. keybcs2_general_ci keybcs2
  9880. keybcs2_bin keybcs2
  9881. macce_general_ci macce
  9882. macce_bin macce
  9883. macroman_general_ci macroman
  9884. macroman_bin macroman
  9885. cp852_general_ci cp852
  9886. cp852_bin cp852
  9887. latin7_estonian_cs latin7
  9888. latin7_general_ci latin7
  9889. latin7_general_cs latin7
  9890. latin7_bin latin7
  9891. cp1251_bulgarian_ci cp1251
  9892. cp1251_ukrainian_ci cp1251
  9893. cp1251_bin cp1251
  9894. cp1251_general_ci cp1251
  9895. cp1251_general_cs cp1251
  9896. cp1256_general_ci cp1256
  9897. cp1256_bin cp1256
  9898. cp1257_lithuanian_ci cp1257
  9899. cp1257_bin cp1257
  9900. cp1257_general_ci cp1257
  9901. binary binary
  9902. geostd8_general_ci geostd8
  9903. geostd8_bin geostd8
  9904. cp932_japanese_ci cp932
  9905. cp932_bin cp932
  9906. eucjpms_japanese_ci eucjpms
  9907. eucjpms_bin eucjpms
  9908. Testcase 3.2.4.3:
  9909. --------------------------------------------------------------------------------
  9910. Testcase 3.2.5.1:
  9911. --------------------------------------------------------------------------------
  9912. USE information_schema;
  9913. DESC column_privileges;
  9914. Field Type Null Key Default Extra
  9915. GRANTEE varchar(81) NO
  9916. TABLE_CATALOG varchar(4096) YES NULL
  9917. TABLE_SCHEMA varchar(64) NO
  9918. TABLE_NAME varchar(64) NO
  9919. COLUMN_NAME varchar(64) NO
  9920. PRIVILEGE_TYPE varchar(64) NO
  9921. IS_GRANTABLE varchar(3) NO
  9922. SHOW CREATE TABLE column_privileges;
  9923. Table Create Table
  9924. COLUMN_PRIVILEGES CREATE TEMPORARY TABLE `COLUMN_PRIVILEGES` (
  9925. `GRANTEE` varchar(81) NOT NULL DEFAULT '',
  9926. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  9927. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  9928. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  9929. `COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
  9930. `PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
  9931. `IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''
  9932. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  9933. SELECT COUNT(*) FROM information_schema.columns
  9934. WHERE table_schema = 'information_schema'
  9935. AND table_name = 'column_privileges'
  9936. ORDER BY ordinal_position;
  9937. COUNT(*)
  9938. 7
  9939. SELECT * FROM information_schema.columns
  9940. WHERE table_schema = 'information_schema'
  9941. AND table_name = 'column_privileges'
  9942. ORDER BY ordinal_position;
  9943. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  9944. NULL information_schema column_privileges GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  9945. NULL information_schema column_privileges TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9946. NULL information_schema column_privileges TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9947. NULL information_schema column_privileges TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9948. NULL information_schema column_privileges COLUMN_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9949. NULL information_schema column_privileges PRIVILEGE_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9950. NULL information_schema column_privileges IS_GRANTABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9951. Testcase 3.2.5.2 + 3.2.5.3 + 3.2.5.4:
  9952. --------------------------------------------------------------------------------
  9953. CREATE USER 'user_1'@'localhost';
  9954. CREATE USER 'user_2'@'localhost';
  9955. CREATE USER 'user_3'@'localhost';
  9956. DROP DATABASE IF EXISTS db_datadict;
  9957. CREATE DATABASE db_datadict;
  9958. USE db_datadict;
  9959. CREATE TABLE db_datadict.res_t40502 (f1 INT, f2 DECIMAL, f3 TEXT);
  9960. GRANT SELECT(f1, f3) ON db_datadict.res_t40502 TO 'user_1'@'localhost';
  9961. GRANT INSERT(f1) ON db_datadict.res_t40502 TO 'user_1'@'localhost';
  9962. GRANT UPDATE(f2) ON db_datadict.res_t40502 TO 'user_1'@'localhost';
  9963. GRANT SELECT(f2) ON db_datadict.res_t40502 TO 'user_2'@'localhost';
  9964. GRANT INSERT, SELECT ON db_datadict.res_t40502 TO 'user_3'@'localhost';
  9965. GRANT SELECT(f3) ON db_datadict.res_t40502 TO 'user_3'@'localhost';
  9966. GRANT INSERT, SELECT ON db_datadict.res_t40502 TO 'user_3'@'localhost' WITH GRANT OPTION;
  9967. GRANT ALL ON db_datadict.* TO 'user_3'@'localhost';
  9968. SELECT * FROM information_schema.column_privileges
  9969. WHERE grantee LIKE "'user%"
  9970. ORDER BY grantee, table_name, column_name, privilege_type;
  9971. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9972. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 INSERT NO
  9973. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 SELECT NO
  9974. 'user_1'@'localhost' NULL db_datadict res_t40502 f2 UPDATE NO
  9975. 'user_1'@'localhost' NULL db_datadict res_t40502 f3 SELECT NO
  9976. 'user_2'@'localhost' NULL db_datadict res_t40502 f2 SELECT NO
  9977. 'user_3'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  9978. FIXME: Check it is correct that the following GRANT changes ALL privs that user_1 has
  9979. -------------------------------------------------------------------------------------
  9980. GRANT UPDATE(f3) ON db_datadict.res_t40502 TO 'user_1'@'localhost' WITH GRANT OPTION;
  9981. SELECT * FROM information_schema.column_privileges
  9982. WHERE grantee LIKE "'user%"
  9983. ORDER BY grantee, table_name, column_name, privilege_type;
  9984. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9985. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 INSERT YES
  9986. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 SELECT YES
  9987. 'user_1'@'localhost' NULL db_datadict res_t40502 f2 UPDATE YES
  9988. 'user_1'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  9989. 'user_1'@'localhost' NULL db_datadict res_t40502 f3 UPDATE YES
  9990. 'user_2'@'localhost' NULL db_datadict res_t40502 f2 SELECT NO
  9991. 'user_3'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  9992. FLUSH PRIVILEGES;
  9993. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  9994. SELECT * FROM information_schema.column_privileges
  9995. WHERE grantee LIKE "'user%"
  9996. ORDER BY grantee, table_name, column_name, privilege_type;
  9997. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9998. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 INSERT YES
  9999. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 SELECT YES
  10000. 'user_1'@'localhost' NULL db_datadict res_t40502 f2 UPDATE YES
  10001. 'user_1'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  10002. 'user_1'@'localhost' NULL db_datadict res_t40502 f3 UPDATE YES
  10003. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  10004. SELECT * FROM information_schema.column_privileges
  10005. WHERE grantee LIKE "'user%"
  10006. ORDER BY grantee, table_name, column_name, privilege_type;
  10007. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  10008. 'user_2'@'localhost' NULL db_datadict res_t40502 f2 SELECT NO
  10009. connect(localhost,user_3,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  10010. FIXME: check it is correct that granted TABLES doesn_t occur in COLUMN_PRIVILEGES
  10011. ---------------------------------------------------------------------------------
  10012. SELECT * FROM information_schema.table_privileges WHERE grantee LIKE "'user%";
  10013. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  10014. 'user_3'@'localhost' NULL db_datadict res_t40502 SELECT YES
  10015. 'user_3'@'localhost' NULL db_datadict res_t40502 INSERT YES
  10016. SELECT * FROM information_schema.schema_privileges WHERE grantee LIKE "'user%";
  10017. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  10018. 'user_3'@'localhost' NULL db_datadict SELECT NO
  10019. 'user_3'@'localhost' NULL db_datadict INSERT NO
  10020. 'user_3'@'localhost' NULL db_datadict UPDATE NO
  10021. 'user_3'@'localhost' NULL db_datadict DELETE NO
  10022. 'user_3'@'localhost' NULL db_datadict CREATE NO
  10023. 'user_3'@'localhost' NULL db_datadict DROP NO
  10024. 'user_3'@'localhost' NULL db_datadict REFERENCES NO
  10025. 'user_3'@'localhost' NULL db_datadict INDEX NO
  10026. 'user_3'@'localhost' NULL db_datadict ALTER NO
  10027. 'user_3'@'localhost' NULL db_datadict CREATE TEMPORARY TABLES NO
  10028. 'user_3'@'localhost' NULL db_datadict LOCK TABLES NO
  10029. 'user_3'@'localhost' NULL db_datadict EXECUTE NO
  10030. 'user_3'@'localhost' NULL db_datadict CREATE VIEW NO
  10031. 'user_3'@'localhost' NULL db_datadict SHOW VIEW NO
  10032. 'user_3'@'localhost' NULL db_datadict CREATE ROUTINE NO
  10033. 'user_3'@'localhost' NULL db_datadict ALTER ROUTINE NO
  10034. 'user_3'@'localhost' NULL db_datadict EVENT NO
  10035. 'user_3'@'localhost' NULL db_datadict TRIGGER NO
  10036. SELECT * FROM information_schema.column_privileges
  10037. WHERE grantee LIKE "'user%"
  10038. ORDER BY grantee, table_name, column_name, privilege_type;
  10039. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  10040. 'user_3'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  10041. GRANT SELECT(f1, f3) ON db_datadict.res_t40502 TO 'user_2'@'localhost';
  10042. FIXME: check whether it is intended that *my* grants to others are *NOT* shown here
  10043. -----------------------------------------------------------------------------------
  10044. SELECT * FROM information_schema.column_privileges
  10045. WHERE grantee LIKE "'user%"
  10046. ORDER BY grantee, table_name, column_name, privilege_type;
  10047. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  10048. 'user_3'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  10049. user_2@localhost db_datadict
  10050. SELECT * FROM information_schema.column_privileges
  10051. WHERE grantee LIKE "'user%"
  10052. ORDER BY grantee, table_name, column_name, privilege_type;
  10053. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  10054. 'user_2'@'localhost' NULL db_datadict res_t40502 f1 SELECT NO
  10055. 'user_2'@'localhost' NULL db_datadict res_t40502 f2 SELECT NO
  10056. 'user_2'@'localhost' NULL db_datadict res_t40502 f3 SELECT NO
  10057. root@localhost db_datadict
  10058. DROP TABLE IF EXISTS db_datadict.res_t40502;
  10059. DROP DATABASE IF EXISTS db_datadict;
  10060. DROP USER 'user_1'@'localhost';
  10061. DROP USER 'user_2'@'localhost';
  10062. DROP USER 'user_3'@'localhost';
  10063. Testcase 3.2.6.1:
  10064. --------------------------------------------------------------------------------
  10065. USE information_schema;
  10066. DESC columns;
  10067. Field Type Null Key Default Extra
  10068. TABLE_CATALOG varchar(4096) YES NULL
  10069. TABLE_SCHEMA varchar(64) NO
  10070. TABLE_NAME varchar(64) NO
  10071. COLUMN_NAME varchar(64) NO
  10072. ORDINAL_POSITION bigint(21) unsigned NO 0
  10073. COLUMN_DEFAULT longtext YES NULL
  10074. IS_NULLABLE varchar(3) NO
  10075. DATA_TYPE varchar(64) NO
  10076. CHARACTER_MAXIMUM_LENGTH bigint(21) unsigned YES NULL
  10077. CHARACTER_OCTET_LENGTH bigint(21) unsigned YES NULL
  10078. NUMERIC_PRECISION bigint(21) unsigned YES NULL
  10079. NUMERIC_SCALE bigint(21) unsigned YES NULL
  10080. CHARACTER_SET_NAME varchar(64) YES NULL
  10081. COLLATION_NAME varchar(64) YES NULL
  10082. COLUMN_TYPE longtext NO NULL
  10083. COLUMN_KEY varchar(3) NO
  10084. EXTRA varchar(27) NO
  10085. PRIVILEGES varchar(80) NO
  10086. COLUMN_COMMENT varchar(255) NO
  10087. SHOW CREATE TABLE columns;
  10088. Table Create Table
  10089. COLUMNS CREATE TEMPORARY TABLE `COLUMNS` (
  10090. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  10091. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  10092. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  10093. `COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
  10094. `ORDINAL_POSITION` bigint(21) unsigned NOT NULL DEFAULT '0',
  10095. `COLUMN_DEFAULT` longtext,
  10096. `IS_NULLABLE` varchar(3) NOT NULL DEFAULT '',
  10097. `DATA_TYPE` varchar(64) NOT NULL DEFAULT '',
  10098. `CHARACTER_MAXIMUM_LENGTH` bigint(21) unsigned DEFAULT NULL,
  10099. `CHARACTER_OCTET_LENGTH` bigint(21) unsigned DEFAULT NULL,
  10100. `NUMERIC_PRECISION` bigint(21) unsigned DEFAULT NULL,
  10101. `NUMERIC_SCALE` bigint(21) unsigned DEFAULT NULL,
  10102. `CHARACTER_SET_NAME` varchar(64) DEFAULT NULL,
  10103. `COLLATION_NAME` varchar(64) DEFAULT NULL,
  10104. `COLUMN_TYPE` longtext NOT NULL,
  10105. `COLUMN_KEY` varchar(3) NOT NULL DEFAULT '',
  10106. `EXTRA` varchar(27) NOT NULL DEFAULT '',
  10107. `PRIVILEGES` varchar(80) NOT NULL DEFAULT '',
  10108. `COLUMN_COMMENT` varchar(255) NOT NULL DEFAULT ''
  10109. ) ENGINE=MyISAM DEFAULT CHARSET=utf8
  10110. SELECT COUNT(*) FROM information_schema.columns
  10111. WHERE table_schema = 'information_schema'
  10112. AND table_name = 'columns'
  10113. ORDER BY ordinal_position;
  10114. COUNT(*)
  10115. 19
  10116. SELECT * FROM information_schema.columns
  10117. WHERE table_schema = 'information_schema'
  10118. AND table_name = 'columns'
  10119. ORDER BY ordinal_position;
  10120. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  10121. NULL information_schema columns TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10122. NULL information_schema columns TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10123. NULL information_schema columns TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10124. NULL information_schema columns COLUMN_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10125. NULL information_schema columns ORDINAL_POSITION 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10126. NULL information_schema columns COLUMN_DEFAULT 6 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10127. NULL information_schema columns IS_NULLABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10128. NULL information_schema columns DATA_TYPE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10129. NULL information_schema columns CHARACTER_MAXIMUM_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10130. NULL information_schema columns CHARACTER_OCTET_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10131. NULL information_schema columns NUMERIC_PRECISION 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10132. NULL information_schema columns NUMERIC_SCALE 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10133. NULL information_schema columns CHARACTER_SET_NAME 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10134. NULL information_schema columns COLLATION_NAME 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10135. NULL information_schema columns COLUMN_TYPE 15 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10136. NULL information_schema columns COLUMN_KEY 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10137. NULL information_schema columns EXTRA 17 NO varchar 27 81 NULL NULL utf8 utf8_general_ci varchar(27) select
  10138. NULL information_schema columns PRIVILEGES 18 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10139. NULL information_schema columns COLUMN_COMMENT 19 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  10140. Testcase 3.2.6.2 + 3.2.6.3:
  10141. --------------------------------------------------------------------------------
  10142. DROP DATABASE IF EXISTS db_datadict;
  10143. CREATE DATABASE db_datadict;
  10144. CREATE USER 'user_1'@'localhost';
  10145. CREATE USER 'user_2'@'localhost';
  10146. USE db_datadict;
  10147. create table t_6_406001(f1 char(10), f2 text, f3 date, f4 int);
  10148. grant select(f1, f2) on db_datadict.t_6_406001 to 'user_1'@'localhost';
  10149. create table t_6_406002(f1 char(10), f2 text, f3 date, f4 int);
  10150. GRANT INSERT(f1, f2) ON db_datadict.t_6_406002 TO 'user_2'@'localhost';
  10151. FLUSH PRIVILEGES;
  10152. SELECT * FROM information_schema.columns
  10153. ORDER BY table_schema, table_name, ordinal_position;
  10154. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  10155. NULL db_datadict t_6_406001 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
  10156. NULL db_datadict t_6_406001 f2 2 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  10157. NULL db_datadict t_6_406001 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10158. NULL db_datadict t_6_406001 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10159. NULL db_datadict t_6_406002 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
  10160. NULL db_datadict t_6_406002 f2 2 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  10161. NULL db_datadict t_6_406002 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10162. NULL db_datadict t_6_406002 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10163. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10164. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10165. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  10166. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  10167. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10168. NULL information_schema COLLATIONS CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10169. NULL information_schema COLLATIONS ID 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(11) select
  10170. NULL information_schema COLLATIONS IS_DEFAULT 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10171. NULL information_schema COLLATIONS IS_COMPILED 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10172. NULL information_schema COLLATIONS SORTLEN 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  10173. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10174. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10175. NULL information_schema COLUMNS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10176. NULL information_schema COLUMNS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10177. NULL information_schema COLUMNS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10178. NULL information_schema COLUMNS COLUMN_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10179. NULL information_schema COLUMNS ORDINAL_POSITION 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10180. NULL information_schema COLUMNS COLUMN_DEFAULT 6 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10181. NULL information_schema COLUMNS IS_NULLABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10182. NULL information_schema COLUMNS DATA_TYPE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10183. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10184. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10185. NULL information_schema COLUMNS NUMERIC_PRECISION 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10186. NULL information_schema COLUMNS NUMERIC_SCALE 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10187. NULL information_schema COLUMNS CHARACTER_SET_NAME 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10188. NULL information_schema COLUMNS COLLATION_NAME 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10189. NULL information_schema COLUMNS COLUMN_TYPE 15 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10190. NULL information_schema COLUMNS COLUMN_KEY 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10191. NULL information_schema COLUMNS EXTRA 17 NO varchar 27 81 NULL NULL utf8 utf8_general_ci varchar(27) select
  10192. NULL information_schema COLUMNS PRIVILEGES 18 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10193. NULL information_schema COLUMNS COLUMN_COMMENT 19 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  10194. NULL information_schema COLUMN_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  10195. NULL information_schema COLUMN_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10196. NULL information_schema COLUMN_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10197. NULL information_schema COLUMN_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10198. NULL information_schema COLUMN_PRIVILEGES COLUMN_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10199. NULL information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10200. NULL information_schema COLUMN_PRIVILEGES IS_GRANTABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10201. NULL information_schema ENGINES ENGINE 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10202. NULL information_schema ENGINES SUPPORT 2 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10203. NULL information_schema ENGINES COMMENT 3 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10204. NULL information_schema ENGINES TRANSACTIONS 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10205. NULL information_schema ENGINES XA 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10206. NULL information_schema ENGINES SAVEPOINTS 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10207. NULL information_schema EVENTS EVENT_CATALOG 1 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10208. NULL information_schema EVENTS EVENT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10209. NULL information_schema EVENTS EVENT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10210. NULL information_schema EVENTS DEFINER 4 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  10211. NULL information_schema EVENTS TIME_ZONE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10212. NULL information_schema EVENTS EVENT_BODY 6 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10213. NULL information_schema EVENTS EVENT_DEFINITION 7 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10214. NULL information_schema EVENTS EVENT_TYPE 8 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  10215. NULL information_schema EVENTS EXECUTE_AT 9 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10216. NULL information_schema EVENTS INTERVAL_VALUE 10 NULL YES varchar 256 768 NULL NULL utf8 utf8_general_ci varchar(256) select
  10217. NULL information_schema EVENTS INTERVAL_FIELD 11 NULL YES varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  10218. NULL information_schema EVENTS SQL_MODE 12 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10219. NULL information_schema EVENTS STARTS 13 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10220. NULL information_schema EVENTS ENDS 14 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10221. NULL information_schema EVENTS STATUS 15 NO varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  10222. NULL information_schema EVENTS ON_COMPLETION 16 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  10223. NULL information_schema EVENTS CREATED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  10224. NULL information_schema EVENTS LAST_ALTERED 18 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  10225. NULL information_schema EVENTS LAST_EXECUTED 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10226. NULL information_schema EVENTS EVENT_COMMENT 20 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10227. NULL information_schema EVENTS ORIGINATOR 21 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  10228. NULL information_schema EVENTS CHARACTER_SET_CLIENT 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10229. NULL information_schema EVENTS COLLATION_CONNECTION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10230. NULL information_schema EVENTS DATABASE_COLLATION 24 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10231. NULL information_schema FILES FILE_ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10232. NULL information_schema FILES FILE_NAME 2 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10233. NULL information_schema FILES FILE_TYPE 3 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10234. NULL information_schema FILES TABLESPACE_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10235. NULL information_schema FILES TABLE_CATALOG 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10236. NULL information_schema FILES TABLE_SCHEMA 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10237. NULL information_schema FILES TABLE_NAME 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10238. NULL information_schema FILES LOGFILE_GROUP_NAME 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10239. NULL information_schema FILES LOGFILE_GROUP_NUMBER 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10240. NULL information_schema FILES ENGINE 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10241. NULL information_schema FILES FULLTEXT_KEYS 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10242. NULL information_schema FILES DELETED_ROWS 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10243. NULL information_schema FILES UPDATE_COUNT 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10244. NULL information_schema FILES FREE_EXTENTS 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10245. NULL information_schema FILES TOTAL_EXTENTS 15 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10246. NULL information_schema FILES EXTENT_SIZE 16 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10247. NULL information_schema FILES INITIAL_SIZE 17 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10248. NULL information_schema FILES MAXIMUM_SIZE 18 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10249. NULL information_schema FILES AUTOEXTEND_SIZE 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10250. NULL information_schema FILES CREATION_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10251. NULL information_schema FILES LAST_UPDATE_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10252. NULL information_schema FILES LAST_ACCESS_TIME 22 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10253. NULL information_schema FILES RECOVER_TIME 23 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10254. NULL information_schema FILES TRANSACTION_COUNTER 24 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10255. NULL information_schema FILES VERSION 25 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10256. NULL information_schema FILES ROW_FORMAT 26 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  10257. NULL information_schema FILES TABLE_ROWS 27 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10258. NULL information_schema FILES AVG_ROW_LENGTH 28 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10259. NULL information_schema FILES DATA_LENGTH 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10260. NULL information_schema FILES MAX_DATA_LENGTH 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10261. NULL information_schema FILES INDEX_LENGTH 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10262. NULL information_schema FILES DATA_FREE 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10263. NULL information_schema FILES CREATE_TIME 33 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10264. NULL information_schema FILES UPDATE_TIME 34 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10265. NULL information_schema FILES CHECK_TIME 35 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10266. NULL information_schema FILES CHECKSUM 36 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10267. NULL information_schema FILES STATUS 37 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10268. NULL information_schema FILES EXTRA 38 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  10269. NULL information_schema GLOBAL_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10270. NULL information_schema GLOBAL_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  10271. NULL information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10272. NULL information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  10273. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10274. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10275. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10276. NULL information_schema KEY_COLUMN_USAGE TABLE_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10277. NULL information_schema KEY_COLUMN_USAGE TABLE_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10278. NULL information_schema KEY_COLUMN_USAGE TABLE_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10279. NULL information_schema KEY_COLUMN_USAGE COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10280. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  10281. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(10) select
  10282. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10283. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10284. NULL information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME 12 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10285. NULL information_schema PARTITIONS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10286. NULL information_schema PARTITIONS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10287. NULL information_schema PARTITIONS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10288. NULL information_schema PARTITIONS PARTITION_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10289. NULL information_schema PARTITIONS SUBPARTITION_NAME 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10290. NULL information_schema PARTITIONS PARTITION_ORDINAL_POSITION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10291. NULL information_schema PARTITIONS SUBPARTITION_ORDINAL_POSITION 7 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10292. NULL information_schema PARTITIONS PARTITION_METHOD 8 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  10293. NULL information_schema PARTITIONS SUBPARTITION_METHOD 9 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  10294. NULL information_schema PARTITIONS PARTITION_EXPRESSION 10 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10295. NULL information_schema PARTITIONS SUBPARTITION_EXPRESSION 11 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10296. NULL information_schema PARTITIONS PARTITION_DESCRIPTION 12 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10297. NULL information_schema PARTITIONS TABLE_ROWS 13 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10298. NULL information_schema PARTITIONS AVG_ROW_LENGTH 14 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10299. NULL information_schema PARTITIONS DATA_LENGTH 15 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10300. NULL information_schema PARTITIONS MAX_DATA_LENGTH 16 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10301. NULL information_schema PARTITIONS INDEX_LENGTH 17 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10302. NULL information_schema PARTITIONS DATA_FREE 18 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10303. NULL information_schema PARTITIONS CREATE_TIME 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10304. NULL information_schema PARTITIONS UPDATE_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10305. NULL information_schema PARTITIONS CHECK_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10306. NULL information_schema PARTITIONS CHECKSUM 22 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10307. NULL information_schema PARTITIONS PARTITION_COMMENT 23 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10308. NULL information_schema PARTITIONS NODEGROUP 24 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  10309. NULL information_schema PARTITIONS TABLESPACE_NAME 25 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10310. NULL information_schema PLUGINS PLUGIN_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10311. NULL information_schema PLUGINS PLUGIN_VERSION 2 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10312. NULL information_schema PLUGINS PLUGIN_STATUS 3 NO varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  10313. NULL information_schema PLUGINS PLUGIN_TYPE 4 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10314. NULL information_schema PLUGINS PLUGIN_TYPE_VERSION 5 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10315. NULL information_schema PLUGINS PLUGIN_LIBRARY 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10316. NULL information_schema PLUGINS PLUGIN_LIBRARY_VERSION 7 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10317. NULL information_schema PLUGINS PLUGIN_AUTHOR 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10318. NULL information_schema PLUGINS PLUGIN_DESCRIPTION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10319. NULL information_schema PLUGINS PLUGIN_LICENSE 10 NULL YES varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10320. NULL information_schema PROCESSLIST ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10321. NULL information_schema PROCESSLIST USER 2 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10322. NULL information_schema PROCESSLIST HOST 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10323. NULL information_schema PROCESSLIST DB 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10324. NULL information_schema PROCESSLIST COMMAND 5 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10325. NULL information_schema PROCESSLIST TIME 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(7) select
  10326. NULL information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10327. NULL information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10328. NULL information_schema PROFILING QUERY_ID 1 0 NO int NULL NULL 10 0 NULL NULL int(20) select
  10329. NULL information_schema PROFILING SEQ 2 0 NO int NULL NULL 10 0 NULL NULL int(20) select
  10330. NULL information_schema PROFILING STATE 3 NO varchar 30 90 NULL NULL utf8 utf8_general_ci varchar(30) select
  10331. NULL information_schema PROFILING DURATION 4 0.000000 NO decimal NULL NULL 9 6 NULL NULL decimal(9,6) select
  10332. NULL information_schema PROFILING CPU_USER 5 NULL YES decimal NULL NULL 9 6 NULL NULL decimal(9,6) select
  10333. NULL information_schema PROFILING CPU_SYSTEM 6 NULL YES decimal NULL NULL 9 6 NULL NULL decimal(9,6) select
  10334. NULL information_schema PROFILING CONTEXT_VOLUNTARY 7 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  10335. NULL information_schema PROFILING CONTEXT_INVOLUNTARY 8 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  10336. NULL information_schema PROFILING BLOCK_OPS_IN 9 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  10337. NULL information_schema PROFILING BLOCK_OPS_OUT 10 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  10338. NULL information_schema PROFILING MESSAGES_SENT 11 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  10339. NULL information_schema PROFILING MESSAGES_RECEIVED 12 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  10340. NULL information_schema PROFILING PAGE_FAULTS_MAJOR 13 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  10341. NULL information_schema PROFILING PAGE_FAULTS_MINOR 14 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  10342. NULL information_schema PROFILING SWAPS 15 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  10343. NULL information_schema PROFILING SOURCE_FUNCTION 16 NULL YES varchar 30 90 NULL NULL utf8 utf8_general_ci varchar(30) select
  10344. NULL information_schema PROFILING SOURCE_FILE 17 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10345. NULL information_schema PROFILING SOURCE_LINE 18 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  10346. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10347. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10348. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10349. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10350. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10351. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10352. NULL information_schema REFERENTIAL_CONSTRAINTS MATCH_OPTION 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10353. NULL information_schema REFERENTIAL_CONSTRAINTS UPDATE_RULE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10354. NULL information_schema REFERENTIAL_CONSTRAINTS DELETE_RULE 9 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10355. NULL information_schema REFERENTIAL_CONSTRAINTS TABLE_NAME 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10356. NULL information_schema REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME 11 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10357. NULL information_schema ROUTINES SPECIFIC_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10358. NULL information_schema ROUTINES ROUTINE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10359. NULL information_schema ROUTINES ROUTINE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10360. NULL information_schema ROUTINES ROUTINE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10361. NULL information_schema ROUTINES ROUTINE_TYPE 5 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  10362. NULL information_schema ROUTINES DTD_IDENTIFIER 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10363. NULL information_schema ROUTINES ROUTINE_BODY 7 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10364. NULL information_schema ROUTINES ROUTINE_DEFINITION 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10365. NULL information_schema ROUTINES EXTERNAL_NAME 9 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10366. NULL information_schema ROUTINES EXTERNAL_LANGUAGE 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10367. NULL information_schema ROUTINES PARAMETER_STYLE 11 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10368. NULL information_schema ROUTINES IS_DETERMINISTIC 12 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10369. NULL information_schema ROUTINES SQL_DATA_ACCESS 13 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10370. NULL information_schema ROUTINES SQL_PATH 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10371. NULL information_schema ROUTINES SECURITY_TYPE 15 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  10372. NULL information_schema ROUTINES CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  10373. NULL information_schema ROUTINES LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  10374. NULL information_schema ROUTINES SQL_MODE 18 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10375. NULL information_schema ROUTINES ROUTINE_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10376. NULL information_schema ROUTINES DEFINER 20 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  10377. NULL information_schema ROUTINES CHARACTER_SET_CLIENT 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10378. NULL information_schema ROUTINES COLLATION_CONNECTION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10379. NULL information_schema ROUTINES DATABASE_COLLATION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10380. NULL information_schema SCHEMATA CATALOG_NAME 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10381. NULL information_schema SCHEMATA SCHEMA_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10382. NULL information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10383. NULL information_schema SCHEMATA DEFAULT_COLLATION_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10384. NULL information_schema SCHEMATA SQL_PATH 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10385. NULL information_schema SCHEMA_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  10386. NULL information_schema SCHEMA_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10387. NULL information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10388. NULL information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10389. NULL information_schema SCHEMA_PRIVILEGES IS_GRANTABLE 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10390. NULL information_schema SESSION_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10391. NULL information_schema SESSION_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  10392. NULL information_schema SESSION_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10393. NULL information_schema SESSION_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  10394. NULL information_schema STATISTICS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10395. NULL information_schema STATISTICS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10396. NULL information_schema STATISTICS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10397. NULL information_schema STATISTICS NON_UNIQUE 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(1) select
  10398. NULL information_schema STATISTICS INDEX_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10399. NULL information_schema STATISTICS INDEX_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10400. NULL information_schema STATISTICS SEQ_IN_INDEX 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(2) select
  10401. NULL information_schema STATISTICS COLUMN_NAME 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10402. NULL information_schema STATISTICS COLLATION 9 NULL YES varchar 1 3 NULL NULL utf8 utf8_general_ci varchar(1) select
  10403. NULL information_schema STATISTICS CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10404. NULL information_schema STATISTICS SUB_PART 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(3) select
  10405. NULL information_schema STATISTICS PACKED 12 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  10406. NULL information_schema STATISTICS NULLABLE 13 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10407. NULL information_schema STATISTICS INDEX_TYPE 14 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10408. NULL information_schema STATISTICS COMMENT 15 NULL YES varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10409. NULL information_schema TABLES TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10410. NULL information_schema TABLES TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10411. NULL information_schema TABLES TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10412. NULL information_schema TABLES TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10413. NULL information_schema TABLES ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10414. NULL information_schema TABLES VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10415. NULL information_schema TABLES ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  10416. NULL information_schema TABLES TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10417. NULL information_schema TABLES AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10418. NULL information_schema TABLES DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10419. NULL information_schema TABLES MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10420. NULL information_schema TABLES INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10421. NULL information_schema TABLES DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10422. NULL information_schema TABLES AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10423. NULL information_schema TABLES CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10424. NULL information_schema TABLES UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10425. NULL information_schema TABLES CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10426. NULL information_schema TABLES TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10427. NULL information_schema TABLES CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10428. NULL information_schema TABLES CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  10429. NULL information_schema TABLES TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10430. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10431. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10432. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10433. NULL information_schema TABLE_CONSTRAINTS TABLE_SCHEMA 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10434. NULL information_schema TABLE_CONSTRAINTS TABLE_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10435. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10436. NULL information_schema TABLE_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  10437. NULL information_schema TABLE_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10438. NULL information_schema TABLE_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10439. NULL information_schema TABLE_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10440. NULL information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10441. NULL information_schema TABLE_PRIVILEGES IS_GRANTABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10442. NULL information_schema TRIGGERS TRIGGER_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10443. NULL information_schema TRIGGERS TRIGGER_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10444. NULL information_schema TRIGGERS TRIGGER_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10445. NULL information_schema TRIGGERS EVENT_MANIPULATION 4 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  10446. NULL information_schema TRIGGERS EVENT_OBJECT_CATALOG 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10447. NULL information_schema TRIGGERS EVENT_OBJECT_SCHEMA 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10448. NULL information_schema TRIGGERS EVENT_OBJECT_TABLE 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10449. NULL information_schema TRIGGERS ACTION_ORDER 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10450. NULL information_schema TRIGGERS ACTION_CONDITION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10451. NULL information_schema TRIGGERS ACTION_STATEMENT 10 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10452. NULL information_schema TRIGGERS ACTION_ORIENTATION 11 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  10453. NULL information_schema TRIGGERS ACTION_TIMING 12 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  10454. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10455. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10456. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW 15 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10457. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10458. NULL information_schema TRIGGERS CREATED 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10459. NULL information_schema TRIGGERS SQL_MODE 18 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10460. NULL information_schema TRIGGERS DEFINER 19 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10461. NULL information_schema TRIGGERS CHARACTER_SET_CLIENT 20 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10462. NULL information_schema TRIGGERS COLLATION_CONNECTION 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10463. NULL information_schema TRIGGERS DATABASE_COLLATION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10464. NULL information_schema USER_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  10465. NULL information_schema USER_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10466. NULL information_schema USER_PRIVILEGES PRIVILEGE_TYPE 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10467. NULL information_schema USER_PRIVILEGES IS_GRANTABLE 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10468. NULL information_schema VIEWS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10469. NULL information_schema VIEWS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10470. NULL information_schema VIEWS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10471. NULL information_schema VIEWS VIEW_DEFINITION 4 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10472. NULL information_schema VIEWS CHECK_OPTION 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10473. NULL information_schema VIEWS IS_UPDATABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10474. NULL information_schema VIEWS DEFINER 7 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  10475. NULL information_schema VIEWS SECURITY_TYPE 8 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  10476. NULL information_schema VIEWS CHARACTER_SET_CLIENT 9 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10477. NULL information_schema VIEWS COLLATION_CONNECTION 10 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10478. NULL mysql columns_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10479. NULL mysql columns_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10480. NULL mysql columns_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  10481. NULL mysql columns_priv Table_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10482. NULL mysql columns_priv Column_name 5 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10483. NULL mysql columns_priv Timestamp 6 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  10484. NULL mysql columns_priv Column_priv 7 NO set 31 93 NULL NULL utf8 utf8_general_ci set('Select','Insert','Update','References') select,insert,update,references
  10485. NULL mysql db Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10486. NULL mysql db Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10487. NULL mysql db User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  10488. NULL mysql db Select_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10489. NULL mysql db Insert_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10490. NULL mysql db Update_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10491. NULL mysql db Delete_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10492. NULL mysql db Create_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10493. NULL mysql db Drop_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10494. NULL mysql db Grant_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10495. NULL mysql db References_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10496. NULL mysql db Index_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10497. NULL mysql db Alter_priv 13 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10498. NULL mysql db Create_tmp_table_priv 14 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10499. NULL mysql db Lock_tables_priv 15 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10500. NULL mysql db Create_view_priv 16 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10501. NULL mysql db Show_view_priv 17 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10502. NULL mysql db Create_routine_priv 18 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10503. NULL mysql db Alter_routine_priv 19 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10504. NULL mysql db Execute_priv 20 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10505. NULL mysql db Event_priv 21 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10506. NULL mysql db Trigger_priv 22 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10507. NULL mysql event db 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10508. NULL mysql event name 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  10509. NULL mysql event body 3 NULL NO longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10510. NULL mysql event definer 4 NO char 77 231 NULL NULL utf8 utf8_bin char(77) select,insert,update,references
  10511. NULL mysql event execute_at 5 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  10512. NULL mysql event interval_value 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10513. NULL mysql event interval_field 7 NULL YES enum 18 54 NULL NULL utf8 utf8_general_ci enum('YEAR','QUARTER','MONTH','DAY','HOUR','MINUTE','WEEK','SECOND','MICROSECOND','YEAR_MONTH','DAY_HOUR','DAY_MINUTE','DAY_SECOND','HOUR_MINUTE','HOUR_SECOND','MINUTE_SECOND','DAY_MICROSECOND','HOUR_MICROSECOND','MINUTE_MICROSECOND','SECOND_MICROSECOND') select,insert,update,references
  10514. NULL mysql event created 8 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  10515. NULL mysql event modified 9 0000-00-00 00:00:00 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10516. NULL mysql event last_executed 10 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  10517. NULL mysql event starts 11 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  10518. NULL mysql event ends 12 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  10519. NULL mysql event status 13 ENABLED NO enum 18 54 NULL NULL utf8 utf8_general_ci enum('ENABLED','DISABLED','SLAVESIDE_DISABLED') select,insert,update,references
  10520. NULL mysql event on_completion 14 DROP NO enum 8 24 NULL NULL utf8 utf8_general_ci enum('DROP','PRESERVE') select,insert,update,references
  10521. NULL mysql event sql_mode 15 NO set 431 1293 NULL NULL utf8 utf8_general_ci set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE') select,insert,update,references
  10522. NULL mysql event comment 16 NO char 64 192 NULL NULL utf8 utf8_bin char(64) select,insert,update,references
  10523. NULL mysql event originator 17 NULL NO int NULL NULL 10 0 NULL NULL int(10) select,insert,update,references
  10524. NULL mysql event time_zone 18 SYSTEM NO char 64 64 NULL NULL latin1 latin1_swedish_ci char(64) select,insert,update,references
  10525. NULL mysql event character_set_client 19 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  10526. NULL mysql event collation_connection 20 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  10527. NULL mysql event db_collation 21 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  10528. NULL mysql event body_utf8 22 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10529. NULL mysql func name 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10530. NULL mysql func ret 2 0 NO tinyint NULL NULL 3 0 NULL NULL tinyint(1) select,insert,update,references
  10531. NULL mysql func dl 3 NO char 128 384 NULL NULL utf8 utf8_bin char(128) select,insert,update,references
  10532. NULL mysql func type 4 NULL NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('function','aggregate') select,insert,update,references
  10533. NULL mysql general_log event_time 1 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  10534. NULL mysql general_log user_host 2 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  10535. NULL mysql general_log thread_id 3 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10536. NULL mysql general_log server_id 4 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10537. NULL mysql general_log command_type 5 NULL NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  10538. NULL mysql general_log argument 6 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  10539. NULL mysql help_category help_category_id 1 NULL NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned PRI select,insert,update,references
  10540. NULL mysql help_category name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  10541. NULL mysql help_category parent_category_id 3 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  10542. NULL mysql help_category url 4 NULL NO char 128 384 NULL NULL utf8 utf8_general_ci char(128) select,insert,update,references
  10543. NULL mysql help_keyword help_keyword_id 1 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  10544. NULL mysql help_keyword name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  10545. NULL mysql help_relation help_topic_id 1 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  10546. NULL mysql help_relation help_keyword_id 2 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  10547. NULL mysql help_topic help_topic_id 1 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  10548. NULL mysql help_topic name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  10549. NULL mysql help_topic help_category_id 3 NULL NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  10550. NULL mysql help_topic description 4 NULL NO text 65535 65535 NULL NULL utf8 utf8_general_ci text select,insert,update,references
  10551. NULL mysql help_topic example 5 NULL NO text 65535 65535 NULL NULL utf8 utf8_general_ci text select,insert,update,references
  10552. NULL mysql help_topic url 6 NULL NO char 128 384 NULL NULL utf8 utf8_general_ci char(128) select,insert,update,references
  10553. NULL mysql host Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10554. NULL mysql host Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10555. NULL mysql host Select_priv 3 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10556. NULL mysql host Insert_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10557. NULL mysql host Update_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10558. NULL mysql host Delete_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10559. NULL mysql host Create_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10560. NULL mysql host Drop_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10561. NULL mysql host Grant_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10562. NULL mysql host References_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10563. NULL mysql host Index_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10564. NULL mysql host Alter_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10565. NULL mysql host Create_tmp_table_priv 13 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10566. NULL mysql host Lock_tables_priv 14 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10567. NULL mysql host Create_view_priv 15 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10568. NULL mysql host Show_view_priv 16 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10569. NULL mysql host Create_routine_priv 17 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10570. NULL mysql host Alter_routine_priv 18 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10571. NULL mysql host Execute_priv 19 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10572. NULL mysql host Trigger_priv 20 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10573. NULL mysql ndb_binlog_index Position 1 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10574. NULL mysql ndb_binlog_index File 2 NULL NO varchar 255 255 NULL NULL latin1 latin1_swedish_ci varchar(255) select,insert,update,references
  10575. NULL mysql ndb_binlog_index epoch 3 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned PRI select,insert,update,references
  10576. NULL mysql ndb_binlog_index inserts 4 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10577. NULL mysql ndb_binlog_index updates 5 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10578. NULL mysql ndb_binlog_index deletes 6 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10579. NULL mysql ndb_binlog_index schemaops 7 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10580. NULL mysql plugin name 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10581. NULL mysql plugin dl 2 NO char 128 384 NULL NULL utf8 utf8_bin char(128) select,insert,update,references
  10582. NULL mysql proc db 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10583. NULL mysql proc name 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  10584. NULL mysql proc type 3 NULL NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('FUNCTION','PROCEDURE') PRI select,insert,update,references
  10585. NULL mysql proc specific_name 4 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10586. NULL mysql proc language 5 SQL NO enum 3 9 NULL NULL utf8 utf8_general_ci enum('SQL') select,insert,update,references
  10587. NULL mysql proc sql_data_access 6 CONTAINS_SQL NO enum 17 51 NULL NULL utf8 utf8_general_ci enum('CONTAINS_SQL','NO_SQL','READS_SQL_DATA','MODIFIES_SQL_DATA') select,insert,update,references
  10588. NULL mysql proc is_deterministic 7 NO NO enum 3 9 NULL NULL utf8 utf8_general_ci enum('YES','NO') select,insert,update,references
  10589. NULL mysql proc security_type 8 DEFINER NO enum 7 21 NULL NULL utf8 utf8_general_ci enum('INVOKER','DEFINER') select,insert,update,references
  10590. NULL mysql proc param_list 9 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10591. NULL mysql proc returns 10 NULL NO longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10592. NULL mysql proc body 11 NULL NO longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10593. NULL mysql proc definer 12 NO char 77 231 NULL NULL utf8 utf8_bin char(77) select,insert,update,references
  10594. NULL mysql proc created 13 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  10595. NULL mysql proc modified 14 0000-00-00 00:00:00 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10596. NULL mysql proc sql_mode 15 NO set 431 1293 NULL NULL utf8 utf8_general_ci set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE') select,insert,update,references
  10597. NULL mysql proc comment 16 NO char 64 192 NULL NULL utf8 utf8_bin char(64) select,insert,update,references
  10598. NULL mysql proc character_set_client 17 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  10599. NULL mysql proc collation_connection 18 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  10600. NULL mysql proc db_collation 19 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  10601. NULL mysql proc body_utf8 20 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10602. NULL mysql procs_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10603. NULL mysql procs_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10604. NULL mysql procs_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  10605. NULL mysql procs_priv Routine_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10606. NULL mysql procs_priv Routine_type 5 NULL NO enum 9 27 NULL NULL utf8 utf8_bin enum('FUNCTION','PROCEDURE') PRI select,insert,update,references
  10607. NULL mysql procs_priv Grantor 6 NO char 77 231 NULL NULL utf8 utf8_bin char(77) MUL select,insert,update,references
  10608. NULL mysql procs_priv Proc_priv 7 NO set 27 81 NULL NULL utf8 utf8_general_ci set('Execute','Alter Routine','Grant') select,insert,update,references
  10609. NULL mysql procs_priv Timestamp 8 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  10610. NULL mysql servers Server_name 1 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  10611. NULL mysql servers Host 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10612. NULL mysql servers Db 3 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10613. NULL mysql servers Username 4 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10614. NULL mysql servers Password 5 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10615. NULL mysql servers Port 6 0 NO int NULL NULL 10 0 NULL NULL int(4) select,insert,update,references
  10616. NULL mysql servers Socket 7 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10617. NULL mysql servers Wrapper 8 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10618. NULL mysql servers Owner 9 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10619. NULL mysql slow_log start_time 1 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  10620. NULL mysql slow_log user_host 2 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  10621. NULL mysql slow_log query_time 3 NULL NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  10622. NULL mysql slow_log lock_time 4 NULL NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  10623. NULL mysql slow_log rows_sent 5 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10624. NULL mysql slow_log rows_examined 6 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10625. NULL mysql slow_log db 7 NULL NO varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select,insert,update,references
  10626. NULL mysql slow_log last_insert_id 8 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10627. NULL mysql slow_log insert_id 9 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10628. NULL mysql slow_log server_id 10 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10629. NULL mysql slow_log sql_text 11 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  10630. NULL mysql tables_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10631. NULL mysql tables_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10632. NULL mysql tables_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  10633. NULL mysql tables_priv Table_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10634. NULL mysql tables_priv Grantor 5 NO char 77 231 NULL NULL utf8 utf8_bin char(77) MUL select,insert,update,references
  10635. NULL mysql tables_priv Timestamp 6 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  10636. NULL mysql tables_priv Table_priv 7 NO set 98 294 NULL NULL utf8 utf8_general_ci set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter','Create View','Show view','Trigger') select,insert,update,references
  10637. NULL mysql tables_priv Column_priv 8 NO set 31 93 NULL NULL utf8 utf8_general_ci set('Select','Insert','Update','References') select,insert,update,references
  10638. NULL mysql time_zone Time_zone_id 1 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI auto_increment select,insert,update,references
  10639. NULL mysql time_zone Use_leap_seconds 2 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('Y','N') select,insert,update,references
  10640. NULL mysql time_zone_leap_second Transition_time 1 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) PRI select,insert,update,references
  10641. NULL mysql time_zone_leap_second Correction 2 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10642. NULL mysql time_zone_name Name 1 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  10643. NULL mysql time_zone_name Time_zone_id 2 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  10644. NULL mysql time_zone_transition Time_zone_id 1 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  10645. NULL mysql time_zone_transition Transition_time 2 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) PRI select,insert,update,references
  10646. NULL mysql time_zone_transition Transition_type_id 3 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  10647. NULL mysql time_zone_transition_type Time_zone_id 1 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  10648. NULL mysql time_zone_transition_type Transition_type_id 2 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  10649. NULL mysql time_zone_transition_type Offset 3 0 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10650. NULL mysql time_zone_transition_type Is_DST 4 0 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  10651. NULL mysql time_zone_transition_type Abbreviation 5 NO char 8 24 NULL NULL utf8 utf8_general_ci char(8) select,insert,update,references
  10652. NULL mysql user Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10653. NULL mysql user User 2 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  10654. NULL mysql user Password 3 NO char 41 41 NULL NULL latin1 latin1_bin char(41) select,insert,update,references
  10655. NULL mysql user Select_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10656. NULL mysql user Insert_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10657. NULL mysql user Update_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10658. NULL mysql user Delete_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10659. NULL mysql user Create_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10660. NULL mysql user Drop_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10661. NULL mysql user Reload_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10662. NULL mysql user Shutdown_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10663. NULL mysql user Process_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10664. NULL mysql user File_priv 13 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10665. NULL mysql user Grant_priv 14 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10666. NULL mysql user References_priv 15 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10667. NULL mysql user Index_priv 16 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10668. NULL mysql user Alter_priv 17 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10669. NULL mysql user Show_db_priv 18 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10670. NULL mysql user Super_priv 19 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10671. NULL mysql user Create_tmp_table_priv 20 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10672. NULL mysql user Lock_tables_priv 21 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10673. NULL mysql user Execute_priv 22 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10674. NULL mysql user Repl_slave_priv 23 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10675. NULL mysql user Repl_client_priv 24 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10676. NULL mysql user Create_view_priv 25 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10677. NULL mysql user Show_view_priv 26 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10678. NULL mysql user Create_routine_priv 27 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10679. NULL mysql user Alter_routine_priv 28 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10680. NULL mysql user Create_user_priv 29 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10681. NULL mysql user Event_priv 30 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10682. NULL mysql user Trigger_priv 31 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10683. NULL mysql user ssl_type 32 NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('','ANY','X509','SPECIFIED') select,insert,update,references
  10684. NULL mysql user ssl_cipher 33 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10685. NULL mysql user x509_issuer 34 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10686. NULL mysql user x509_subject 35 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10687. NULL mysql user max_questions 36 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  10688. NULL mysql user max_updates 37 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  10689. NULL mysql user max_connections 38 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  10690. NULL mysql user max_user_connections 39 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  10691. NULL test t1 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10692. NULL test t1 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10693. NULL test t1 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10694. NULL test t1 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10695. NULL test t1 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10696. NULL test t1 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10697. NULL test t10 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10698. NULL test t10 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10699. NULL test t10 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10700. NULL test t10 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10701. NULL test t10 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10702. NULL test t10 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10703. NULL test t11 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10704. NULL test t11 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10705. NULL test t11 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10706. NULL test t11 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10707. NULL test t11 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10708. NULL test t11 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10709. NULL test t2 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10710. NULL test t2 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10711. NULL test t2 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10712. NULL test t2 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10713. NULL test t2 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10714. NULL test t2 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10715. NULL test t3 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10716. NULL test t3 f2 2 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10717. NULL test t3 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10718. NULL test t4 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10719. NULL test t4 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10720. NULL test t4 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10721. NULL test t4 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10722. NULL test t4 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10723. NULL test t4 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10724. NULL test t7 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10725. NULL test t7 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10726. NULL test t7 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10727. NULL test t7 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10728. NULL test t8 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10729. NULL test t8 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10730. NULL test t8 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10731. NULL test t8 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10732. NULL test t9 f1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10733. NULL test t9 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10734. NULL test t9 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10735. NULL test tb1 f1 1 NULL YES char 0 0 NULL NULL latin1 latin1_swedish_ci char(0) select,insert,update,references
  10736. NULL test tb1 f2 2 NULL YES char 0 0 NULL NULL latin1 latin1_bin char(0) select,insert,update,references
  10737. NULL test tb1 f3 3 NULL YES char 0 0 NULL NULL latin1 latin1_swedish_ci char(0) select,insert,update,references
  10738. NULL test tb1 f4 4 NULL YES tinytext 127 255 NULL NULL ucs2 ucs2_general_ci tinytext select,insert,update,references
  10739. NULL test tb1 f5 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  10740. NULL test tb1 f6 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  10741. NULL test tb1 f7 7 NULL YES longtext 4294967295 4294967295 NULL NULL latin1 latin1_swedish_ci longtext select,insert,update,references
  10742. NULL test tb1 f8 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  10743. NULL test tb1 f9 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10744. NULL test tb1 f10 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  10745. NULL test tb1 f11 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10746. NULL test tb1 f12 12 NULL YES binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  10747. NULL test tb1 f13 13 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  10748. NULL test tb1 f14 14 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  10749. NULL test tb1 f15 15 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10750. NULL test tb1 f16 16 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10751. NULL test tb1 f17 17 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  10752. NULL test tb1 f18 18 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  10753. NULL test tb1 f19 19 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10754. NULL test tb1 f20 20 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10755. NULL test tb1 f21 21 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  10756. NULL test tb1 f22 22 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  10757. NULL test tb1 f23 23 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10758. NULL test tb1 f24 24 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10759. NULL test tb1 f25 25 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10760. NULL test tb1 f26 26 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  10761. NULL test tb1 f27 27 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10762. NULL test tb1 f28 28 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10763. NULL test tb1 f29 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  10764. NULL test tb1 f30 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10765. NULL test tb1 f31 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10766. NULL test tb1 f32 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10767. NULL test tb1 f33 33 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10768. NULL test tb1 f34 34 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10769. NULL test tb1 f35 35 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10770. NULL test tb1 f36 36 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10771. NULL test tb1 f37 37 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10772. NULL test tb1 f38 38 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10773. NULL test tb1 f39 39 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10774. NULL test tb1 f40 40 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10775. NULL test tb1 f41 41 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10776. NULL test tb1 f42 42 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10777. NULL test tb1 f43 43 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10778. NULL test tb1 f44 44 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10779. NULL test tb1 f45 45 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10780. NULL test tb1 f46 46 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10781. NULL test tb1 f47 47 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10782. NULL test tb1 f48 48 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10783. NULL test tb1 f49 49 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10784. NULL test tb1 f50 50 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10785. NULL test tb1 f51 51 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10786. NULL test tb1 f52 52 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10787. NULL test tb1 f53 53 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10788. NULL test tb1 f54 54 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10789. NULL test tb1 f55 55 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10790. NULL test tb1 f56 56 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10791. NULL test tb1 f57 57 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10792. NULL test tb1 f58 58 99 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10793. NULL test tb2 f59 1 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10794. NULL test tb2 f60 2 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10795. NULL test tb2 f61 3 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10796. NULL test tb2 f62 4 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10797. NULL test tb2 f63 5 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10798. NULL test tb2 f64 6 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10799. NULL test tb2 f65 7 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10800. NULL test tb2 f66 8 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10801. NULL test tb2 f67 9 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10802. NULL test tb2 f68 10 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10803. NULL test tb2 f69 11 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10804. NULL test tb2 f70 12 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10805. NULL test tb2 f71 13 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10806. NULL test tb2 f72 14 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10807. NULL test tb2 f73 15 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10808. NULL test tb2 f74 16 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10809. NULL test tb2 f75 17 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10810. NULL test tb2 f76 18 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10811. NULL test tb2 f77 19 7.7 YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10812. NULL test tb2 f78 20 7.7 YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10813. NULL test tb2 f79 21 00000000000000000007.7 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10814. NULL test tb2 f80 22 00000000000000000008.8 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10815. NULL test tb2 f81 23 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10816. NULL test tb2 f82 24 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10817. NULL test tb2 f83 25 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10818. NULL test tb2 f84 26 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10819. NULL test tb2 f85 27 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10820. NULL test tb2 f86 28 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10821. NULL test tb2 f87 29 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10822. NULL test tb2 f88 30 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10823. NULL test tb2 f89 31 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10824. NULL test tb2 f90 32 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10825. NULL test tb2 f91 33 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10826. NULL test tb2 f92 34 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10827. NULL test tb2 f93 35 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10828. NULL test tb2 f94 36 8.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10829. NULL test tb2 f95 37 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10830. NULL test tb2 f96 38 8.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10831. NULL test tb2 f97 39 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10832. NULL test tb2 f98 40 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10833. NULL test tb2 f99 41 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10834. NULL test tb2 f100 42 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10835. NULL test tb2 f101 43 2000-01-01 NO date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10836. NULL test tb2 f102 44 00:00:20 NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  10837. NULL test tb2 f103 45 0002-02-02 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  10838. NULL test tb2 f104 46 2000-12-31 23:59:59 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10839. NULL test tb2 f105 47 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10840. NULL test tb2 f106 48 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10841. NULL test tb2 f107 49 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10842. NULL test tb2 f108 50 1enum NO enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  10843. NULL test tb2 f109 51 1set NO set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  10844. NULL test tb3 f118 1 a NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10845. NULL test tb3 f119 2  NO char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  10846. NULL test tb3 f120 3  NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10847. NULL test tb3 f121 4 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  10848. NULL test tb3 f122 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  10849. NULL test tb3 f123 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  10850. NULL test tb3 f124 7 NULL YES longtext 2147483647 4294967295 NULL NULL ucs2 ucs2_general_ci longtext select,insert,update,references
  10851. NULL test tb3 f125 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  10852. NULL test tb3 f126 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10853. NULL test tb3 f127 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  10854. NULL test tb3 f128 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10855. NULL test tb3 f129 12  NO binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  10856. NULL test tb3 f130 13 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  10857. NULL test tb3 f131 14 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  10858. NULL test tb3 f132 15 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10859. NULL test tb3 f133 16 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10860. NULL test tb3 f134 17 999 NO smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  10861. NULL test tb3 f135 18 999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  10862. NULL test tb3 f136 19 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10863. NULL test tb3 f137 20 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10864. NULL test tb3 f138 21 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  10865. NULL test tb3 f139 22 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  10866. NULL test tb3 f140 23 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10867. NULL test tb3 f141 24 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10868. NULL test tb3 f142 25 99999 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10869. NULL test tb3 f143 26 99999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  10870. NULL test tb3 f144 27 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10871. NULL test tb3 f145 28 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10872. NULL test tb3 f146 29 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  10873. NULL test tb3 f147 30 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10874. NULL test tb3 f148 31 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10875. NULL test tb3 f149 32 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10876. NULL test tb3 f150 33 1000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10877. NULL test tb3 f151 34 999 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10878. NULL test tb3 f152 35 0000001000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10879. NULL test tb3 f153 36 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10880. NULL test tb3 f154 37 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10881. NULL test tb3 f155 38 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10882. NULL test tb3 f156 39 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10883. NULL test tb3 f157 40 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10884. NULL test tb3 f158 41 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10885. NULL test tb3 f159 42 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10886. NULL test tb3 f160 43 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10887. NULL test tb3 f161 44 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10888. NULL test tb3 f162 45 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10889. NULL test tb3 f163 46 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10890. NULL test tb3 f164 47 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10891. NULL test tb3 f165 48 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10892. NULL test tb3 f166 49 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10893. NULL test tb3 f167 50 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10894. NULL test tb3 f168 51 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10895. NULL test tb3 f169 52 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10896. NULL test tb3 f170 53 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10897. NULL test tb3 f171 54 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10898. NULL test tb3 f172 55 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10899. NULL test tb3 f173 56 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10900. NULL test tb3 f174 57 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10901. NULL test tb3 f175 58 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10902. NULL test tb4 f176 1 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10903. NULL test tb4 f177 2 9 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10904. NULL test tb4 f178 3 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10905. NULL test tb4 f179 4 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10906. NULL test tb4 f180 5 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10907. NULL test tb4 f181 6 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10908. NULL test tb4 f182 7 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10909. NULL test tb4 f183 8 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10910. NULL test tb4 f184 9 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10911. NULL test tb4 f185 10 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10912. NULL test tb4 f186 11 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10913. NULL test tb4 f187 12 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10914. NULL test tb4 f188 13 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10915. NULL test tb4 f189 14 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10916. NULL test tb4 f190 15 88.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10917. NULL test tb4 f191 16 88.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10918. NULL test tb4 f192 17 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10919. NULL test tb4 f193 18 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10920. NULL test tb4 f194 19 55.5 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10921. NULL test tb4 f195 20 55.5 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10922. NULL test tb4 f196 21 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10923. NULL test tb4 f197 22 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10924. NULL test tb4 f198 23 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10925. NULL test tb4 f199 24 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10926. NULL test tb4 f200 25 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10927. NULL test tb4 f201 26 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10928. NULL test tb4 f202 27 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10929. NULL test tb4 f203 28 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10930. NULL test tb4 f204 29 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10931. NULL test tb4 f205 30 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10932. NULL test tb4 f206 31 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10933. NULL test tb4 f207 32 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10934. NULL test tb4 f208 33 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10935. NULL test tb4 f209 34 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10936. NULL test tb4 f210 35 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10937. NULL test tb4 f211 36 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10938. NULL test tb4 f212 37 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10939. NULL test tb4 f213 38 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10940. NULL test tb4 f214 39 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10941. NULL test tb4 f215 40 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10942. NULL test tb4 f216 41 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10943. NULL test tb4 f217 42 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10944. NULL test tb4 f218 43 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10945. NULL test tb4 f219 44 NULL YES time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  10946. NULL test tb4 f220 45 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  10947. NULL test tb4 f221 46 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  10948. NULL test tb4 f222 47 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10949. NULL test tb4 f223 48 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10950. NULL test tb4 f224 49 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10951. NULL test tb4 f225 50 NULL YES enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  10952. NULL test tb4 f226 51 NULL YES set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  10953. NULL test tb4 f235 52 NULL YES char 0 0 NULL NULL ucs2 ucs2_general_ci char(0) select,insert,update,references
  10954. NULL test tb4 f236 53 NULL YES char 90 90 NULL NULL latin1 latin1_swedish_ci char(90) select,insert,update,references
  10955. NULL test tb4 f237 54 NULL YES char 255 255 NULL NULL latin1 latin1_swedish_ci char(255) select,insert,update,references
  10956. NULL test tb4 f238 55 NULL YES varchar 0 0 NULL NULL latin1 latin1_swedish_ci varchar(0) select,insert,update,references
  10957. NULL test tb4 f239 56 NULL YES varchar 20000 20000 NULL NULL latin1 latin1_bin varchar(20000) select,insert,update,references
  10958. NULL test tb4 f240 57 NULL YES varchar 2000 4000 NULL NULL ucs2 ucs2_general_ci varchar(2000) select,insert,update,references
  10959. NULL test tb4 f241 58 NULL YES char 100 200 NULL NULL ucs2 ucs2_general_ci char(100) select,insert,update,references
  10960. NULL test1 tb2 f59 1 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10961. NULL test1 tb2 f60 2 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10962. NULL test1 tb2 f61 3 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10963. NULL test1 tb2 f62 4 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10964. NULL test1 tb2 f63 5 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10965. NULL test1 tb2 f64 6 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10966. NULL test1 tb2 f65 7 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10967. NULL test1 tb2 f66 8 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10968. NULL test1 tb2 f67 9 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10969. NULL test1 tb2 f68 10 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10970. NULL test1 tb2 f69 11 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10971. NULL test1 tb2 f70 12 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10972. NULL test1 tb2 f71 13 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10973. NULL test1 tb2 f72 14 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10974. NULL test1 tb2 f73 15 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10975. NULL test1 tb2 f74 16 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10976. NULL test1 tb2 f75 17 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10977. NULL test1 tb2 f76 18 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10978. NULL test1 tb2 f77 19 7.7 YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10979. NULL test1 tb2 f78 20 7.7 YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10980. NULL test1 tb2 f79 21 00000000000000000007.7 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10981. NULL test1 tb2 f80 22 00000000000000000008.8 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10982. NULL test1 tb2 f81 23 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10983. NULL test1 tb2 f82 24 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10984. NULL test1 tb2 f83 25 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10985. NULL test1 tb2 f84 26 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10986. NULL test1 tb2 f85 27 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10987. NULL test1 tb2 f86 28 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10988. NULL test1 tb2 f87 29 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10989. NULL test1 tb2 f88 30 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10990. NULL test1 tb2 f89 31 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10991. NULL test1 tb2 f90 32 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10992. NULL test1 tb2 f91 33 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10993. NULL test1 tb2 f92 34 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10994. NULL test1 tb2 f93 35 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10995. NULL test1 tb2 f94 36 8.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10996. NULL test1 tb2 f95 37 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10997. NULL test1 tb2 f96 38 8.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10998. NULL test1 tb2 f97 39 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10999. NULL test1 tb2 f98 40 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11000. NULL test1 tb2 f99 41 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11001. NULL test1 tb2 f100 42 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11002. NULL test1 tb2 f101 43 2000-01-01 NO date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11003. NULL test1 tb2 f102 44 00:00:20 NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  11004. NULL test1 tb2 f103 45 0002-02-02 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  11005. NULL test1 tb2 f104 46 2000-12-31 23:59:59 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  11006. NULL test1 tb2 f105 47 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11007. NULL test1 tb2 f106 48 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11008. NULL test1 tb2 f107 49 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11009. NULL test1 tb2 f108 50 1enum NO enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  11010. NULL test1 tb2 f109 51 1set NO set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  11011. NULL test4 t6 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11012. NULL test4 t6 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11013. NULL test4 t6 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11014. NULL test4 t6 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11015. NULL test4 t6 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11016. NULL test4 t6 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11017. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  11018. SELECT * FROM information_schema.columns
  11019. ORDER BY table_schema, table_name, ordinal_position;
  11020. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  11021. NULL db_datadict t_6_406001 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select
  11022. NULL db_datadict t_6_406001 f2 2 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select
  11023. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11024. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11025. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  11026. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  11027. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11028. NULL information_schema COLLATIONS CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11029. NULL information_schema COLLATIONS ID 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(11) select
  11030. NULL information_schema COLLATIONS IS_DEFAULT 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11031. NULL information_schema COLLATIONS IS_COMPILED 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11032. NULL information_schema COLLATIONS SORTLEN 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  11033. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11034. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11035. NULL information_schema COLUMNS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11036. NULL information_schema COLUMNS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11037. NULL information_schema COLUMNS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11038. NULL information_schema COLUMNS COLUMN_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11039. NULL information_schema COLUMNS ORDINAL_POSITION 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11040. NULL information_schema COLUMNS COLUMN_DEFAULT 6 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11041. NULL information_schema COLUMNS IS_NULLABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11042. NULL information_schema COLUMNS DATA_TYPE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11043. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11044. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11045. NULL information_schema COLUMNS NUMERIC_PRECISION 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11046. NULL information_schema COLUMNS NUMERIC_SCALE 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11047. NULL information_schema COLUMNS CHARACTER_SET_NAME 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11048. NULL information_schema COLUMNS COLLATION_NAME 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11049. NULL information_schema COLUMNS COLUMN_TYPE 15 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11050. NULL information_schema COLUMNS COLUMN_KEY 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11051. NULL information_schema COLUMNS EXTRA 17 NO varchar 27 81 NULL NULL utf8 utf8_general_ci varchar(27) select
  11052. NULL information_schema COLUMNS PRIVILEGES 18 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11053. NULL information_schema COLUMNS COLUMN_COMMENT 19 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  11054. NULL information_schema COLUMN_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11055. NULL information_schema COLUMN_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11056. NULL information_schema COLUMN_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11057. NULL information_schema COLUMN_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11058. NULL information_schema COLUMN_PRIVILEGES COLUMN_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11059. NULL information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11060. NULL information_schema COLUMN_PRIVILEGES IS_GRANTABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11061. NULL information_schema ENGINES ENGINE 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11062. NULL information_schema ENGINES SUPPORT 2 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11063. NULL information_schema ENGINES COMMENT 3 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11064. NULL information_schema ENGINES TRANSACTIONS 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11065. NULL information_schema ENGINES XA 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11066. NULL information_schema ENGINES SAVEPOINTS 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11067. NULL information_schema EVENTS EVENT_CATALOG 1 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11068. NULL information_schema EVENTS EVENT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11069. NULL information_schema EVENTS EVENT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11070. NULL information_schema EVENTS DEFINER 4 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  11071. NULL information_schema EVENTS TIME_ZONE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11072. NULL information_schema EVENTS EVENT_BODY 6 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11073. NULL information_schema EVENTS EVENT_DEFINITION 7 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11074. NULL information_schema EVENTS EVENT_TYPE 8 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  11075. NULL information_schema EVENTS EXECUTE_AT 9 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11076. NULL information_schema EVENTS INTERVAL_VALUE 10 NULL YES varchar 256 768 NULL NULL utf8 utf8_general_ci varchar(256) select
  11077. NULL information_schema EVENTS INTERVAL_FIELD 11 NULL YES varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  11078. NULL information_schema EVENTS SQL_MODE 12 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11079. NULL information_schema EVENTS STARTS 13 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11080. NULL information_schema EVENTS ENDS 14 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11081. NULL information_schema EVENTS STATUS 15 NO varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  11082. NULL information_schema EVENTS ON_COMPLETION 16 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11083. NULL information_schema EVENTS CREATED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11084. NULL information_schema EVENTS LAST_ALTERED 18 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11085. NULL information_schema EVENTS LAST_EXECUTED 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11086. NULL information_schema EVENTS EVENT_COMMENT 20 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11087. NULL information_schema EVENTS ORIGINATOR 21 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  11088. NULL information_schema EVENTS CHARACTER_SET_CLIENT 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11089. NULL information_schema EVENTS COLLATION_CONNECTION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11090. NULL information_schema EVENTS DATABASE_COLLATION 24 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11091. NULL information_schema FILES FILE_ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11092. NULL information_schema FILES FILE_NAME 2 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11093. NULL information_schema FILES FILE_TYPE 3 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11094. NULL information_schema FILES TABLESPACE_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11095. NULL information_schema FILES TABLE_CATALOG 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11096. NULL information_schema FILES TABLE_SCHEMA 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11097. NULL information_schema FILES TABLE_NAME 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11098. NULL information_schema FILES LOGFILE_GROUP_NAME 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11099. NULL information_schema FILES LOGFILE_GROUP_NUMBER 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11100. NULL information_schema FILES ENGINE 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11101. NULL information_schema FILES FULLTEXT_KEYS 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11102. NULL information_schema FILES DELETED_ROWS 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11103. NULL information_schema FILES UPDATE_COUNT 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11104. NULL information_schema FILES FREE_EXTENTS 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11105. NULL information_schema FILES TOTAL_EXTENTS 15 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11106. NULL information_schema FILES EXTENT_SIZE 16 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11107. NULL information_schema FILES INITIAL_SIZE 17 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11108. NULL information_schema FILES MAXIMUM_SIZE 18 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11109. NULL information_schema FILES AUTOEXTEND_SIZE 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11110. NULL information_schema FILES CREATION_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11111. NULL information_schema FILES LAST_UPDATE_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11112. NULL information_schema FILES LAST_ACCESS_TIME 22 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11113. NULL information_schema FILES RECOVER_TIME 23 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11114. NULL information_schema FILES TRANSACTION_COUNTER 24 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11115. NULL information_schema FILES VERSION 25 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11116. NULL information_schema FILES ROW_FORMAT 26 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11117. NULL information_schema FILES TABLE_ROWS 27 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11118. NULL information_schema FILES AVG_ROW_LENGTH 28 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11119. NULL information_schema FILES DATA_LENGTH 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11120. NULL information_schema FILES MAX_DATA_LENGTH 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11121. NULL information_schema FILES INDEX_LENGTH 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11122. NULL information_schema FILES DATA_FREE 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11123. NULL information_schema FILES CREATE_TIME 33 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11124. NULL information_schema FILES UPDATE_TIME 34 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11125. NULL information_schema FILES CHECK_TIME 35 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11126. NULL information_schema FILES CHECKSUM 36 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11127. NULL information_schema FILES STATUS 37 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11128. NULL information_schema FILES EXTRA 38 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  11129. NULL information_schema GLOBAL_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11130. NULL information_schema GLOBAL_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  11131. NULL information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11132. NULL information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  11133. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11134. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11135. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11136. NULL information_schema KEY_COLUMN_USAGE TABLE_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11137. NULL information_schema KEY_COLUMN_USAGE TABLE_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11138. NULL information_schema KEY_COLUMN_USAGE TABLE_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11139. NULL information_schema KEY_COLUMN_USAGE COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11140. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  11141. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(10) select
  11142. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11143. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11144. NULL information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME 12 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11145. NULL information_schema PARTITIONS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11146. NULL information_schema PARTITIONS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11147. NULL information_schema PARTITIONS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11148. NULL information_schema PARTITIONS PARTITION_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11149. NULL information_schema PARTITIONS SUBPARTITION_NAME 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11150. NULL information_schema PARTITIONS PARTITION_ORDINAL_POSITION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11151. NULL information_schema PARTITIONS SUBPARTITION_ORDINAL_POSITION 7 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11152. NULL information_schema PARTITIONS PARTITION_METHOD 8 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11153. NULL information_schema PARTITIONS SUBPARTITION_METHOD 9 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11154. NULL information_schema PARTITIONS PARTITION_EXPRESSION 10 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11155. NULL information_schema PARTITIONS SUBPARTITION_EXPRESSION 11 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11156. NULL information_schema PARTITIONS PARTITION_DESCRIPTION 12 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11157. NULL information_schema PARTITIONS TABLE_ROWS 13 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11158. NULL information_schema PARTITIONS AVG_ROW_LENGTH 14 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11159. NULL information_schema PARTITIONS DATA_LENGTH 15 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11160. NULL information_schema PARTITIONS MAX_DATA_LENGTH 16 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11161. NULL information_schema PARTITIONS INDEX_LENGTH 17 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11162. NULL information_schema PARTITIONS DATA_FREE 18 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11163. NULL information_schema PARTITIONS CREATE_TIME 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11164. NULL information_schema PARTITIONS UPDATE_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11165. NULL information_schema PARTITIONS CHECK_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11166. NULL information_schema PARTITIONS CHECKSUM 22 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11167. NULL information_schema PARTITIONS PARTITION_COMMENT 23 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11168. NULL information_schema PARTITIONS NODEGROUP 24 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11169. NULL information_schema PARTITIONS TABLESPACE_NAME 25 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11170. NULL information_schema PLUGINS PLUGIN_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11171. NULL information_schema PLUGINS PLUGIN_VERSION 2 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11172. NULL information_schema PLUGINS PLUGIN_STATUS 3 NO varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11173. NULL information_schema PLUGINS PLUGIN_TYPE 4 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11174. NULL information_schema PLUGINS PLUGIN_TYPE_VERSION 5 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11175. NULL information_schema PLUGINS PLUGIN_LIBRARY 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11176. NULL information_schema PLUGINS PLUGIN_LIBRARY_VERSION 7 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11177. NULL information_schema PLUGINS PLUGIN_AUTHOR 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11178. NULL information_schema PLUGINS PLUGIN_DESCRIPTION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11179. NULL information_schema PLUGINS PLUGIN_LICENSE 10 NULL YES varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11180. NULL information_schema PROCESSLIST ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11181. NULL information_schema PROCESSLIST USER 2 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11182. NULL information_schema PROCESSLIST HOST 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11183. NULL information_schema PROCESSLIST DB 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11184. NULL information_schema PROCESSLIST COMMAND 5 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11185. NULL information_schema PROCESSLIST TIME 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(7) select
  11186. NULL information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11187. NULL information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11188. NULL information_schema PROFILING QUERY_ID 1 0 NO int NULL NULL 10 0 NULL NULL int(20) select
  11189. NULL information_schema PROFILING SEQ 2 0 NO int NULL NULL 10 0 NULL NULL int(20) select
  11190. NULL information_schema PROFILING STATE 3 NO varchar 30 90 NULL NULL utf8 utf8_general_ci varchar(30) select
  11191. NULL information_schema PROFILING DURATION 4 0.000000 NO decimal NULL NULL 9 6 NULL NULL decimal(9,6) select
  11192. NULL information_schema PROFILING CPU_USER 5 NULL YES decimal NULL NULL 9 6 NULL NULL decimal(9,6) select
  11193. NULL information_schema PROFILING CPU_SYSTEM 6 NULL YES decimal NULL NULL 9 6 NULL NULL decimal(9,6) select
  11194. NULL information_schema PROFILING CONTEXT_VOLUNTARY 7 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11195. NULL information_schema PROFILING CONTEXT_INVOLUNTARY 8 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11196. NULL information_schema PROFILING BLOCK_OPS_IN 9 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11197. NULL information_schema PROFILING BLOCK_OPS_OUT 10 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11198. NULL information_schema PROFILING MESSAGES_SENT 11 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11199. NULL information_schema PROFILING MESSAGES_RECEIVED 12 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11200. NULL information_schema PROFILING PAGE_FAULTS_MAJOR 13 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11201. NULL information_schema PROFILING PAGE_FAULTS_MINOR 14 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11202. NULL information_schema PROFILING SWAPS 15 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11203. NULL information_schema PROFILING SOURCE_FUNCTION 16 NULL YES varchar 30 90 NULL NULL utf8 utf8_general_ci varchar(30) select
  11204. NULL information_schema PROFILING SOURCE_FILE 17 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11205. NULL information_schema PROFILING SOURCE_LINE 18 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11206. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11207. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11208. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11209. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11210. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11211. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11212. NULL information_schema REFERENTIAL_CONSTRAINTS MATCH_OPTION 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11213. NULL information_schema REFERENTIAL_CONSTRAINTS UPDATE_RULE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11214. NULL information_schema REFERENTIAL_CONSTRAINTS DELETE_RULE 9 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11215. NULL information_schema REFERENTIAL_CONSTRAINTS TABLE_NAME 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11216. NULL information_schema REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME 11 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11217. NULL information_schema ROUTINES SPECIFIC_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11218. NULL information_schema ROUTINES ROUTINE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11219. NULL information_schema ROUTINES ROUTINE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11220. NULL information_schema ROUTINES ROUTINE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11221. NULL information_schema ROUTINES ROUTINE_TYPE 5 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  11222. NULL information_schema ROUTINES DTD_IDENTIFIER 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11223. NULL information_schema ROUTINES ROUTINE_BODY 7 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11224. NULL information_schema ROUTINES ROUTINE_DEFINITION 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11225. NULL information_schema ROUTINES EXTERNAL_NAME 9 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11226. NULL information_schema ROUTINES EXTERNAL_LANGUAGE 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11227. NULL information_schema ROUTINES PARAMETER_STYLE 11 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11228. NULL information_schema ROUTINES IS_DETERMINISTIC 12 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11229. NULL information_schema ROUTINES SQL_DATA_ACCESS 13 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11230. NULL information_schema ROUTINES SQL_PATH 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11231. NULL information_schema ROUTINES SECURITY_TYPE 15 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  11232. NULL information_schema ROUTINES CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11233. NULL information_schema ROUTINES LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11234. NULL information_schema ROUTINES SQL_MODE 18 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11235. NULL information_schema ROUTINES ROUTINE_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11236. NULL information_schema ROUTINES DEFINER 20 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  11237. NULL information_schema ROUTINES CHARACTER_SET_CLIENT 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11238. NULL information_schema ROUTINES COLLATION_CONNECTION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11239. NULL information_schema ROUTINES DATABASE_COLLATION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11240. NULL information_schema SCHEMATA CATALOG_NAME 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11241. NULL information_schema SCHEMATA SCHEMA_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11242. NULL information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11243. NULL information_schema SCHEMATA DEFAULT_COLLATION_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11244. NULL information_schema SCHEMATA SQL_PATH 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11245. NULL information_schema SCHEMA_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11246. NULL information_schema SCHEMA_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11247. NULL information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11248. NULL information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11249. NULL information_schema SCHEMA_PRIVILEGES IS_GRANTABLE 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11250. NULL information_schema SESSION_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11251. NULL information_schema SESSION_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  11252. NULL information_schema SESSION_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11253. NULL information_schema SESSION_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  11254. NULL information_schema STATISTICS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11255. NULL information_schema STATISTICS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11256. NULL information_schema STATISTICS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11257. NULL information_schema STATISTICS NON_UNIQUE 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(1) select
  11258. NULL information_schema STATISTICS INDEX_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11259. NULL information_schema STATISTICS INDEX_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11260. NULL information_schema STATISTICS SEQ_IN_INDEX 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(2) select
  11261. NULL information_schema STATISTICS COLUMN_NAME 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11262. NULL information_schema STATISTICS COLLATION 9 NULL YES varchar 1 3 NULL NULL utf8 utf8_general_ci varchar(1) select
  11263. NULL information_schema STATISTICS CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11264. NULL information_schema STATISTICS SUB_PART 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(3) select
  11265. NULL information_schema STATISTICS PACKED 12 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11266. NULL information_schema STATISTICS NULLABLE 13 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11267. NULL information_schema STATISTICS INDEX_TYPE 14 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11268. NULL information_schema STATISTICS COMMENT 15 NULL YES varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11269. NULL information_schema TABLES TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11270. NULL information_schema TABLES TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11271. NULL information_schema TABLES TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11272. NULL information_schema TABLES TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11273. NULL information_schema TABLES ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11274. NULL information_schema TABLES VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11275. NULL information_schema TABLES ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11276. NULL information_schema TABLES TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11277. NULL information_schema TABLES AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11278. NULL information_schema TABLES DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11279. NULL information_schema TABLES MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11280. NULL information_schema TABLES INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11281. NULL information_schema TABLES DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11282. NULL information_schema TABLES AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11283. NULL information_schema TABLES CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11284. NULL information_schema TABLES UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11285. NULL information_schema TABLES CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11286. NULL information_schema TABLES TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11287. NULL information_schema TABLES CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11288. NULL information_schema TABLES CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  11289. NULL information_schema TABLES TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11290. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11291. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11292. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11293. NULL information_schema TABLE_CONSTRAINTS TABLE_SCHEMA 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11294. NULL information_schema TABLE_CONSTRAINTS TABLE_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11295. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11296. NULL information_schema TABLE_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11297. NULL information_schema TABLE_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11298. NULL information_schema TABLE_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11299. NULL information_schema TABLE_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11300. NULL information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11301. NULL information_schema TABLE_PRIVILEGES IS_GRANTABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11302. NULL information_schema TRIGGERS TRIGGER_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11303. NULL information_schema TRIGGERS TRIGGER_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11304. NULL information_schema TRIGGERS TRIGGER_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11305. NULL information_schema TRIGGERS EVENT_MANIPULATION 4 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  11306. NULL information_schema TRIGGERS EVENT_OBJECT_CATALOG 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11307. NULL information_schema TRIGGERS EVENT_OBJECT_SCHEMA 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11308. NULL information_schema TRIGGERS EVENT_OBJECT_TABLE 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11309. NULL information_schema TRIGGERS ACTION_ORDER 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11310. NULL information_schema TRIGGERS ACTION_CONDITION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11311. NULL information_schema TRIGGERS ACTION_STATEMENT 10 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11312. NULL information_schema TRIGGERS ACTION_ORIENTATION 11 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  11313. NULL information_schema TRIGGERS ACTION_TIMING 12 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  11314. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11315. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11316. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW 15 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11317. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11318. NULL information_schema TRIGGERS CREATED 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11319. NULL information_schema TRIGGERS SQL_MODE 18 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11320. NULL information_schema TRIGGERS DEFINER 19 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11321. NULL information_schema TRIGGERS CHARACTER_SET_CLIENT 20 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11322. NULL information_schema TRIGGERS COLLATION_CONNECTION 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11323. NULL information_schema TRIGGERS DATABASE_COLLATION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11324. NULL information_schema USER_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11325. NULL information_schema USER_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11326. NULL information_schema USER_PRIVILEGES PRIVILEGE_TYPE 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11327. NULL information_schema USER_PRIVILEGES IS_GRANTABLE 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11328. NULL information_schema VIEWS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11329. NULL information_schema VIEWS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11330. NULL information_schema VIEWS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11331. NULL information_schema VIEWS VIEW_DEFINITION 4 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11332. NULL information_schema VIEWS CHECK_OPTION 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11333. NULL information_schema VIEWS IS_UPDATABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11334. NULL information_schema VIEWS DEFINER 7 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  11335. NULL information_schema VIEWS SECURITY_TYPE 8 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  11336. NULL information_schema VIEWS CHARACTER_SET_CLIENT 9 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11337. NULL information_schema VIEWS COLLATION_CONNECTION 10 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11338. NULL test t1 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11339. NULL test t1 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11340. NULL test t1 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11341. NULL test t1 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11342. NULL test t1 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11343. NULL test t1 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11344. NULL test t10 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11345. NULL test t10 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11346. NULL test t10 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11347. NULL test t10 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11348. NULL test t10 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11349. NULL test t10 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11350. NULL test t11 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11351. NULL test t11 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11352. NULL test t11 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11353. NULL test t11 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11354. NULL test t11 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11355. NULL test t11 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11356. NULL test t2 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11357. NULL test t2 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11358. NULL test t2 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11359. NULL test t2 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11360. NULL test t2 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11361. NULL test t2 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11362. NULL test t3 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11363. NULL test t3 f2 2 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11364. NULL test t3 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11365. NULL test t4 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11366. NULL test t4 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11367. NULL test t4 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11368. NULL test t4 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11369. NULL test t4 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11370. NULL test t4 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11371. NULL test t7 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11372. NULL test t7 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11373. NULL test t7 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11374. NULL test t7 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11375. NULL test t8 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11376. NULL test t8 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11377. NULL test t8 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11378. NULL test t8 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11379. NULL test t9 f1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11380. NULL test t9 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11381. NULL test t9 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11382. NULL test tb1 f1 1 NULL YES char 0 0 NULL NULL latin1 latin1_swedish_ci char(0) select,insert,update,references
  11383. NULL test tb1 f2 2 NULL YES char 0 0 NULL NULL latin1 latin1_bin char(0) select,insert,update,references
  11384. NULL test tb1 f3 3 NULL YES char 0 0 NULL NULL latin1 latin1_swedish_ci char(0) select,insert,update,references
  11385. NULL test tb1 f4 4 NULL YES tinytext 127 255 NULL NULL ucs2 ucs2_general_ci tinytext select,insert,update,references
  11386. NULL test tb1 f5 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  11387. NULL test tb1 f6 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  11388. NULL test tb1 f7 7 NULL YES longtext 4294967295 4294967295 NULL NULL latin1 latin1_swedish_ci longtext select,insert,update,references
  11389. NULL test tb1 f8 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  11390. NULL test tb1 f9 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  11391. NULL test tb1 f10 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  11392. NULL test tb1 f11 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  11393. NULL test tb1 f12 12 NULL YES binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  11394. NULL test tb1 f13 13 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  11395. NULL test tb1 f14 14 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  11396. NULL test tb1 f15 15 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11397. NULL test tb1 f16 16 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11398. NULL test tb1 f17 17 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  11399. NULL test tb1 f18 18 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  11400. NULL test tb1 f19 19 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11401. NULL test tb1 f20 20 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11402. NULL test tb1 f21 21 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  11403. NULL test tb1 f22 22 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  11404. NULL test tb1 f23 23 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11405. NULL test tb1 f24 24 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11406. NULL test tb1 f25 25 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11407. NULL test tb1 f26 26 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  11408. NULL test tb1 f27 27 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11409. NULL test tb1 f28 28 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11410. NULL test tb1 f29 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  11411. NULL test tb1 f30 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  11412. NULL test tb1 f31 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11413. NULL test tb1 f32 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11414. NULL test tb1 f33 33 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11415. NULL test tb1 f34 34 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11416. NULL test tb1 f35 35 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11417. NULL test tb1 f36 36 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11418. NULL test tb1 f37 37 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11419. NULL test tb1 f38 38 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11420. NULL test tb1 f39 39 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11421. NULL test tb1 f40 40 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11422. NULL test tb1 f41 41 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11423. NULL test tb1 f42 42 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11424. NULL test tb1 f43 43 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11425. NULL test tb1 f44 44 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11426. NULL test tb1 f45 45 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11427. NULL test tb1 f46 46 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11428. NULL test tb1 f47 47 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11429. NULL test tb1 f48 48 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11430. NULL test tb1 f49 49 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11431. NULL test tb1 f50 50 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11432. NULL test tb1 f51 51 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11433. NULL test tb1 f52 52 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11434. NULL test tb1 f53 53 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11435. NULL test tb1 f54 54 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11436. NULL test tb1 f55 55 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11437. NULL test tb1 f56 56 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11438. NULL test tb1 f57 57 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11439. NULL test tb1 f58 58 99 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11440. NULL test tb2 f59 1 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11441. NULL test tb2 f60 2 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11442. NULL test tb2 f61 3 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11443. NULL test tb2 f62 4 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11444. NULL test tb2 f63 5 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11445. NULL test tb2 f64 6 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11446. NULL test tb2 f65 7 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11447. NULL test tb2 f66 8 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11448. NULL test tb2 f67 9 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11449. NULL test tb2 f68 10 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11450. NULL test tb2 f69 11 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11451. NULL test tb2 f70 12 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11452. NULL test tb2 f71 13 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11453. NULL test tb2 f72 14 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11454. NULL test tb2 f73 15 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11455. NULL test tb2 f74 16 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11456. NULL test tb2 f75 17 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11457. NULL test tb2 f76 18 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11458. NULL test tb2 f77 19 7.7 YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11459. NULL test tb2 f78 20 7.7 YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11460. NULL test tb2 f79 21 00000000000000000007.7 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11461. NULL test tb2 f80 22 00000000000000000008.8 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11462. NULL test tb2 f81 23 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11463. NULL test tb2 f82 24 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11464. NULL test tb2 f83 25 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11465. NULL test tb2 f84 26 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11466. NULL test tb2 f85 27 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11467. NULL test tb2 f86 28 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11468. NULL test tb2 f87 29 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11469. NULL test tb2 f88 30 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11470. NULL test tb2 f89 31 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11471. NULL test tb2 f90 32 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11472. NULL test tb2 f91 33 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11473. NULL test tb2 f92 34 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11474. NULL test tb2 f93 35 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11475. NULL test tb2 f94 36 8.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11476. NULL test tb2 f95 37 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11477. NULL test tb2 f96 38 8.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11478. NULL test tb2 f97 39 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11479. NULL test tb2 f98 40 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11480. NULL test tb2 f99 41 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11481. NULL test tb2 f100 42 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11482. NULL test tb2 f101 43 2000-01-01 NO date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11483. NULL test tb2 f102 44 00:00:20 NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  11484. NULL test tb2 f103 45 0002-02-02 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  11485. NULL test tb2 f104 46 2000-12-31 23:59:59 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  11486. NULL test tb2 f105 47 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11487. NULL test tb2 f106 48 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11488. NULL test tb2 f107 49 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11489. NULL test tb2 f108 50 1enum NO enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  11490. NULL test tb2 f109 51 1set NO set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  11491. NULL test tb3 f118 1 a NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  11492. NULL test tb3 f119 2  NO char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  11493. NULL test tb3 f120 3  NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  11494. NULL test tb3 f121 4 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  11495. NULL test tb3 f122 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  11496. NULL test tb3 f123 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  11497. NULL test tb3 f124 7 NULL YES longtext 2147483647 4294967295 NULL NULL ucs2 ucs2_general_ci longtext select,insert,update,references
  11498. NULL test tb3 f125 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  11499. NULL test tb3 f126 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  11500. NULL test tb3 f127 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  11501. NULL test tb3 f128 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  11502. NULL test tb3 f129 12  NO binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  11503. NULL test tb3 f130 13 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  11504. NULL test tb3 f131 14 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  11505. NULL test tb3 f132 15 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11506. NULL test tb3 f133 16 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11507. NULL test tb3 f134 17 999 NO smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  11508. NULL test tb3 f135 18 999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  11509. NULL test tb3 f136 19 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11510. NULL test tb3 f137 20 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11511. NULL test tb3 f138 21 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  11512. NULL test tb3 f139 22 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  11513. NULL test tb3 f140 23 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11514. NULL test tb3 f141 24 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11515. NULL test tb3 f142 25 99999 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11516. NULL test tb3 f143 26 99999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  11517. NULL test tb3 f144 27 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11518. NULL test tb3 f145 28 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11519. NULL test tb3 f146 29 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  11520. NULL test tb3 f147 30 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  11521. NULL test tb3 f148 31 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11522. NULL test tb3 f149 32 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11523. NULL test tb3 f150 33 1000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11524. NULL test tb3 f151 34 999 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11525. NULL test tb3 f152 35 0000001000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11526. NULL test tb3 f153 36 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11527. NULL test tb3 f154 37 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11528. NULL test tb3 f155 38 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11529. NULL test tb3 f156 39 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11530. NULL test tb3 f157 40 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11531. NULL test tb3 f158 41 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11532. NULL test tb3 f159 42 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11533. NULL test tb3 f160 43 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11534. NULL test tb3 f161 44 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11535. NULL test tb3 f162 45 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11536. NULL test tb3 f163 46 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11537. NULL test tb3 f164 47 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11538. NULL test tb3 f165 48 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11539. NULL test tb3 f166 49 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11540. NULL test tb3 f167 50 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11541. NULL test tb3 f168 51 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11542. NULL test tb3 f169 52 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11543. NULL test tb3 f170 53 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11544. NULL test tb3 f171 54 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11545. NULL test tb3 f172 55 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11546. NULL test tb3 f173 56 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11547. NULL test tb3 f174 57 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11548. NULL test tb3 f175 58 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11549. NULL test tb4 f176 1 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11550. NULL test tb4 f177 2 9 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11551. NULL test tb4 f178 3 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11552. NULL test tb4 f179 4 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11553. NULL test tb4 f180 5 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11554. NULL test tb4 f181 6 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11555. NULL test tb4 f182 7 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11556. NULL test tb4 f183 8 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11557. NULL test tb4 f184 9 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11558. NULL test tb4 f185 10 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11559. NULL test tb4 f186 11 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11560. NULL test tb4 f187 12 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11561. NULL test tb4 f188 13 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11562. NULL test tb4 f189 14 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11563. NULL test tb4 f190 15 88.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11564. NULL test tb4 f191 16 88.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11565. NULL test tb4 f192 17 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11566. NULL test tb4 f193 18 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11567. NULL test tb4 f194 19 55.5 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11568. NULL test tb4 f195 20 55.5 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11569. NULL test tb4 f196 21 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11570. NULL test tb4 f197 22 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11571. NULL test tb4 f198 23 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11572. NULL test tb4 f199 24 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11573. NULL test tb4 f200 25 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11574. NULL test tb4 f201 26 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11575. NULL test tb4 f202 27 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11576. NULL test tb4 f203 28 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11577. NULL test tb4 f204 29 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11578. NULL test tb4 f205 30 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11579. NULL test tb4 f206 31 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11580. NULL test tb4 f207 32 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11581. NULL test tb4 f208 33 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11582. NULL test tb4 f209 34 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11583. NULL test tb4 f210 35 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11584. NULL test tb4 f211 36 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11585. NULL test tb4 f212 37 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11586. NULL test tb4 f213 38 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11587. NULL test tb4 f214 39 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11588. NULL test tb4 f215 40 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11589. NULL test tb4 f216 41 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11590. NULL test tb4 f217 42 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11591. NULL test tb4 f218 43 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11592. NULL test tb4 f219 44 NULL YES time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  11593. NULL test tb4 f220 45 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  11594. NULL test tb4 f221 46 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  11595. NULL test tb4 f222 47 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11596. NULL test tb4 f223 48 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11597. NULL test tb4 f224 49 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11598. NULL test tb4 f225 50 NULL YES enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  11599. NULL test tb4 f226 51 NULL YES set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  11600. NULL test tb4 f235 52 NULL YES char 0 0 NULL NULL ucs2 ucs2_general_ci char(0) select,insert,update,references
  11601. NULL test tb4 f236 53 NULL YES char 90 90 NULL NULL latin1 latin1_swedish_ci char(90) select,insert,update,references
  11602. NULL test tb4 f237 54 NULL YES char 255 255 NULL NULL latin1 latin1_swedish_ci char(255) select,insert,update,references
  11603. NULL test tb4 f238 55 NULL YES varchar 0 0 NULL NULL latin1 latin1_swedish_ci varchar(0) select,insert,update,references
  11604. NULL test tb4 f239 56 NULL YES varchar 20000 20000 NULL NULL latin1 latin1_bin varchar(20000) select,insert,update,references
  11605. NULL test tb4 f240 57 NULL YES varchar 2000 4000 NULL NULL ucs2 ucs2_general_ci varchar(2000) select,insert,update,references
  11606. NULL test tb4 f241 58 NULL YES char 100 200 NULL NULL ucs2 ucs2_general_ci char(100) select,insert,update,references
  11607. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  11608. SELECT * FROM information_schema.columns
  11609. ORDER BY table_schema, table_name, ordinal_position;
  11610. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  11611. NULL db_datadict t_6_406002 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) insert
  11612. NULL db_datadict t_6_406002 f2 2 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text insert
  11613. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11614. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11615. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  11616. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  11617. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11618. NULL information_schema COLLATIONS CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11619. NULL information_schema COLLATIONS ID 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(11) select
  11620. NULL information_schema COLLATIONS IS_DEFAULT 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11621. NULL information_schema COLLATIONS IS_COMPILED 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11622. NULL information_schema COLLATIONS SORTLEN 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  11623. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11624. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11625. NULL information_schema COLUMNS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11626. NULL information_schema COLUMNS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11627. NULL information_schema COLUMNS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11628. NULL information_schema COLUMNS COLUMN_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11629. NULL information_schema COLUMNS ORDINAL_POSITION 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11630. NULL information_schema COLUMNS COLUMN_DEFAULT 6 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11631. NULL information_schema COLUMNS IS_NULLABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11632. NULL information_schema COLUMNS DATA_TYPE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11633. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11634. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11635. NULL information_schema COLUMNS NUMERIC_PRECISION 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11636. NULL information_schema COLUMNS NUMERIC_SCALE 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11637. NULL information_schema COLUMNS CHARACTER_SET_NAME 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11638. NULL information_schema COLUMNS COLLATION_NAME 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11639. NULL information_schema COLUMNS COLUMN_TYPE 15 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11640. NULL information_schema COLUMNS COLUMN_KEY 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11641. NULL information_schema COLUMNS EXTRA 17 NO varchar 27 81 NULL NULL utf8 utf8_general_ci varchar(27) select
  11642. NULL information_schema COLUMNS PRIVILEGES 18 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11643. NULL information_schema COLUMNS COLUMN_COMMENT 19 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  11644. NULL information_schema COLUMN_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11645. NULL information_schema COLUMN_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11646. NULL information_schema COLUMN_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11647. NULL information_schema COLUMN_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11648. NULL information_schema COLUMN_PRIVILEGES COLUMN_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11649. NULL information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11650. NULL information_schema COLUMN_PRIVILEGES IS_GRANTABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11651. NULL information_schema ENGINES ENGINE 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11652. NULL information_schema ENGINES SUPPORT 2 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11653. NULL information_schema ENGINES COMMENT 3 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11654. NULL information_schema ENGINES TRANSACTIONS 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11655. NULL information_schema ENGINES XA 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11656. NULL information_schema ENGINES SAVEPOINTS 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11657. NULL information_schema EVENTS EVENT_CATALOG 1 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11658. NULL information_schema EVENTS EVENT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11659. NULL information_schema EVENTS EVENT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11660. NULL information_schema EVENTS DEFINER 4 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  11661. NULL information_schema EVENTS TIME_ZONE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11662. NULL information_schema EVENTS EVENT_BODY 6 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11663. NULL information_schema EVENTS EVENT_DEFINITION 7 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11664. NULL information_schema EVENTS EVENT_TYPE 8 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  11665. NULL information_schema EVENTS EXECUTE_AT 9 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11666. NULL information_schema EVENTS INTERVAL_VALUE 10 NULL YES varchar 256 768 NULL NULL utf8 utf8_general_ci varchar(256) select
  11667. NULL information_schema EVENTS INTERVAL_FIELD 11 NULL YES varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  11668. NULL information_schema EVENTS SQL_MODE 12 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11669. NULL information_schema EVENTS STARTS 13 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11670. NULL information_schema EVENTS ENDS 14 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11671. NULL information_schema EVENTS STATUS 15 NO varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  11672. NULL information_schema EVENTS ON_COMPLETION 16 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11673. NULL information_schema EVENTS CREATED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11674. NULL information_schema EVENTS LAST_ALTERED 18 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11675. NULL information_schema EVENTS LAST_EXECUTED 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11676. NULL information_schema EVENTS EVENT_COMMENT 20 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11677. NULL information_schema EVENTS ORIGINATOR 21 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  11678. NULL information_schema EVENTS CHARACTER_SET_CLIENT 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11679. NULL information_schema EVENTS COLLATION_CONNECTION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11680. NULL information_schema EVENTS DATABASE_COLLATION 24 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11681. NULL information_schema FILES FILE_ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11682. NULL information_schema FILES FILE_NAME 2 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11683. NULL information_schema FILES FILE_TYPE 3 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11684. NULL information_schema FILES TABLESPACE_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11685. NULL information_schema FILES TABLE_CATALOG 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11686. NULL information_schema FILES TABLE_SCHEMA 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11687. NULL information_schema FILES TABLE_NAME 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11688. NULL information_schema FILES LOGFILE_GROUP_NAME 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11689. NULL information_schema FILES LOGFILE_GROUP_NUMBER 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11690. NULL information_schema FILES ENGINE 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11691. NULL information_schema FILES FULLTEXT_KEYS 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11692. NULL information_schema FILES DELETED_ROWS 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11693. NULL information_schema FILES UPDATE_COUNT 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11694. NULL information_schema FILES FREE_EXTENTS 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11695. NULL information_schema FILES TOTAL_EXTENTS 15 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11696. NULL information_schema FILES EXTENT_SIZE 16 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11697. NULL information_schema FILES INITIAL_SIZE 17 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11698. NULL information_schema FILES MAXIMUM_SIZE 18 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11699. NULL information_schema FILES AUTOEXTEND_SIZE 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11700. NULL information_schema FILES CREATION_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11701. NULL information_schema FILES LAST_UPDATE_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11702. NULL information_schema FILES LAST_ACCESS_TIME 22 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11703. NULL information_schema FILES RECOVER_TIME 23 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11704. NULL information_schema FILES TRANSACTION_COUNTER 24 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11705. NULL information_schema FILES VERSION 25 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11706. NULL information_schema FILES ROW_FORMAT 26 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11707. NULL information_schema FILES TABLE_ROWS 27 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11708. NULL information_schema FILES AVG_ROW_LENGTH 28 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11709. NULL information_schema FILES DATA_LENGTH 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11710. NULL information_schema FILES MAX_DATA_LENGTH 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11711. NULL information_schema FILES INDEX_LENGTH 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11712. NULL information_schema FILES DATA_FREE 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11713. NULL information_schema FILES CREATE_TIME 33 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11714. NULL information_schema FILES UPDATE_TIME 34 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11715. NULL information_schema FILES CHECK_TIME 35 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11716. NULL information_schema FILES CHECKSUM 36 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11717. NULL information_schema FILES STATUS 37 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11718. NULL information_schema FILES EXTRA 38 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  11719. NULL information_schema GLOBAL_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11720. NULL information_schema GLOBAL_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  11721. NULL information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11722. NULL information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  11723. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11724. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11725. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11726. NULL information_schema KEY_COLUMN_USAGE TABLE_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11727. NULL information_schema KEY_COLUMN_USAGE TABLE_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11728. NULL information_schema KEY_COLUMN_USAGE TABLE_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11729. NULL information_schema KEY_COLUMN_USAGE COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11730. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  11731. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(10) select
  11732. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11733. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11734. NULL information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME 12 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11735. NULL information_schema PARTITIONS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11736. NULL information_schema PARTITIONS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11737. NULL information_schema PARTITIONS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11738. NULL information_schema PARTITIONS PARTITION_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11739. NULL information_schema PARTITIONS SUBPARTITION_NAME 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11740. NULL information_schema PARTITIONS PARTITION_ORDINAL_POSITION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11741. NULL information_schema PARTITIONS SUBPARTITION_ORDINAL_POSITION 7 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11742. NULL information_schema PARTITIONS PARTITION_METHOD 8 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11743. NULL information_schema PARTITIONS SUBPARTITION_METHOD 9 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11744. NULL information_schema PARTITIONS PARTITION_EXPRESSION 10 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11745. NULL information_schema PARTITIONS SUBPARTITION_EXPRESSION 11 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11746. NULL information_schema PARTITIONS PARTITION_DESCRIPTION 12 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11747. NULL information_schema PARTITIONS TABLE_ROWS 13 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11748. NULL information_schema PARTITIONS AVG_ROW_LENGTH 14 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11749. NULL information_schema PARTITIONS DATA_LENGTH 15 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11750. NULL information_schema PARTITIONS MAX_DATA_LENGTH 16 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11751. NULL information_schema PARTITIONS INDEX_LENGTH 17 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11752. NULL information_schema PARTITIONS DATA_FREE 18 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11753. NULL information_schema PARTITIONS CREATE_TIME 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11754. NULL information_schema PARTITIONS UPDATE_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11755. NULL information_schema PARTITIONS CHECK_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11756. NULL information_schema PARTITIONS CHECKSUM 22 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11757. NULL information_schema PARTITIONS PARTITION_COMMENT 23 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11758. NULL information_schema PARTITIONS NODEGROUP 24 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11759. NULL information_schema PARTITIONS TABLESPACE_NAME 25 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11760. NULL information_schema PLUGINS PLUGIN_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11761. NULL information_schema PLUGINS PLUGIN_VERSION 2 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11762. NULL information_schema PLUGINS PLUGIN_STATUS 3 NO varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11763. NULL information_schema PLUGINS PLUGIN_TYPE 4 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11764. NULL information_schema PLUGINS PLUGIN_TYPE_VERSION 5 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11765. NULL information_schema PLUGINS PLUGIN_LIBRARY 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11766. NULL information_schema PLUGINS PLUGIN_LIBRARY_VERSION 7 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11767. NULL information_schema PLUGINS PLUGIN_AUTHOR 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11768. NULL information_schema PLUGINS PLUGIN_DESCRIPTION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11769. NULL information_schema PLUGINS PLUGIN_LICENSE 10 NULL YES varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11770. NULL information_schema PROCESSLIST ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11771. NULL information_schema PROCESSLIST USER 2 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11772. NULL information_schema PROCESSLIST HOST 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11773. NULL information_schema PROCESSLIST DB 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11774. NULL information_schema PROCESSLIST COMMAND 5 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11775. NULL information_schema PROCESSLIST TIME 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(7) select
  11776. NULL information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11777. NULL information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11778. NULL information_schema PROFILING QUERY_ID 1 0 NO int NULL NULL 10 0 NULL NULL int(20) select
  11779. NULL information_schema PROFILING SEQ 2 0 NO int NULL NULL 10 0 NULL NULL int(20) select
  11780. NULL information_schema PROFILING STATE 3 NO varchar 30 90 NULL NULL utf8 utf8_general_ci varchar(30) select
  11781. NULL information_schema PROFILING DURATION 4 0.000000 NO decimal NULL NULL 9 6 NULL NULL decimal(9,6) select
  11782. NULL information_schema PROFILING CPU_USER 5 NULL YES decimal NULL NULL 9 6 NULL NULL decimal(9,6) select
  11783. NULL information_schema PROFILING CPU_SYSTEM 6 NULL YES decimal NULL NULL 9 6 NULL NULL decimal(9,6) select
  11784. NULL information_schema PROFILING CONTEXT_VOLUNTARY 7 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11785. NULL information_schema PROFILING CONTEXT_INVOLUNTARY 8 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11786. NULL information_schema PROFILING BLOCK_OPS_IN 9 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11787. NULL information_schema PROFILING BLOCK_OPS_OUT 10 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11788. NULL information_schema PROFILING MESSAGES_SENT 11 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11789. NULL information_schema PROFILING MESSAGES_RECEIVED 12 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11790. NULL information_schema PROFILING PAGE_FAULTS_MAJOR 13 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11791. NULL information_schema PROFILING PAGE_FAULTS_MINOR 14 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11792. NULL information_schema PROFILING SWAPS 15 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11793. NULL information_schema PROFILING SOURCE_FUNCTION 16 NULL YES varchar 30 90 NULL NULL utf8 utf8_general_ci varchar(30) select
  11794. NULL information_schema PROFILING SOURCE_FILE 17 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11795. NULL information_schema PROFILING SOURCE_LINE 18 NULL YES int NULL NULL 10 0 NULL NULL int(20) select
  11796. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11797. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11798. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11799. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11800. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11801. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11802. NULL information_schema REFERENTIAL_CONSTRAINTS MATCH_OPTION 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11803. NULL information_schema REFERENTIAL_CONSTRAINTS UPDATE_RULE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11804. NULL information_schema REFERENTIAL_CONSTRAINTS DELETE_RULE 9 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11805. NULL information_schema REFERENTIAL_CONSTRAINTS TABLE_NAME 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11806. NULL information_schema REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME 11 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11807. NULL information_schema ROUTINES SPECIFIC_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11808. NULL information_schema ROUTINES ROUTINE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11809. NULL information_schema ROUTINES ROUTINE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11810. NULL information_schema ROUTINES ROUTINE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11811. NULL information_schema ROUTINES ROUTINE_TYPE 5 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  11812. NULL information_schema ROUTINES DTD_IDENTIFIER 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11813. NULL information_schema ROUTINES ROUTINE_BODY 7 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11814. NULL information_schema ROUTINES ROUTINE_DEFINITION 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11815. NULL information_schema ROUTINES EXTERNAL_NAME 9 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11816. NULL information_schema ROUTINES EXTERNAL_LANGUAGE 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11817. NULL information_schema ROUTINES PARAMETER_STYLE 11 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11818. NULL information_schema ROUTINES IS_DETERMINISTIC 12 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11819. NULL information_schema ROUTINES SQL_DATA_ACCESS 13 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11820. NULL information_schema ROUTINES SQL_PATH 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11821. NULL information_schema ROUTINES SECURITY_TYPE 15 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  11822. NULL information_schema ROUTINES CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11823. NULL information_schema ROUTINES LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11824. NULL information_schema ROUTINES SQL_MODE 18 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11825. NULL information_schema ROUTINES ROUTINE_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11826. NULL information_schema ROUTINES DEFINER 20 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  11827. NULL information_schema ROUTINES CHARACTER_SET_CLIENT 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11828. NULL information_schema ROUTINES COLLATION_CONNECTION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11829. NULL information_schema ROUTINES DATABASE_COLLATION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11830. NULL information_schema SCHEMATA CATALOG_NAME 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11831. NULL information_schema SCHEMATA SCHEMA_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11832. NULL information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11833. NULL information_schema SCHEMATA DEFAULT_COLLATION_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11834. NULL information_schema SCHEMATA SQL_PATH 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11835. NULL information_schema SCHEMA_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11836. NULL information_schema SCHEMA_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11837. NULL information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11838. NULL information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11839. NULL information_schema SCHEMA_PRIVILEGES IS_GRANTABLE 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11840. NULL information_schema SESSION_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11841. NULL information_schema SESSION_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  11842. NULL information_schema SESSION_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11843. NULL information_schema SESSION_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  11844. NULL information_schema STATISTICS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11845. NULL information_schema STATISTICS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11846. NULL information_schema STATISTICS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11847. NULL information_schema STATISTICS NON_UNIQUE 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(1) select
  11848. NULL information_schema STATISTICS INDEX_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11849. NULL information_schema STATISTICS INDEX_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11850. NULL information_schema STATISTICS SEQ_IN_INDEX 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(2) select
  11851. NULL information_schema STATISTICS COLUMN_NAME 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11852. NULL information_schema STATISTICS COLLATION 9 NULL YES varchar 1 3 NULL NULL utf8 utf8_general_ci varchar(1) select
  11853. NULL information_schema STATISTICS CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11854. NULL information_schema STATISTICS SUB_PART 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(3) select
  11855. NULL information_schema STATISTICS PACKED 12 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11856. NULL information_schema STATISTICS NULLABLE 13 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11857. NULL information_schema STATISTICS INDEX_TYPE 14 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11858. NULL information_schema STATISTICS COMMENT 15 NULL YES varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11859. NULL information_schema TABLES TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11860. NULL information_schema TABLES TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11861. NULL information_schema TABLES TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11862. NULL information_schema TABLES TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11863. NULL information_schema TABLES ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11864. NULL information_schema TABLES VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11865. NULL information_schema TABLES ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11866. NULL information_schema TABLES TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11867. NULL information_schema TABLES AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11868. NULL information_schema TABLES DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11869. NULL information_schema TABLES MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11870. NULL information_schema TABLES INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11871. NULL information_schema TABLES DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11872. NULL information_schema TABLES AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11873. NULL information_schema TABLES CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11874. NULL information_schema TABLES UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11875. NULL information_schema TABLES CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11876. NULL information_schema TABLES TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11877. NULL information_schema TABLES CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11878. NULL information_schema TABLES CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  11879. NULL information_schema TABLES TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11880. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11881. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11882. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11883. NULL information_schema TABLE_CONSTRAINTS TABLE_SCHEMA 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11884. NULL information_schema TABLE_CONSTRAINTS TABLE_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11885. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11886. NULL information_schema TABLE_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11887. NULL information_schema TABLE_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11888. NULL information_schema TABLE_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11889. NULL information_schema TABLE_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11890. NULL information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11891. NULL information_schema TABLE_PRIVILEGES IS_GRANTABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11892. NULL information_schema TRIGGERS TRIGGER_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11893. NULL information_schema TRIGGERS TRIGGER_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11894. NULL information_schema TRIGGERS TRIGGER_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11895. NULL information_schema TRIGGERS EVENT_MANIPULATION 4 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  11896. NULL information_schema TRIGGERS EVENT_OBJECT_CATALOG 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11897. NULL information_schema TRIGGERS EVENT_OBJECT_SCHEMA 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11898. NULL information_schema TRIGGERS EVENT_OBJECT_TABLE 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11899. NULL information_schema TRIGGERS ACTION_ORDER 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11900. NULL information_schema TRIGGERS ACTION_CONDITION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11901. NULL information_schema TRIGGERS ACTION_STATEMENT 10 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11902. NULL information_schema TRIGGERS ACTION_ORIENTATION 11 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  11903. NULL information_schema TRIGGERS ACTION_TIMING 12 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  11904. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11905. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11906. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW 15 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11907. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11908. NULL information_schema TRIGGERS CREATED 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11909. NULL information_schema TRIGGERS SQL_MODE 18 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11910. NULL information_schema TRIGGERS DEFINER 19 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11911. NULL information_schema TRIGGERS CHARACTER_SET_CLIENT 20 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11912. NULL information_schema TRIGGERS COLLATION_CONNECTION 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11913. NULL information_schema TRIGGERS DATABASE_COLLATION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11914. NULL information_schema USER_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11915. NULL information_schema USER_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11916. NULL information_schema USER_PRIVILEGES PRIVILEGE_TYPE 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11917. NULL information_schema USER_PRIVILEGES IS_GRANTABLE 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11918. NULL information_schema VIEWS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11919. NULL information_schema VIEWS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11920. NULL information_schema VIEWS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11921. NULL information_schema VIEWS VIEW_DEFINITION 4 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11922. NULL information_schema VIEWS CHECK_OPTION 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11923. NULL information_schema VIEWS IS_UPDATABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11924. NULL information_schema VIEWS DEFINER 7 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  11925. NULL information_schema VIEWS SECURITY_TYPE 8 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  11926. NULL information_schema VIEWS CHARACTER_SET_CLIENT 9 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11927. NULL information_schema VIEWS COLLATION_CONNECTION 10 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11928. NULL test t1 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11929. NULL test t1 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11930. NULL test t1 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11931. NULL test t1 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11932. NULL test t1 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11933. NULL test t1 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11934. NULL test t10 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11935. NULL test t10 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11936. NULL test t10 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11937. NULL test t10 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11938. NULL test t10 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11939. NULL test t10 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11940. NULL test t11 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11941. NULL test t11 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11942. NULL test t11 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11943. NULL test t11 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11944. NULL test t11 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11945. NULL test t11 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11946. NULL test t2 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11947. NULL test t2 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11948. NULL test t2 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11949. NULL test t2 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11950. NULL test t2 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11951. NULL test t2 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11952. NULL test t3 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11953. NULL test t3 f2 2 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11954. NULL test t3 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11955. NULL test t4 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11956. NULL test t4 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11957. NULL test t4 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11958. NULL test t4 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11959. NULL test t4 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11960. NULL test t4 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11961. NULL test t7 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11962. NULL test t7 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11963. NULL test t7 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11964. NULL test t7 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11965. NULL test t8 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11966. NULL test t8 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11967. NULL test t8 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11968. NULL test t8 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11969. NULL test t9 f1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11970. NULL test t9 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11971. NULL test t9 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11972. NULL test tb1 f1 1 NULL YES char 0 0 NULL NULL latin1 latin1_swedish_ci char(0) select,insert,update,references
  11973. NULL test tb1 f2 2 NULL YES char 0 0 NULL NULL latin1 latin1_bin char(0) select,insert,update,references
  11974. NULL test tb1 f3 3 NULL YES char 0 0 NULL NULL latin1 latin1_swedish_ci char(0) select,insert,update,references
  11975. NULL test tb1 f4 4 NULL YES tinytext 127 255 NULL NULL ucs2 ucs2_general_ci tinytext select,insert,update,references
  11976. NULL test tb1 f5 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  11977. NULL test tb1 f6 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  11978. NULL test tb1 f7 7 NULL YES longtext 4294967295 4294967295 NULL NULL latin1 latin1_swedish_ci longtext select,insert,update,references
  11979. NULL test tb1 f8 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  11980. NULL test tb1 f9 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  11981. NULL test tb1 f10 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  11982. NULL test tb1 f11 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  11983. NULL test tb1 f12 12 NULL YES binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  11984. NULL test tb1 f13 13 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  11985. NULL test tb1 f14 14 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  11986. NULL test tb1 f15 15 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11987. NULL test tb1 f16 16 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11988. NULL test tb1 f17 17 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  11989. NULL test tb1 f18 18 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  11990. NULL test tb1 f19 19 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11991. NULL test tb1 f20 20 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11992. NULL test tb1 f21 21 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  11993. NULL test tb1 f22 22 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  11994. NULL test tb1 f23 23 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11995. NULL test tb1 f24 24 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11996. NULL test tb1 f25 25 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11997. NULL test tb1 f26 26 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  11998. NULL test tb1 f27 27 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11999. NULL test tb1 f28 28 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  12000. NULL test tb1 f29 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  12001. NULL test tb1 f30 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  12002. NULL test tb1 f31 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  12003. NULL test tb1 f32 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  12004. NULL test tb1 f33 33 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  12005. NULL test tb1 f34 34 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  12006. NULL test tb1 f35 35 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12007. NULL test tb1 f36 36 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12008. NULL test tb1 f37 37 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  12009. NULL test tb1 f38 38 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  12010. NULL test tb1 f39 39 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  12011. NULL test tb1 f40 40 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  12012. NULL test tb1 f41 41 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12013. NULL test tb1 f42 42 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  12014. NULL test tb1 f43 43 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12015. NULL test tb1 f44 44 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  12016. NULL test tb1 f45 45 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  12017. NULL test tb1 f46 46 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  12018. NULL test tb1 f47 47 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  12019. NULL test tb1 f48 48 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  12020. NULL test tb1 f49 49 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12021. NULL test tb1 f50 50 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  12022. NULL test tb1 f51 51 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12023. NULL test tb1 f52 52 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  12024. NULL test tb1 f53 53 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  12025. NULL test tb1 f54 54 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  12026. NULL test tb1 f55 55 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12027. NULL test tb1 f56 56 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12028. NULL test tb1 f57 57 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  12029. NULL test tb1 f58 58 99 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  12030. NULL test tb2 f59 1 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  12031. NULL test tb2 f60 2 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  12032. NULL test tb2 f61 3 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12033. NULL test tb2 f62 4 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  12034. NULL test tb2 f63 5 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12035. NULL test tb2 f64 6 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  12036. NULL test tb2 f65 7 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  12037. NULL test tb2 f66 8 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  12038. NULL test tb2 f67 9 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  12039. NULL test tb2 f68 10 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  12040. NULL test tb2 f69 11 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12041. NULL test tb2 f70 12 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  12042. NULL test tb2 f71 13 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12043. NULL test tb2 f72 14 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  12044. NULL test tb2 f73 15 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  12045. NULL test tb2 f74 16 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  12046. NULL test tb2 f75 17 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  12047. NULL test tb2 f76 18 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  12048. NULL test tb2 f77 19 7.7 YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  12049. NULL test tb2 f78 20 7.7 YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  12050. NULL test tb2 f79 21 00000000000000000007.7 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  12051. NULL test tb2 f80 22 00000000000000000008.8 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  12052. NULL test tb2 f81 23 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  12053. NULL test tb2 f82 24 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  12054. NULL test tb2 f83 25 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12055. NULL test tb2 f84 26 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12056. NULL test tb2 f85 27 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  12057. NULL test tb2 f86 28 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  12058. NULL test tb2 f87 29 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  12059. NULL test tb2 f88 30 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  12060. NULL test tb2 f89 31 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12061. NULL test tb2 f90 32 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12062. NULL test tb2 f91 33 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12063. NULL test tb2 f92 34 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12064. NULL test tb2 f93 35 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  12065. NULL test tb2 f94 36 8.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  12066. NULL test tb2 f95 37 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  12067. NULL test tb2 f96 38 8.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  12068. NULL test tb2 f97 39 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12069. NULL test tb2 f98 40 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  12070. NULL test tb2 f99 41 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12071. NULL test tb2 f100 42 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  12072. NULL test tb2 f101 43 2000-01-01 NO date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  12073. NULL test tb2 f102 44 00:00:20 NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  12074. NULL test tb2 f103 45 0002-02-02 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  12075. NULL test tb2 f104 46 2000-12-31 23:59:59 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  12076. NULL test tb2 f105 47 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  12077. NULL test tb2 f106 48 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  12078. NULL test tb2 f107 49 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  12079. NULL test tb2 f108 50 1enum NO enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  12080. NULL test tb2 f109 51 1set NO set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  12081. NULL test tb3 f118 1 a NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  12082. NULL test tb3 f119 2  NO char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  12083. NULL test tb3 f120 3  NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  12084. NULL test tb3 f121 4 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  12085. NULL test tb3 f122 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  12086. NULL test tb3 f123 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  12087. NULL test tb3 f124 7 NULL YES longtext 2147483647 4294967295 NULL NULL ucs2 ucs2_general_ci longtext select,insert,update,references
  12088. NULL test tb3 f125 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  12089. NULL test tb3 f126 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  12090. NULL test tb3 f127 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  12091. NULL test tb3 f128 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  12092. NULL test tb3 f129 12  NO binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  12093. NULL test tb3 f130 13 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  12094. NULL test tb3 f131 14 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  12095. NULL test tb3 f132 15 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  12096. NULL test tb3 f133 16 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  12097. NULL test tb3 f134 17 999 NO smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  12098. NULL test tb3 f135 18 999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  12099. NULL test tb3 f136 19 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  12100. NULL test tb3 f137 20 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  12101. NULL test tb3 f138 21 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  12102. NULL test tb3 f139 22 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  12103. NULL test tb3 f140 23 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  12104. NULL test tb3 f141 24 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  12105. NULL test tb3 f142 25 99999 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  12106. NULL test tb3 f143 26 99999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  12107. NULL test tb3 f144 27 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  12108. NULL test tb3 f145 28 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  12109. NULL test tb3 f146 29 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  12110. NULL test tb3 f147 30 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  12111. NULL test tb3 f148 31 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  12112. NULL test tb3 f149 32 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  12113. NULL test tb3 f150 33 1000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  12114. NULL test tb3 f151 34 999 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  12115. NULL test tb3 f152 35 0000001000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12116. NULL test tb3 f153 36 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12117. NULL test tb3 f154 37 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  12118. NULL test tb3 f155 38 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  12119. NULL test tb3 f156 39 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  12120. NULL test tb3 f157 40 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  12121. NULL test tb3 f158 41 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12122. NULL test tb3 f159 42 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  12123. NULL test tb3 f160 43 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12124. NULL test tb3 f161 44 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  12125. NULL test tb3 f162 45 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  12126. NULL test tb3 f163 46 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  12127. NULL test tb3 f164 47 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  12128. NULL test tb3 f165 48 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  12129. NULL test tb3 f166 49 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12130. NULL test tb3 f167 50 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  12131. NULL test tb3 f168 51 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12132. NULL test tb3 f169 52 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  12133. NULL test tb3 f170 53 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  12134. NULL test tb3 f171 54 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  12135. NULL test tb3 f172 55 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12136. NULL test tb3 f173 56 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12137. NULL test tb3 f174 57 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  12138. NULL test tb3 f175 58 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  12139. NULL test tb4 f176 1 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  12140. NULL test tb4 f177 2 9 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  12141. NULL test tb4 f178 3 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12142. NULL test tb4 f179 4 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  12143. NULL test tb4 f180 5 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12144. NULL test tb4 f181 6 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  12145. NULL test tb4 f182 7 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  12146. NULL test tb4 f183 8 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  12147. NULL test tb4 f184 9 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  12148. NULL test tb4 f185 10 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  12149. NULL test tb4 f186 11 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12150. NULL test tb4 f187 12 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  12151. NULL test tb4 f188 13 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  12152. NULL test tb4 f189 14 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  12153. NULL test tb4 f190 15 88.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  12154. NULL test tb4 f191 16 88.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  12155. NULL test tb4 f192 17 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  12156. NULL test tb4 f193 18 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  12157. NULL test tb4 f194 19 55.5 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  12158. NULL test tb4 f195 20 55.5 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  12159. NULL test tb4 f196 21 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  12160. NULL test tb4 f197 22 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  12161. NULL test tb4 f198 23 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  12162. NULL test tb4 f199 24 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  12163. NULL test tb4 f200 25 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12164. NULL test tb4 f201 26 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12165. NULL test tb4 f202 27 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  12166. NULL test tb4 f203 28 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  12167. NULL test tb4 f204 29 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  12168. NULL test tb4 f205 30 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  12169. NULL test tb4 f206 31 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12170. NULL test tb4 f207 32 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12171. NULL test tb4 f208 33 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12172. NULL test tb4 f209 34 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12173. NULL test tb4 f210 35 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  12174. NULL test tb4 f211 36 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  12175. NULL test tb4 f212 37 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  12176. NULL test tb4 f213 38 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  12177. NULL test tb4 f214 39 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12178. NULL test tb4 f215 40 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  12179. NULL test tb4 f216 41 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  12180. NULL test tb4 f217 42 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  12181. NULL test tb4 f218 43 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  12182. NULL test tb4 f219 44 NULL YES time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  12183. NULL test tb4 f220 45 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  12184. NULL test tb4 f221 46 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp on update CURRENT_TIMESTAMP select,insert,update,references
  12185. NULL test tb4 f222 47 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  12186. NULL test tb4 f223 48 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  12187. NULL test tb4 f224 49 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  12188. NULL test tb4 f225 50 NULL YES enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  12189. NULL test tb4 f226 51 NULL YES set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  12190. NULL test tb4 f235 52 NULL YES char 0 0 NULL NULL ucs2 ucs2_general_ci char(0) select,insert,update,references
  12191. NULL test tb4 f236 53 NULL YES char 90 90 NULL NULL latin1 latin1_swedish_ci char(90) select,insert,update,references
  12192. NULL test tb4 f237 54 NULL YES char 255 255 NULL NULL latin1 latin1_swedish_ci char(255) select,insert,update,references
  12193. NULL test tb4 f238 55 NULL YES varchar 0 0 NULL NULL latin1 latin1_swedish_ci varchar(0) select,insert,update,references
  12194. NULL test tb4 f239 56 NULL YES varchar 20000 20000 NULL NULL latin1 latin1_bin varchar(20000) select,insert,update,references
  12195. NULL test tb4 f240 57 NULL YES varchar 2000 4000 NULL NULL ucs2 ucs2_general_ci varchar(2000) select,insert,update,references
  12196. NULL test tb4 f241 58 NULL YES char 100 200 NULL NULL ucs2 ucs2_general_ci char(100) select,insert,update,references
  12197. root@localhost db_datadict
  12198. Show the quotient of COL and CML for all COLUMNS
  12199. ------------------------------------------------
  12200. SELECT DISTINCT
  12201. CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH AS COL_CML,
  12202. DATA_TYPE,
  12203. CHARACTER_SET_NAME,
  12204. COLLATION_NAME
  12205. FROM information_schema.columns
  12206. WHERE CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH = 1
  12207. ORDER BY CHARACTER_SET_NAME, COLLATION_NAME, COL_CML;
  12208. COL_CML DATA_TYPE CHARACTER_SET_NAME COLLATION_NAME
  12209. 1.0000 binary NULL NULL
  12210. 1.0000 blob NULL NULL
  12211. 1.0000 longblob NULL NULL
  12212. 1.0000 mediumblob NULL NULL
  12213. 1.0000 tinyblob NULL NULL
  12214. 1.0000 char latin1 latin1_bin
  12215. 1.0000 varchar latin1 latin1_bin
  12216. 1.0000 char latin1 latin1_swedish_ci
  12217. 1.0000 enum latin1 latin1_swedish_ci
  12218. 1.0000 longtext latin1 latin1_swedish_ci
  12219. 1.0000 mediumtext latin1 latin1_swedish_ci
  12220. 1.0000 set latin1 latin1_swedish_ci
  12221. 1.0000 text latin1 latin1_swedish_ci
  12222. 1.0000 tinytext latin1 latin1_swedish_ci
  12223. 1.0000 varchar latin1 latin1_swedish_ci
  12224. 1.0000 longtext utf8 utf8_general_ci
  12225. 1.0000 mediumtext utf8 utf8_general_ci
  12226. 1.0000 text utf8 utf8_general_ci
  12227. SELECT DISTINCT
  12228. CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH AS COL_CML,
  12229. DATA_TYPE,
  12230. CHARACTER_SET_NAME,
  12231. COLLATION_NAME
  12232. FROM information_schema.columns
  12233. WHERE CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH <> 1
  12234. ORDER BY CHARACTER_SET_NAME, COLLATION_NAME, COL_CML;
  12235. COL_CML DATA_TYPE CHARACTER_SET_NAME COLLATION_NAME
  12236. 2.0000 char ucs2 ucs2_general_ci
  12237. 2.0000 longtext ucs2 ucs2_general_ci
  12238. 2.0000 varchar ucs2 ucs2_general_ci
  12239. 2.0079 tinytext ucs2 ucs2_general_ci
  12240. 3.0000 char utf8 utf8_bin
  12241. 3.0000 enum utf8 utf8_bin
  12242. 3.0000 char utf8 utf8_general_ci
  12243. 3.0000 enum utf8 utf8_general_ci
  12244. 3.0000 set utf8 utf8_general_ci
  12245. 3.0000 varchar utf8 utf8_general_ci
  12246. SELECT DISTINCT
  12247. CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH AS COL_CML,
  12248. DATA_TYPE,
  12249. CHARACTER_SET_NAME,
  12250. COLLATION_NAME
  12251. FROM information_schema.columns
  12252. WHERE CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH IS NULL
  12253. ORDER BY CHARACTER_SET_NAME, COLLATION_NAME, COL_CML;
  12254. COL_CML DATA_TYPE CHARACTER_SET_NAME COLLATION_NAME
  12255. NULL bigint NULL NULL
  12256. NULL date NULL NULL
  12257. NULL datetime NULL NULL
  12258. NULL decimal NULL NULL
  12259. NULL double NULL NULL
  12260. NULL double unsigned NULL NULL
  12261. NULL double unsigned zerofill NULL NULL
  12262. NULL float NULL NULL
  12263. NULL float unsigned NULL NULL
  12264. NULL float unsigned zerofill NULL NULL
  12265. NULL int NULL NULL
  12266. NULL mediumint NULL NULL
  12267. NULL smallint NULL NULL
  12268. NULL time NULL NULL
  12269. NULL timestamp NULL NULL
  12270. NULL tinyint NULL NULL
  12271. NULL year NULL NULL
  12272. NULL char latin1 latin1_bin
  12273. NULL char latin1 latin1_swedish_ci
  12274. NULL varchar latin1 latin1_swedish_ci
  12275. NULL char ucs2 ucs2_general_ci
  12276. --> CHAR(0) is allowed (see manual), and here both CHARACHTER_* values
  12277. --> are 0, which is intended behavior, and the result of 0 / 0 IS NULL
  12278. SELECT CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH AS COL_CML,
  12279. TABLE_SCHEMA,
  12280. TABLE_NAME,
  12281. COLUMN_NAME,
  12282. DATA_TYPE,
  12283. CHARACTER_MAXIMUM_LENGTH,
  12284. CHARACTER_OCTET_LENGTH,
  12285. CHARACTER_SET_NAME,
  12286. COLLATION_NAME,
  12287. COLUMN_TYPE
  12288. FROM information_schema.columns
  12289. ORDER BY TABLE_SCHEMA, TABLE_NAME, ORDINAL_POSITION;
  12290. COL_CML TABLE_SCHEMA TABLE_NAME COLUMN_NAME DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE
  12291. 1.0000 db_datadict t_6_406001 f1 char 10 10 latin1 latin1_swedish_ci char(10)
  12292. 1.0000 db_datadict t_6_406001 f2 text 65535 65535 latin1 latin1_swedish_ci text
  12293. NULL db_datadict t_6_406001 f3 date NULL NULL NULL NULL date
  12294. NULL db_datadict t_6_406001 f4 int NULL NULL NULL NULL int(11)
  12295. 1.0000 db_datadict t_6_406002 f1 char 10 10 latin1 latin1_swedish_ci char(10)
  12296. 1.0000 db_datadict t_6_406002 f2 text 65535 65535 latin1 latin1_swedish_ci text
  12297. NULL db_datadict t_6_406002 f3 date NULL NULL NULL NULL date
  12298. NULL db_datadict t_6_406002 f4 int NULL NULL NULL NULL int(11)
  12299. 3.0000 information_schema CHARACTER_SETS CHARACTER_SET_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12300. 3.0000 information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12301. 3.0000 information_schema CHARACTER_SETS DESCRIPTION varchar 60 180 utf8 utf8_general_ci varchar(60)
  12302. NULL information_schema CHARACTER_SETS MAXLEN bigint NULL NULL NULL NULL bigint(3)
  12303. 3.0000 information_schema COLLATIONS COLLATION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12304. 3.0000 information_schema COLLATIONS CHARACTER_SET_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12305. NULL information_schema COLLATIONS ID bigint NULL NULL NULL NULL bigint(11)
  12306. 3.0000 information_schema COLLATIONS IS_DEFAULT varchar 3 9 utf8 utf8_general_ci varchar(3)
  12307. 3.0000 information_schema COLLATIONS IS_COMPILED varchar 3 9 utf8 utf8_general_ci varchar(3)
  12308. NULL information_schema COLLATIONS SORTLEN bigint NULL NULL NULL NULL bigint(3)
  12309. 3.0000 information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12310. 3.0000 information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12311. 3.0000 information_schema COLUMNS TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12312. 3.0000 information_schema COLUMNS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12313. 3.0000 information_schema COLUMNS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12314. 3.0000 information_schema COLUMNS COLUMN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12315. NULL information_schema COLUMNS ORDINAL_POSITION bigint NULL NULL NULL NULL bigint(21) unsigned
  12316. 1.0000 information_schema COLUMNS COLUMN_DEFAULT longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12317. 3.0000 information_schema COLUMNS IS_NULLABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  12318. 3.0000 information_schema COLUMNS DATA_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12319. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  12320. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  12321. NULL information_schema COLUMNS NUMERIC_PRECISION bigint NULL NULL NULL NULL bigint(21) unsigned
  12322. NULL information_schema COLUMNS NUMERIC_SCALE bigint NULL NULL NULL NULL bigint(21) unsigned
  12323. 3.0000 information_schema COLUMNS CHARACTER_SET_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12324. 3.0000 information_schema COLUMNS COLLATION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12325. 1.0000 information_schema COLUMNS COLUMN_TYPE longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12326. 3.0000 information_schema COLUMNS COLUMN_KEY varchar 3 9 utf8 utf8_general_ci varchar(3)
  12327. 3.0000 information_schema COLUMNS EXTRA varchar 27 81 utf8 utf8_general_ci varchar(27)
  12328. 3.0000 information_schema COLUMNS PRIVILEGES varchar 80 240 utf8 utf8_general_ci varchar(80)
  12329. 3.0000 information_schema COLUMNS COLUMN_COMMENT varchar 255 765 utf8 utf8_general_ci varchar(255)
  12330. 3.0000 information_schema COLUMN_PRIVILEGES GRANTEE varchar 81 243 utf8 utf8_general_ci varchar(81)
  12331. 3.0000 information_schema COLUMN_PRIVILEGES TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12332. 3.0000 information_schema COLUMN_PRIVILEGES TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12333. 3.0000 information_schema COLUMN_PRIVILEGES TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12334. 3.0000 information_schema COLUMN_PRIVILEGES COLUMN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12335. 3.0000 information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12336. 3.0000 information_schema COLUMN_PRIVILEGES IS_GRANTABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  12337. 3.0000 information_schema ENGINES ENGINE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12338. 3.0000 information_schema ENGINES SUPPORT varchar 8 24 utf8 utf8_general_ci varchar(8)
  12339. 3.0000 information_schema ENGINES COMMENT varchar 80 240 utf8 utf8_general_ci varchar(80)
  12340. 3.0000 information_schema ENGINES TRANSACTIONS varchar 3 9 utf8 utf8_general_ci varchar(3)
  12341. 3.0000 information_schema ENGINES XA varchar 3 9 utf8 utf8_general_ci varchar(3)
  12342. 3.0000 information_schema ENGINES SAVEPOINTS varchar 3 9 utf8 utf8_general_ci varchar(3)
  12343. 3.0000 information_schema EVENTS EVENT_CATALOG varchar 64 192 utf8 utf8_general_ci varchar(64)
  12344. 3.0000 information_schema EVENTS EVENT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12345. 3.0000 information_schema EVENTS EVENT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12346. 3.0000 information_schema EVENTS DEFINER varchar 77 231 utf8 utf8_general_ci varchar(77)
  12347. 3.0000 information_schema EVENTS TIME_ZONE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12348. 3.0000 information_schema EVENTS EVENT_BODY varchar 8 24 utf8 utf8_general_ci varchar(8)
  12349. 1.0000 information_schema EVENTS EVENT_DEFINITION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12350. 3.0000 information_schema EVENTS EVENT_TYPE varchar 9 27 utf8 utf8_general_ci varchar(9)
  12351. NULL information_schema EVENTS EXECUTE_AT datetime NULL NULL NULL NULL datetime
  12352. 3.0000 information_schema EVENTS INTERVAL_VALUE varchar 256 768 utf8 utf8_general_ci varchar(256)
  12353. 3.0000 information_schema EVENTS INTERVAL_FIELD varchar 18 54 utf8 utf8_general_ci varchar(18)
  12354. 1.0000 information_schema EVENTS SQL_MODE longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12355. NULL information_schema EVENTS STARTS datetime NULL NULL NULL NULL datetime
  12356. NULL information_schema EVENTS ENDS datetime NULL NULL NULL NULL datetime
  12357. 3.0000 information_schema EVENTS STATUS varchar 18 54 utf8 utf8_general_ci varchar(18)
  12358. 3.0000 information_schema EVENTS ON_COMPLETION varchar 12 36 utf8 utf8_general_ci varchar(12)
  12359. NULL information_schema EVENTS CREATED datetime NULL NULL NULL NULL datetime
  12360. NULL information_schema EVENTS LAST_ALTERED datetime NULL NULL NULL NULL datetime
  12361. NULL information_schema EVENTS LAST_EXECUTED datetime NULL NULL NULL NULL datetime
  12362. 3.0000 information_schema EVENTS EVENT_COMMENT varchar 64 192 utf8 utf8_general_ci varchar(64)
  12363. NULL information_schema EVENTS ORIGINATOR bigint NULL NULL NULL NULL bigint(10)
  12364. 3.0000 information_schema EVENTS CHARACTER_SET_CLIENT varchar 32 96 utf8 utf8_general_ci varchar(32)
  12365. 3.0000 information_schema EVENTS COLLATION_CONNECTION varchar 32 96 utf8 utf8_general_ci varchar(32)
  12366. 3.0000 information_schema EVENTS DATABASE_COLLATION varchar 32 96 utf8 utf8_general_ci varchar(32)
  12367. NULL information_schema FILES FILE_ID bigint NULL NULL NULL NULL bigint(4)
  12368. 3.0000 information_schema FILES FILE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12369. 3.0000 information_schema FILES FILE_TYPE varchar 20 60 utf8 utf8_general_ci varchar(20)
  12370. 3.0000 information_schema FILES TABLESPACE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12371. 3.0000 information_schema FILES TABLE_CATALOG varchar 64 192 utf8 utf8_general_ci varchar(64)
  12372. 3.0000 information_schema FILES TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12373. 3.0000 information_schema FILES TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12374. 3.0000 information_schema FILES LOGFILE_GROUP_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12375. NULL information_schema FILES LOGFILE_GROUP_NUMBER bigint NULL NULL NULL NULL bigint(4)
  12376. 3.0000 information_schema FILES ENGINE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12377. 3.0000 information_schema FILES FULLTEXT_KEYS varchar 64 192 utf8 utf8_general_ci varchar(64)
  12378. NULL information_schema FILES DELETED_ROWS bigint NULL NULL NULL NULL bigint(4)
  12379. NULL information_schema FILES UPDATE_COUNT bigint NULL NULL NULL NULL bigint(4)
  12380. NULL information_schema FILES FREE_EXTENTS bigint NULL NULL NULL NULL bigint(4)
  12381. NULL information_schema FILES TOTAL_EXTENTS bigint NULL NULL NULL NULL bigint(4)
  12382. NULL information_schema FILES EXTENT_SIZE bigint NULL NULL NULL NULL bigint(4)
  12383. NULL information_schema FILES INITIAL_SIZE bigint NULL NULL NULL NULL bigint(21) unsigned
  12384. NULL information_schema FILES MAXIMUM_SIZE bigint NULL NULL NULL NULL bigint(21) unsigned
  12385. NULL information_schema FILES AUTOEXTEND_SIZE bigint NULL NULL NULL NULL bigint(21) unsigned
  12386. NULL information_schema FILES CREATION_TIME datetime NULL NULL NULL NULL datetime
  12387. NULL information_schema FILES LAST_UPDATE_TIME datetime NULL NULL NULL NULL datetime
  12388. NULL information_schema FILES LAST_ACCESS_TIME datetime NULL NULL NULL NULL datetime
  12389. NULL information_schema FILES RECOVER_TIME bigint NULL NULL NULL NULL bigint(4)
  12390. NULL information_schema FILES TRANSACTION_COUNTER bigint NULL NULL NULL NULL bigint(4)
  12391. NULL information_schema FILES VERSION bigint NULL NULL NULL NULL bigint(21) unsigned
  12392. 3.0000 information_schema FILES ROW_FORMAT varchar 10 30 utf8 utf8_general_ci varchar(10)
  12393. NULL information_schema FILES TABLE_ROWS bigint NULL NULL NULL NULL bigint(21) unsigned
  12394. NULL information_schema FILES AVG_ROW_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  12395. NULL information_schema FILES DATA_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  12396. NULL information_schema FILES MAX_DATA_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  12397. NULL information_schema FILES INDEX_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  12398. NULL information_schema FILES DATA_FREE bigint NULL NULL NULL NULL bigint(21) unsigned
  12399. NULL information_schema FILES CREATE_TIME datetime NULL NULL NULL NULL datetime
  12400. NULL information_schema FILES UPDATE_TIME datetime NULL NULL NULL NULL datetime
  12401. NULL information_schema FILES CHECK_TIME datetime NULL NULL NULL NULL datetime
  12402. NULL information_schema FILES CHECKSUM bigint NULL NULL NULL NULL bigint(21) unsigned
  12403. 3.0000 information_schema FILES STATUS varchar 20 60 utf8 utf8_general_ci varchar(20)
  12404. 3.0000 information_schema FILES EXTRA varchar 255 765 utf8 utf8_general_ci varchar(255)
  12405. 3.0000 information_schema GLOBAL_STATUS VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12406. 3.0000 information_schema GLOBAL_STATUS VARIABLE_VALUE varchar 20480 61440 utf8 utf8_general_ci varchar(20480)
  12407. 3.0000 information_schema GLOBAL_VARIABLES VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12408. 3.0000 information_schema GLOBAL_VARIABLES VARIABLE_VALUE varchar 20480 61440 utf8 utf8_general_ci varchar(20480)
  12409. 3.0000 information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12410. 3.0000 information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12411. 3.0000 information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12412. 3.0000 information_schema KEY_COLUMN_USAGE TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12413. 3.0000 information_schema KEY_COLUMN_USAGE TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12414. 3.0000 information_schema KEY_COLUMN_USAGE TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12415. 3.0000 information_schema KEY_COLUMN_USAGE COLUMN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12416. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION bigint NULL NULL NULL NULL bigint(10)
  12417. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT bigint NULL NULL NULL NULL bigint(10)
  12418. 3.0000 information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12419. 3.0000 information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12420. 3.0000 information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12421. 3.0000 information_schema PARTITIONS TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12422. 3.0000 information_schema PARTITIONS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12423. 3.0000 information_schema PARTITIONS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12424. 3.0000 information_schema PARTITIONS PARTITION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12425. 3.0000 information_schema PARTITIONS SUBPARTITION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12426. NULL information_schema PARTITIONS PARTITION_ORDINAL_POSITION bigint NULL NULL NULL NULL bigint(21) unsigned
  12427. NULL information_schema PARTITIONS SUBPARTITION_ORDINAL_POSITION bigint NULL NULL NULL NULL bigint(21) unsigned
  12428. 3.0000 information_schema PARTITIONS PARTITION_METHOD varchar 12 36 utf8 utf8_general_ci varchar(12)
  12429. 3.0000 information_schema PARTITIONS SUBPARTITION_METHOD varchar 12 36 utf8 utf8_general_ci varchar(12)
  12430. 1.0000 information_schema PARTITIONS PARTITION_EXPRESSION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12431. 1.0000 information_schema PARTITIONS SUBPARTITION_EXPRESSION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12432. 1.0000 information_schema PARTITIONS PARTITION_DESCRIPTION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12433. NULL information_schema PARTITIONS TABLE_ROWS bigint NULL NULL NULL NULL bigint(21) unsigned
  12434. NULL information_schema PARTITIONS AVG_ROW_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  12435. NULL information_schema PARTITIONS DATA_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  12436. NULL information_schema PARTITIONS MAX_DATA_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  12437. NULL information_schema PARTITIONS INDEX_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  12438. NULL information_schema PARTITIONS DATA_FREE bigint NULL NULL NULL NULL bigint(21) unsigned
  12439. NULL information_schema PARTITIONS CREATE_TIME datetime NULL NULL NULL NULL datetime
  12440. NULL information_schema PARTITIONS UPDATE_TIME datetime NULL NULL NULL NULL datetime
  12441. NULL information_schema PARTITIONS CHECK_TIME datetime NULL NULL NULL NULL datetime
  12442. NULL information_schema PARTITIONS CHECKSUM bigint NULL NULL NULL NULL bigint(21) unsigned
  12443. 3.0000 information_schema PARTITIONS PARTITION_COMMENT varchar 80 240 utf8 utf8_general_ci varchar(80)
  12444. 3.0000 information_schema PARTITIONS NODEGROUP varchar 12 36 utf8 utf8_general_ci varchar(12)
  12445. 3.0000 information_schema PARTITIONS TABLESPACE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12446. 3.0000 information_schema PLUGINS PLUGIN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12447. 3.0000 information_schema PLUGINS PLUGIN_VERSION varchar 20 60 utf8 utf8_general_ci varchar(20)
  12448. 3.0000 information_schema PLUGINS PLUGIN_STATUS varchar 10 30 utf8 utf8_general_ci varchar(10)
  12449. 3.0000 information_schema PLUGINS PLUGIN_TYPE varchar 80 240 utf8 utf8_general_ci varchar(80)
  12450. 3.0000 information_schema PLUGINS PLUGIN_TYPE_VERSION varchar 20 60 utf8 utf8_general_ci varchar(20)
  12451. 3.0000 information_schema PLUGINS PLUGIN_LIBRARY varchar 64 192 utf8 utf8_general_ci varchar(64)
  12452. 3.0000 information_schema PLUGINS PLUGIN_LIBRARY_VERSION varchar 20 60 utf8 utf8_general_ci varchar(20)
  12453. 3.0000 information_schema PLUGINS PLUGIN_AUTHOR varchar 64 192 utf8 utf8_general_ci varchar(64)
  12454. 1.0000 information_schema PLUGINS PLUGIN_DESCRIPTION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12455. 3.0000 information_schema PLUGINS PLUGIN_LICENSE varchar 80 240 utf8 utf8_general_ci varchar(80)
  12456. NULL information_schema PROCESSLIST ID bigint NULL NULL NULL NULL bigint(4)
  12457. 3.0000 information_schema PROCESSLIST USER varchar 16 48 utf8 utf8_general_ci varchar(16)
  12458. 3.0000 information_schema PROCESSLIST HOST varchar 64 192 utf8 utf8_general_ci varchar(64)
  12459. 3.0000 information_schema PROCESSLIST DB varchar 64 192 utf8 utf8_general_ci varchar(64)
  12460. 3.0000 information_schema PROCESSLIST COMMAND varchar 16 48 utf8 utf8_general_ci varchar(16)
  12461. NULL information_schema PROCESSLIST TIME bigint NULL NULL NULL NULL bigint(7)
  12462. 3.0000 information_schema PROCESSLIST STATE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12463. 1.0000 information_schema PROCESSLIST INFO longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12464. NULL information_schema PROFILING QUERY_ID int NULL NULL NULL NULL int(20)
  12465. NULL information_schema PROFILING SEQ int NULL NULL NULL NULL int(20)
  12466. 3.0000 information_schema PROFILING STATE varchar 30 90 utf8 utf8_general_ci varchar(30)
  12467. NULL information_schema PROFILING DURATION decimal NULL NULL NULL NULL decimal(9,6)
  12468. NULL information_schema PROFILING CPU_USER decimal NULL NULL NULL NULL decimal(9,6)
  12469. NULL information_schema PROFILING CPU_SYSTEM decimal NULL NULL NULL NULL decimal(9,6)
  12470. NULL information_schema PROFILING CONTEXT_VOLUNTARY int NULL NULL NULL NULL int(20)
  12471. NULL information_schema PROFILING CONTEXT_INVOLUNTARY int NULL NULL NULL NULL int(20)
  12472. NULL information_schema PROFILING BLOCK_OPS_IN int NULL NULL NULL NULL int(20)
  12473. NULL information_schema PROFILING BLOCK_OPS_OUT int NULL NULL NULL NULL int(20)
  12474. NULL information_schema PROFILING MESSAGES_SENT int NULL NULL NULL NULL int(20)
  12475. NULL information_schema PROFILING MESSAGES_RECEIVED int NULL NULL NULL NULL int(20)
  12476. NULL information_schema PROFILING PAGE_FAULTS_MAJOR int NULL NULL NULL NULL int(20)
  12477. NULL information_schema PROFILING PAGE_FAULTS_MINOR int NULL NULL NULL NULL int(20)
  12478. NULL information_schema PROFILING SWAPS int NULL NULL NULL NULL int(20)
  12479. 3.0000 information_schema PROFILING SOURCE_FUNCTION varchar 30 90 utf8 utf8_general_ci varchar(30)
  12480. 3.0000 information_schema PROFILING SOURCE_FILE varchar 20 60 utf8 utf8_general_ci varchar(20)
  12481. NULL information_schema PROFILING SOURCE_LINE int NULL NULL NULL NULL int(20)
  12482. 3.0000 information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12483. 3.0000 information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12484. 3.0000 information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12485. 3.0000 information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12486. 3.0000 information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12487. 3.0000 information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12488. 3.0000 information_schema REFERENTIAL_CONSTRAINTS MATCH_OPTION varchar 64 192 utf8 utf8_general_ci varchar(64)
  12489. 3.0000 information_schema REFERENTIAL_CONSTRAINTS UPDATE_RULE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12490. 3.0000 information_schema REFERENTIAL_CONSTRAINTS DELETE_RULE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12491. 3.0000 information_schema REFERENTIAL_CONSTRAINTS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12492. 3.0000 information_schema REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12493. 3.0000 information_schema ROUTINES SPECIFIC_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12494. 3.0000 information_schema ROUTINES ROUTINE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12495. 3.0000 information_schema ROUTINES ROUTINE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12496. 3.0000 information_schema ROUTINES ROUTINE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12497. 3.0000 information_schema ROUTINES ROUTINE_TYPE varchar 9 27 utf8 utf8_general_ci varchar(9)
  12498. 3.0000 information_schema ROUTINES DTD_IDENTIFIER varchar 64 192 utf8 utf8_general_ci varchar(64)
  12499. 3.0000 information_schema ROUTINES ROUTINE_BODY varchar 8 24 utf8 utf8_general_ci varchar(8)
  12500. 1.0000 information_schema ROUTINES ROUTINE_DEFINITION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12501. 3.0000 information_schema ROUTINES EXTERNAL_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12502. 3.0000 information_schema ROUTINES EXTERNAL_LANGUAGE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12503. 3.0000 information_schema ROUTINES PARAMETER_STYLE varchar 8 24 utf8 utf8_general_ci varchar(8)
  12504. 3.0000 information_schema ROUTINES IS_DETERMINISTIC varchar 3 9 utf8 utf8_general_ci varchar(3)
  12505. 3.0000 information_schema ROUTINES SQL_DATA_ACCESS varchar 64 192 utf8 utf8_general_ci varchar(64)
  12506. 3.0000 information_schema ROUTINES SQL_PATH varchar 64 192 utf8 utf8_general_ci varchar(64)
  12507. 3.0000 information_schema ROUTINES SECURITY_TYPE varchar 7 21 utf8 utf8_general_ci varchar(7)
  12508. NULL information_schema ROUTINES CREATED datetime NULL NULL NULL NULL datetime
  12509. NULL information_schema ROUTINES LAST_ALTERED datetime NULL NULL NULL NULL datetime
  12510. 1.0000 information_schema ROUTINES SQL_MODE longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12511. 3.0000 information_schema ROUTINES ROUTINE_COMMENT varchar 64 192 utf8 utf8_general_ci varchar(64)
  12512. 3.0000 information_schema ROUTINES DEFINER varchar 77 231 utf8 utf8_general_ci varchar(77)
  12513. 3.0000 information_schema ROUTINES CHARACTER_SET_CLIENT varchar 32 96 utf8 utf8_general_ci varchar(32)
  12514. 3.0000 information_schema ROUTINES COLLATION_CONNECTION varchar 32 96 utf8 utf8_general_ci varchar(32)
  12515. 3.0000 information_schema ROUTINES DATABASE_COLLATION varchar 32 96 utf8 utf8_general_ci varchar(32)
  12516. 3.0000 information_schema SCHEMATA CATALOG_NAME varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12517. 3.0000 information_schema SCHEMATA SCHEMA_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12518. 3.0000 information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12519. 3.0000 information_schema SCHEMATA DEFAULT_COLLATION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12520. 3.0000 information_schema SCHEMATA SQL_PATH varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12521. 3.0000 information_schema SCHEMA_PRIVILEGES GRANTEE varchar 81 243 utf8 utf8_general_ci varchar(81)
  12522. 3.0000 information_schema SCHEMA_PRIVILEGES TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12523. 3.0000 information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12524. 3.0000 information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12525. 3.0000 information_schema SCHEMA_PRIVILEGES IS_GRANTABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  12526. 3.0000 information_schema SESSION_STATUS VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12527. 3.0000 information_schema SESSION_STATUS VARIABLE_VALUE varchar 20480 61440 utf8 utf8_general_ci varchar(20480)
  12528. 3.0000 information_schema SESSION_VARIABLES VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12529. 3.0000 information_schema SESSION_VARIABLES VARIABLE_VALUE varchar 20480 61440 utf8 utf8_general_ci varchar(20480)
  12530. 3.0000 information_schema STATISTICS TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12531. 3.0000 information_schema STATISTICS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12532. 3.0000 information_schema STATISTICS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12533. NULL information_schema STATISTICS NON_UNIQUE bigint NULL NULL NULL NULL bigint(1)
  12534. 3.0000 information_schema STATISTICS INDEX_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12535. 3.0000 information_schema STATISTICS INDEX_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12536. NULL information_schema STATISTICS SEQ_IN_INDEX bigint NULL NULL NULL NULL bigint(2)
  12537. 3.0000 information_schema STATISTICS COLUMN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12538. 3.0000 information_schema STATISTICS COLLATION varchar 1 3 utf8 utf8_general_ci varchar(1)
  12539. NULL information_schema STATISTICS CARDINALITY bigint NULL NULL NULL NULL bigint(21)
  12540. NULL information_schema STATISTICS SUB_PART bigint NULL NULL NULL NULL bigint(3)
  12541. 3.0000 information_schema STATISTICS PACKED varchar 10 30 utf8 utf8_general_ci varchar(10)
  12542. 3.0000 information_schema STATISTICS NULLABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  12543. 3.0000 information_schema STATISTICS INDEX_TYPE varchar 16 48 utf8 utf8_general_ci varchar(16)
  12544. 3.0000 information_schema STATISTICS COMMENT varchar 16 48 utf8 utf8_general_ci varchar(16)
  12545. 3.0000 information_schema TABLES TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12546. 3.0000 information_schema TABLES TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12547. 3.0000 information_schema TABLES TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12548. 3.0000 information_schema TABLES TABLE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12549. 3.0000 information_schema TABLES ENGINE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12550. NULL information_schema TABLES VERSION bigint NULL NULL NULL NULL bigint(21) unsigned
  12551. 3.0000 information_schema TABLES ROW_FORMAT varchar 10 30 utf8 utf8_general_ci varchar(10)
  12552. NULL information_schema TABLES TABLE_ROWS bigint NULL NULL NULL NULL bigint(21) unsigned
  12553. NULL information_schema TABLES AVG_ROW_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  12554. NULL information_schema TABLES DATA_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  12555. NULL information_schema TABLES MAX_DATA_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  12556. NULL information_schema TABLES INDEX_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  12557. NULL information_schema TABLES DATA_FREE bigint NULL NULL NULL NULL bigint(21) unsigned
  12558. NULL information_schema TABLES AUTO_INCREMENT bigint NULL NULL NULL NULL bigint(21) unsigned
  12559. NULL information_schema TABLES CREATE_TIME datetime NULL NULL NULL NULL datetime
  12560. NULL information_schema TABLES UPDATE_TIME datetime NULL NULL NULL NULL datetime
  12561. NULL information_schema TABLES CHECK_TIME datetime NULL NULL NULL NULL datetime
  12562. 3.0000 information_schema TABLES TABLE_COLLATION varchar 64 192 utf8 utf8_general_ci varchar(64)
  12563. NULL information_schema TABLES CHECKSUM bigint NULL NULL NULL NULL bigint(21) unsigned
  12564. 3.0000 information_schema TABLES CREATE_OPTIONS varchar 255 765 utf8 utf8_general_ci varchar(255)
  12565. 3.0000 information_schema TABLES TABLE_COMMENT varchar 80 240 utf8 utf8_general_ci varchar(80)
  12566. 3.0000 information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12567. 3.0000 information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12568. 3.0000 information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12569. 3.0000 information_schema TABLE_CONSTRAINTS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12570. 3.0000 information_schema TABLE_CONSTRAINTS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12571. 3.0000 information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12572. 3.0000 information_schema TABLE_PRIVILEGES GRANTEE varchar 81 243 utf8 utf8_general_ci varchar(81)
  12573. 3.0000 information_schema TABLE_PRIVILEGES TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12574. 3.0000 information_schema TABLE_PRIVILEGES TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12575. 3.0000 information_schema TABLE_PRIVILEGES TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12576. 3.0000 information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12577. 3.0000 information_schema TABLE_PRIVILEGES IS_GRANTABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  12578. 3.0000 information_schema TRIGGERS TRIGGER_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12579. 3.0000 information_schema TRIGGERS TRIGGER_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12580. 3.0000 information_schema TRIGGERS TRIGGER_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12581. 3.0000 information_schema TRIGGERS EVENT_MANIPULATION varchar 6 18 utf8 utf8_general_ci varchar(6)
  12582. 3.0000 information_schema TRIGGERS EVENT_OBJECT_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12583. 3.0000 information_schema TRIGGERS EVENT_OBJECT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12584. 3.0000 information_schema TRIGGERS EVENT_OBJECT_TABLE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12585. NULL information_schema TRIGGERS ACTION_ORDER bigint NULL NULL NULL NULL bigint(4)
  12586. 1.0000 information_schema TRIGGERS ACTION_CONDITION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12587. 1.0000 information_schema TRIGGERS ACTION_STATEMENT longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12588. 3.0000 information_schema TRIGGERS ACTION_ORIENTATION varchar 9 27 utf8 utf8_general_ci varchar(9)
  12589. 3.0000 information_schema TRIGGERS ACTION_TIMING varchar 6 18 utf8 utf8_general_ci varchar(6)
  12590. 3.0000 information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12591. 3.0000 information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12592. 3.0000 information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW varchar 3 9 utf8 utf8_general_ci varchar(3)
  12593. 3.0000 information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW varchar 3 9 utf8 utf8_general_ci varchar(3)
  12594. NULL information_schema TRIGGERS CREATED datetime NULL NULL NULL NULL datetime
  12595. 1.0000 information_schema TRIGGERS SQL_MODE longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12596. 1.0000 information_schema TRIGGERS DEFINER longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12597. 3.0000 information_schema TRIGGERS CHARACTER_SET_CLIENT varchar 32 96 utf8 utf8_general_ci varchar(32)
  12598. 3.0000 information_schema TRIGGERS COLLATION_CONNECTION varchar 32 96 utf8 utf8_general_ci varchar(32)
  12599. 3.0000 information_schema TRIGGERS DATABASE_COLLATION varchar 32 96 utf8 utf8_general_ci varchar(32)
  12600. 3.0000 information_schema USER_PRIVILEGES GRANTEE varchar 81 243 utf8 utf8_general_ci varchar(81)
  12601. 3.0000 information_schema USER_PRIVILEGES TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12602. 3.0000 information_schema USER_PRIVILEGES PRIVILEGE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12603. 3.0000 information_schema USER_PRIVILEGES IS_GRANTABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  12604. 3.0000 information_schema VIEWS TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12605. 3.0000 information_schema VIEWS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12606. 3.0000 information_schema VIEWS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12607. 1.0000 information_schema VIEWS VIEW_DEFINITION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12608. 3.0000 information_schema VIEWS CHECK_OPTION varchar 8 24 utf8 utf8_general_ci varchar(8)
  12609. 3.0000 information_schema VIEWS IS_UPDATABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  12610. 3.0000 information_schema VIEWS DEFINER varchar 77 231 utf8 utf8_general_ci varchar(77)
  12611. 3.0000 information_schema VIEWS SECURITY_TYPE varchar 7 21 utf8 utf8_general_ci varchar(7)
  12612. 3.0000 information_schema VIEWS CHARACTER_SET_CLIENT varchar 32 96 utf8 utf8_general_ci varchar(32)
  12613. 3.0000 information_schema VIEWS COLLATION_CONNECTION varchar 32 96 utf8 utf8_general_ci varchar(32)
  12614. 3.0000 mysql columns_priv Host char 60 180 utf8 utf8_bin char(60)
  12615. 3.0000 mysql columns_priv Db char 64 192 utf8 utf8_bin char(64)
  12616. 3.0000 mysql columns_priv User char 16 48 utf8 utf8_bin char(16)
  12617. 3.0000 mysql columns_priv Table_name char 64 192 utf8 utf8_bin char(64)
  12618. 3.0000 mysql columns_priv Column_name char 64 192 utf8 utf8_bin char(64)
  12619. NULL mysql columns_priv Timestamp timestamp NULL NULL NULL NULL timestamp
  12620. 3.0000 mysql columns_priv Column_priv set 31 93 utf8 utf8_general_ci set('Select','Insert','Update','References')
  12621. 3.0000 mysql db Host char 60 180 utf8 utf8_bin char(60)
  12622. 3.0000 mysql db Db char 64 192 utf8 utf8_bin char(64)
  12623. 3.0000 mysql db User char 16 48 utf8 utf8_bin char(16)
  12624. 3.0000 mysql db Select_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12625. 3.0000 mysql db Insert_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12626. 3.0000 mysql db Update_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12627. 3.0000 mysql db Delete_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12628. 3.0000 mysql db Create_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12629. 3.0000 mysql db Drop_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12630. 3.0000 mysql db Grant_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12631. 3.0000 mysql db References_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12632. 3.0000 mysql db Index_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12633. 3.0000 mysql db Alter_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12634. 3.0000 mysql db Create_tmp_table_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12635. 3.0000 mysql db Lock_tables_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12636. 3.0000 mysql db Create_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12637. 3.0000 mysql db Show_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12638. 3.0000 mysql db Create_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12639. 3.0000 mysql db Alter_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12640. 3.0000 mysql db Execute_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12641. 3.0000 mysql db Event_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12642. 3.0000 mysql db Trigger_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12643. 3.0000 mysql event db char 64 192 utf8 utf8_bin char(64)
  12644. 3.0000 mysql event name char 64 192 utf8 utf8_general_ci char(64)
  12645. 1.0000 mysql event body longblob 4294967295 4294967295 NULL NULL longblob
  12646. 3.0000 mysql event definer char 77 231 utf8 utf8_bin char(77)
  12647. NULL mysql event execute_at datetime NULL NULL NULL NULL datetime
  12648. NULL mysql event interval_value int NULL NULL NULL NULL int(11)
  12649. 3.0000 mysql event interval_field enum 18 54 utf8 utf8_general_ci enum('YEAR','QUARTER','MONTH','DAY','HOUR','MINUTE','WEEK','SECOND','MICROSECOND','YEAR_MONTH','DAY_HOUR','DAY_MINUTE','DAY_SECOND','HOUR_MINUTE','HOUR_SECOND','MINUTE_SECOND','DAY_MICROSECOND','HOUR_MICROSECOND','MINUTE_MICROSECOND','SECOND_MICROSECOND')
  12650. NULL mysql event created timestamp NULL NULL NULL NULL timestamp
  12651. NULL mysql event modified timestamp NULL NULL NULL NULL timestamp
  12652. NULL mysql event last_executed datetime NULL NULL NULL NULL datetime
  12653. NULL mysql event starts datetime NULL NULL NULL NULL datetime
  12654. NULL mysql event ends datetime NULL NULL NULL NULL datetime
  12655. 3.0000 mysql event status enum 18 54 utf8 utf8_general_ci enum('ENABLED','DISABLED','SLAVESIDE_DISABLED')
  12656. 3.0000 mysql event on_completion enum 8 24 utf8 utf8_general_ci enum('DROP','PRESERVE')
  12657. 3.0000 mysql event sql_mode set 431 1293 utf8 utf8_general_ci set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE')
  12658. 3.0000 mysql event comment char 64 192 utf8 utf8_bin char(64)
  12659. NULL mysql event originator int NULL NULL NULL NULL int(10)
  12660. 1.0000 mysql event time_zone char 64 64 latin1 latin1_swedish_ci char(64)
  12661. 3.0000 mysql event character_set_client char 32 96 utf8 utf8_bin char(32)
  12662. 3.0000 mysql event collation_connection char 32 96 utf8 utf8_bin char(32)
  12663. 3.0000 mysql event db_collation char 32 96 utf8 utf8_bin char(32)
  12664. 1.0000 mysql event body_utf8 longblob 4294967295 4294967295 NULL NULL longblob
  12665. 3.0000 mysql func name char 64 192 utf8 utf8_bin char(64)
  12666. NULL mysql func ret tinyint NULL NULL NULL NULL tinyint(1)
  12667. 3.0000 mysql func dl char 128 384 utf8 utf8_bin char(128)
  12668. 3.0000 mysql func type enum 9 27 utf8 utf8_general_ci enum('function','aggregate')
  12669. NULL mysql general_log event_time timestamp NULL NULL NULL NULL timestamp
  12670. 1.0000 mysql general_log user_host mediumtext 16777215 16777215 utf8 utf8_general_ci mediumtext
  12671. NULL mysql general_log thread_id int NULL NULL NULL NULL int(11)
  12672. NULL mysql general_log server_id int NULL NULL NULL NULL int(11)
  12673. 3.0000 mysql general_log command_type varchar 64 192 utf8 utf8_general_ci varchar(64)
  12674. 1.0000 mysql general_log argument mediumtext 16777215 16777215 utf8 utf8_general_ci mediumtext
  12675. NULL mysql help_category help_category_id smallint NULL NULL NULL NULL smallint(5) unsigned
  12676. 3.0000 mysql help_category name char 64 192 utf8 utf8_general_ci char(64)
  12677. NULL mysql help_category parent_category_id smallint NULL NULL NULL NULL smallint(5) unsigned
  12678. 3.0000 mysql help_category url char 128 384 utf8 utf8_general_ci char(128)
  12679. NULL mysql help_keyword help_keyword_id int NULL NULL NULL NULL int(10) unsigned
  12680. 3.0000 mysql help_keyword name char 64 192 utf8 utf8_general_ci char(64)
  12681. NULL mysql help_relation help_topic_id int NULL NULL NULL NULL int(10) unsigned
  12682. NULL mysql help_relation help_keyword_id int NULL NULL NULL NULL int(10) unsigned
  12683. NULL mysql help_topic help_topic_id int NULL NULL NULL NULL int(10) unsigned
  12684. 3.0000 mysql help_topic name char 64 192 utf8 utf8_general_ci char(64)
  12685. NULL mysql help_topic help_category_id smallint NULL NULL NULL NULL smallint(5) unsigned
  12686. 1.0000 mysql help_topic description text 65535 65535 utf8 utf8_general_ci text
  12687. 1.0000 mysql help_topic example text 65535 65535 utf8 utf8_general_ci text
  12688. 3.0000 mysql help_topic url char 128 384 utf8 utf8_general_ci char(128)
  12689. 3.0000 mysql host Host char 60 180 utf8 utf8_bin char(60)
  12690. 3.0000 mysql host Db char 64 192 utf8 utf8_bin char(64)
  12691. 3.0000 mysql host Select_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12692. 3.0000 mysql host Insert_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12693. 3.0000 mysql host Update_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12694. 3.0000 mysql host Delete_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12695. 3.0000 mysql host Create_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12696. 3.0000 mysql host Drop_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12697. 3.0000 mysql host Grant_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12698. 3.0000 mysql host References_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12699. 3.0000 mysql host Index_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12700. 3.0000 mysql host Alter_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12701. 3.0000 mysql host Create_tmp_table_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12702. 3.0000 mysql host Lock_tables_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12703. 3.0000 mysql host Create_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12704. 3.0000 mysql host Show_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12705. 3.0000 mysql host Create_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12706. 3.0000 mysql host Alter_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12707. 3.0000 mysql host Execute_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12708. 3.0000 mysql host Trigger_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12709. NULL mysql ndb_binlog_index Position bigint NULL NULL NULL NULL bigint(20) unsigned
  12710. 1.0000 mysql ndb_binlog_index File varchar 255 255 latin1 latin1_swedish_ci varchar(255)
  12711. NULL mysql ndb_binlog_index epoch bigint NULL NULL NULL NULL bigint(20) unsigned
  12712. NULL mysql ndb_binlog_index inserts bigint NULL NULL NULL NULL bigint(20) unsigned
  12713. NULL mysql ndb_binlog_index updates bigint NULL NULL NULL NULL bigint(20) unsigned
  12714. NULL mysql ndb_binlog_index deletes bigint NULL NULL NULL NULL bigint(20) unsigned
  12715. NULL mysql ndb_binlog_index schemaops bigint NULL NULL NULL NULL bigint(20) unsigned
  12716. 3.0000 mysql plugin name char 64 192 utf8 utf8_bin char(64)
  12717. 3.0000 mysql plugin dl char 128 384 utf8 utf8_bin char(128)
  12718. 3.0000 mysql proc db char 64 192 utf8 utf8_bin char(64)
  12719. 3.0000 mysql proc name char 64 192 utf8 utf8_general_ci char(64)
  12720. 3.0000 mysql proc type enum 9 27 utf8 utf8_general_ci enum('FUNCTION','PROCEDURE')
  12721. 3.0000 mysql proc specific_name char 64 192 utf8 utf8_general_ci char(64)
  12722. 3.0000 mysql proc language enum 3 9 utf8 utf8_general_ci enum('SQL')
  12723. 3.0000 mysql proc sql_data_access enum 17 51 utf8 utf8_general_ci enum('CONTAINS_SQL','NO_SQL','READS_SQL_DATA','MODIFIES_SQL_DATA')
  12724. 3.0000 mysql proc is_deterministic enum 3 9 utf8 utf8_general_ci enum('YES','NO')
  12725. 3.0000 mysql proc security_type enum 7 21 utf8 utf8_general_ci enum('INVOKER','DEFINER')
  12726. 1.0000 mysql proc param_list blob 65535 65535 NULL NULL blob
  12727. 1.0000 mysql proc returns longblob 4294967295 4294967295 NULL NULL longblob
  12728. 1.0000 mysql proc body longblob 4294967295 4294967295 NULL NULL longblob
  12729. 3.0000 mysql proc definer char 77 231 utf8 utf8_bin char(77)
  12730. NULL mysql proc created timestamp NULL NULL NULL NULL timestamp
  12731. NULL mysql proc modified timestamp NULL NULL NULL NULL timestamp
  12732. 3.0000 mysql proc sql_mode set 431 1293 utf8 utf8_general_ci set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE')
  12733. 3.0000 mysql proc comment char 64 192 utf8 utf8_bin char(64)
  12734. 3.0000 mysql proc character_set_client char 32 96 utf8 utf8_bin char(32)
  12735. 3.0000 mysql proc collation_connection char 32 96 utf8 utf8_bin char(32)
  12736. 3.0000 mysql proc db_collation char 32 96 utf8 utf8_bin char(32)
  12737. 1.0000 mysql proc body_utf8 longblob 4294967295 4294967295 NULL NULL longblob
  12738. 3.0000 mysql procs_priv Host char 60 180 utf8 utf8_bin char(60)
  12739. 3.0000 mysql procs_priv Db char 64 192 utf8 utf8_bin char(64)
  12740. 3.0000 mysql procs_priv User char 16 48 utf8 utf8_bin char(16)
  12741. 3.0000 mysql procs_priv Routine_name char 64 192 utf8 utf8_bin char(64)
  12742. 3.0000 mysql procs_priv Routine_type enum 9 27 utf8 utf8_bin enum('FUNCTION','PROCEDURE')
  12743. 3.0000 mysql procs_priv Grantor char 77 231 utf8 utf8_bin char(77)
  12744. 3.0000 mysql procs_priv Proc_priv set 27 81 utf8 utf8_general_ci set('Execute','Alter Routine','Grant')
  12745. NULL mysql procs_priv Timestamp timestamp NULL NULL NULL NULL timestamp
  12746. 3.0000 mysql servers Server_name char 64 192 utf8 utf8_general_ci char(64)
  12747. 3.0000 mysql servers Host char 64 192 utf8 utf8_general_ci char(64)
  12748. 3.0000 mysql servers Db char 64 192 utf8 utf8_general_ci char(64)
  12749. 3.0000 mysql servers Username char 64 192 utf8 utf8_general_ci char(64)
  12750. 3.0000 mysql servers Password char 64 192 utf8 utf8_general_ci char(64)
  12751. NULL mysql servers Port int NULL NULL NULL NULL int(4)
  12752. 3.0000 mysql servers Socket char 64 192 utf8 utf8_general_ci char(64)
  12753. 3.0000 mysql servers Wrapper char 64 192 utf8 utf8_general_ci char(64)
  12754. 3.0000 mysql servers Owner char 64 192 utf8 utf8_general_ci char(64)
  12755. NULL mysql slow_log start_time timestamp NULL NULL NULL NULL timestamp
  12756. 1.0000 mysql slow_log user_host mediumtext 16777215 16777215 utf8 utf8_general_ci mediumtext
  12757. NULL mysql slow_log query_time time NULL NULL NULL NULL time
  12758. NULL mysql slow_log lock_time time NULL NULL NULL NULL time
  12759. NULL mysql slow_log rows_sent int NULL NULL NULL NULL int(11)
  12760. NULL mysql slow_log rows_examined int NULL NULL NULL NULL int(11)
  12761. 3.0000 mysql slow_log db varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12762. NULL mysql slow_log last_insert_id int NULL NULL NULL NULL int(11)
  12763. NULL mysql slow_log insert_id int NULL NULL NULL NULL int(11)
  12764. NULL mysql slow_log server_id int NULL NULL NULL NULL int(11)
  12765. 1.0000 mysql slow_log sql_text mediumtext 16777215 16777215 utf8 utf8_general_ci mediumtext
  12766. 3.0000 mysql tables_priv Host char 60 180 utf8 utf8_bin char(60)
  12767. 3.0000 mysql tables_priv Db char 64 192 utf8 utf8_bin char(64)
  12768. 3.0000 mysql tables_priv User char 16 48 utf8 utf8_bin char(16)
  12769. 3.0000 mysql tables_priv Table_name char 64 192 utf8 utf8_bin char(64)
  12770. 3.0000 mysql tables_priv Grantor char 77 231 utf8 utf8_bin char(77)
  12771. NULL mysql tables_priv Timestamp timestamp NULL NULL NULL NULL timestamp
  12772. 3.0000 mysql tables_priv Table_priv set 98 294 utf8 utf8_general_ci set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter','Create View','Show view','Trigger')
  12773. 3.0000 mysql tables_priv Column_priv set 31 93 utf8 utf8_general_ci set('Select','Insert','Update','References')
  12774. NULL mysql time_zone Time_zone_id int NULL NULL NULL NULL int(10) unsigned
  12775. 3.0000 mysql time_zone Use_leap_seconds enum 1 3 utf8 utf8_general_ci enum('Y','N')
  12776. NULL mysql time_zone_leap_second Transition_time bigint NULL NULL NULL NULL bigint(20)
  12777. NULL mysql time_zone_leap_second Correction int NULL NULL NULL NULL int(11)
  12778. 3.0000 mysql time_zone_name Name char 64 192 utf8 utf8_general_ci char(64)
  12779. NULL mysql time_zone_name Time_zone_id int NULL NULL NULL NULL int(10) unsigned
  12780. NULL mysql time_zone_transition Time_zone_id int NULL NULL NULL NULL int(10) unsigned
  12781. NULL mysql time_zone_transition Transition_time bigint NULL NULL NULL NULL bigint(20)
  12782. NULL mysql time_zone_transition Transition_type_id int NULL NULL NULL NULL int(10) unsigned
  12783. NULL mysql time_zone_transition_type Time_zone_id int NULL NULL NULL NULL int(10) unsigned
  12784. NULL mysql time_zone_transition_type Transition_type_id int NULL NULL NULL NULL int(10) unsigned
  12785. NULL mysql time_zone_transition_type Offset int NULL NULL NULL NULL int(11)
  12786. NULL mysql time_zone_transition_type Is_DST tinyint NULL NULL NULL NULL tinyint(3) unsigned
  12787. 3.0000 mysql time_zone_transition_type Abbreviation char 8 24 utf8 utf8_general_ci char(8)
  12788. 3.0000 mysql user Host char 60 180 utf8 utf8_bin char(60)
  12789. 3.0000 mysql user User char 16 48 utf8 utf8_bin char(16)
  12790. 1.0000 mysql user Password char 41 41 latin1 latin1_bin char(41)
  12791. 3.0000 mysql user Select_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12792. 3.0000 mysql user Insert_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12793. 3.0000 mysql user Update_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12794. 3.0000 mysql user Delete_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12795. 3.0000 mysql user Create_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12796. 3.0000 mysql user Drop_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12797. 3.0000 mysql user Reload_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12798. 3.0000 mysql user Shutdown_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12799. 3.0000 mysql user Process_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12800. 3.0000 mysql user File_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12801. 3.0000 mysql user Grant_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12802. 3.0000 mysql user References_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12803. 3.0000 mysql user Index_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12804. 3.0000 mysql user Alter_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12805. 3.0000 mysql user Show_db_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12806. 3.0000 mysql user Super_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12807. 3.0000 mysql user Create_tmp_table_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12808. 3.0000 mysql user Lock_tables_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12809. 3.0000 mysql user Execute_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12810. 3.0000 mysql user Repl_slave_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12811. 3.0000 mysql user Repl_client_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12812. 3.0000 mysql user Create_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12813. 3.0000 mysql user Show_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12814. 3.0000 mysql user Create_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12815. 3.0000 mysql user Alter_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12816. 3.0000 mysql user Create_user_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12817. 3.0000 mysql user Event_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12818. 3.0000 mysql user Trigger_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12819. 3.0000 mysql user ssl_type enum 9 27 utf8 utf8_general_ci enum('','ANY','X509','SPECIFIED')
  12820. 1.0000 mysql user ssl_cipher blob 65535 65535 NULL NULL blob
  12821. 1.0000 mysql user x509_issuer blob 65535 65535 NULL NULL blob
  12822. 1.0000 mysql user x509_subject blob 65535 65535 NULL NULL blob
  12823. NULL mysql user max_questions int NULL NULL NULL NULL int(11) unsigned
  12824. NULL mysql user max_updates int NULL NULL NULL NULL int(11) unsigned
  12825. NULL mysql user max_connections int NULL NULL NULL NULL int(11) unsigned
  12826. NULL mysql user max_user_connections int NULL NULL NULL NULL int(11) unsigned
  12827. 1.0000 test t1 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12828. 1.0000 test t1 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12829. NULL test t1 f3 date NULL NULL NULL NULL date
  12830. NULL test t1 f4 int NULL NULL NULL NULL int(11)
  12831. 1.0000 test t1 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12832. NULL test t1 f6 int NULL NULL NULL NULL int(11)
  12833. 1.0000 test t10 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12834. 1.0000 test t10 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12835. NULL test t10 f3 date NULL NULL NULL NULL date
  12836. NULL test t10 f4 int NULL NULL NULL NULL int(11)
  12837. 1.0000 test t10 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12838. NULL test t10 f6 int NULL NULL NULL NULL int(11)
  12839. 1.0000 test t11 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12840. 1.0000 test t11 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12841. NULL test t11 f3 date NULL NULL NULL NULL date
  12842. NULL test t11 f4 int NULL NULL NULL NULL int(11)
  12843. 1.0000 test t11 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12844. NULL test t11 f6 int NULL NULL NULL NULL int(11)
  12845. 1.0000 test t2 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12846. 1.0000 test t2 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12847. NULL test t2 f3 date NULL NULL NULL NULL date
  12848. NULL test t2 f4 int NULL NULL NULL NULL int(11)
  12849. 1.0000 test t2 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12850. NULL test t2 f6 int NULL NULL NULL NULL int(11)
  12851. 1.0000 test t3 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12852. 1.0000 test t3 f2 char 20 20 latin1 latin1_swedish_ci char(20)
  12853. NULL test t3 f3 int NULL NULL NULL NULL int(11)
  12854. 1.0000 test t4 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12855. 1.0000 test t4 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12856. NULL test t4 f3 date NULL NULL NULL NULL date
  12857. NULL test t4 f4 int NULL NULL NULL NULL int(11)
  12858. 1.0000 test t4 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12859. NULL test t4 f6 int NULL NULL NULL NULL int(11)
  12860. 1.0000 test t7 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12861. 1.0000 test t7 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12862. NULL test t7 f3 date NULL NULL NULL NULL date
  12863. NULL test t7 f4 int NULL NULL NULL NULL int(11)
  12864. 1.0000 test t8 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12865. 1.0000 test t8 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12866. NULL test t8 f3 date NULL NULL NULL NULL date
  12867. NULL test t8 f4 int NULL NULL NULL NULL int(11)
  12868. NULL test t9 f1 int NULL NULL NULL NULL int(11)
  12869. 1.0000 test t9 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12870. NULL test t9 f3 int NULL NULL NULL NULL int(11)
  12871. NULL test tb1 f1 char 0 0 latin1 latin1_swedish_ci char(0)
  12872. NULL test tb1 f2 char 0 0 latin1 latin1_bin char(0)
  12873. NULL test tb1 f3 char 0 0 latin1 latin1_swedish_ci char(0)
  12874. 2.0079 test tb1 f4 tinytext 127 255 ucs2 ucs2_general_ci tinytext
  12875. 1.0000 test tb1 f5 text 65535 65535 latin1 latin1_swedish_ci text
  12876. 1.0000 test tb1 f6 mediumtext 16777215 16777215 latin1 latin1_swedish_ci mediumtext
  12877. 1.0000 test tb1 f7 longtext 4294967295 4294967295 latin1 latin1_swedish_ci longtext
  12878. 1.0000 test tb1 f8 tinyblob 255 255 NULL NULL tinyblob
  12879. 1.0000 test tb1 f9 blob 65535 65535 NULL NULL blob
  12880. 1.0000 test tb1 f10 mediumblob 16777215 16777215 NULL NULL mediumblob
  12881. 1.0000 test tb1 f11 longblob 4294967295 4294967295 NULL NULL longblob
  12882. 1.0000 test tb1 f12 binary 1 1 NULL NULL binary(1)
  12883. NULL test tb1 f13 tinyint NULL NULL NULL NULL tinyint(4)
  12884. NULL test tb1 f14 tinyint NULL NULL NULL NULL tinyint(3) unsigned
  12885. NULL test tb1 f15 tinyint NULL NULL NULL NULL tinyint(3) unsigned zerofill
  12886. NULL test tb1 f16 tinyint NULL NULL NULL NULL tinyint(3) unsigned zerofill
  12887. NULL test tb1 f17 smallint NULL NULL NULL NULL smallint(6)
  12888. NULL test tb1 f18 smallint NULL NULL NULL NULL smallint(5) unsigned
  12889. NULL test tb1 f19 smallint NULL NULL NULL NULL smallint(5) unsigned zerofill
  12890. NULL test tb1 f20 smallint NULL NULL NULL NULL smallint(5) unsigned zerofill
  12891. NULL test tb1 f21 mediumint NULL NULL NULL NULL mediumint(9)
  12892. NULL test tb1 f22 mediumint NULL NULL NULL NULL mediumint(8) unsigned
  12893. NULL test tb1 f23 mediumint NULL NULL NULL NULL mediumint(8) unsigned zerofill
  12894. NULL test tb1 f24 mediumint NULL NULL NULL NULL mediumint(8) unsigned zerofill
  12895. NULL test tb1 f25 int NULL NULL NULL NULL int(11)
  12896. NULL test tb1 f26 int NULL NULL NULL NULL int(10) unsigned
  12897. NULL test tb1 f27 int NULL NULL NULL NULL int(10) unsigned zerofill
  12898. NULL test tb1 f28 int NULL NULL NULL NULL int(10) unsigned zerofill
  12899. NULL test tb1 f29 bigint NULL NULL NULL NULL bigint(20)
  12900. NULL test tb1 f30 bigint NULL NULL NULL NULL bigint(20) unsigned
  12901. NULL test tb1 f31 bigint NULL NULL NULL NULL bigint(20) unsigned zerofill
  12902. NULL test tb1 f32 bigint NULL NULL NULL NULL bigint(20) unsigned zerofill
  12903. NULL test tb1 f33 decimal NULL NULL NULL NULL decimal(10,0)
  12904. NULL test tb1 f34 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12905. NULL test tb1 f35 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12906. NULL test tb1 f36 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12907. NULL test tb1 f37 decimal NULL NULL NULL NULL decimal(10,0)
  12908. NULL test tb1 f38 decimal NULL NULL NULL NULL decimal(64,0)
  12909. NULL test tb1 f39 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12910. NULL test tb1 f40 decimal NULL NULL NULL NULL decimal(64,0) unsigned
  12911. NULL test tb1 f41 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12912. NULL test tb1 f42 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12913. NULL test tb1 f43 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12914. NULL test tb1 f44 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12915. NULL test tb1 f45 decimal NULL NULL NULL NULL decimal(10,0)
  12916. NULL test tb1 f46 decimal NULL NULL NULL NULL decimal(63,30)
  12917. NULL test tb1 f47 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12918. NULL test tb1 f48 decimal NULL NULL NULL NULL decimal(63,30) unsigned
  12919. NULL test tb1 f49 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12920. NULL test tb1 f50 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12921. NULL test tb1 f51 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12922. NULL test tb1 f52 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12923. NULL test tb1 f53 decimal NULL NULL NULL NULL decimal(10,0)
  12924. NULL test tb1 f54 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12925. NULL test tb1 f55 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12926. NULL test tb1 f56 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12927. NULL test tb1 f57 decimal NULL NULL NULL NULL decimal(10,0)
  12928. NULL test tb1 f58 decimal NULL NULL NULL NULL decimal(64,0)
  12929. NULL test tb2 f59 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12930. NULL test tb2 f60 decimal NULL NULL NULL NULL decimal(64,0) unsigned
  12931. NULL test tb2 f61 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12932. NULL test tb2 f62 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12933. NULL test tb2 f63 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12934. NULL test tb2 f64 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12935. NULL test tb2 f65 decimal NULL NULL NULL NULL decimal(10,0)
  12936. NULL test tb2 f66 decimal NULL NULL NULL NULL decimal(63,30)
  12937. NULL test tb2 f67 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12938. NULL test tb2 f68 decimal NULL NULL NULL NULL decimal(63,30) unsigned
  12939. NULL test tb2 f69 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12940. NULL test tb2 f70 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12941. NULL test tb2 f71 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12942. NULL test tb2 f72 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12943. NULL test tb2 f73 double NULL NULL NULL NULL double
  12944. NULL test tb2 f74 double unsigned NULL NULL NULL NULL double unsigned
  12945. NULL test tb2 f75 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12946. NULL test tb2 f76 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12947. NULL test tb2 f77 double NULL NULL NULL NULL double
  12948. NULL test tb2 f78 double unsigned NULL NULL NULL NULL double unsigned
  12949. NULL test tb2 f79 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12950. NULL test tb2 f80 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12951. NULL test tb2 f81 float NULL NULL NULL NULL float
  12952. NULL test tb2 f82 float unsigned NULL NULL NULL NULL float unsigned
  12953. NULL test tb2 f83 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12954. NULL test tb2 f84 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12955. NULL test tb2 f85 float NULL NULL NULL NULL float
  12956. NULL test tb2 f86 float NULL NULL NULL NULL float
  12957. NULL test tb2 f87 float unsigned NULL NULL NULL NULL float unsigned
  12958. NULL test tb2 f88 float unsigned NULL NULL NULL NULL float unsigned
  12959. NULL test tb2 f89 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12960. NULL test tb2 f90 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12961. NULL test tb2 f91 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12962. NULL test tb2 f92 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12963. NULL test tb2 f93 float NULL NULL NULL NULL float
  12964. NULL test tb2 f94 double NULL NULL NULL NULL double
  12965. NULL test tb2 f95 float unsigned NULL NULL NULL NULL float unsigned
  12966. NULL test tb2 f96 double unsigned NULL NULL NULL NULL double unsigned
  12967. NULL test tb2 f97 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12968. NULL test tb2 f98 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12969. NULL test tb2 f99 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12970. NULL test tb2 f100 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12971. NULL test tb2 f101 date NULL NULL NULL NULL date
  12972. NULL test tb2 f102 time NULL NULL NULL NULL time
  12973. NULL test tb2 f103 datetime NULL NULL NULL NULL datetime
  12974. NULL test tb2 f104 timestamp NULL NULL NULL NULL timestamp
  12975. NULL test tb2 f105 year NULL NULL NULL NULL year(4)
  12976. NULL test tb2 f106 year NULL NULL NULL NULL year(4)
  12977. NULL test tb2 f107 year NULL NULL NULL NULL year(4)
  12978. 1.0000 test tb2 f108 enum 5 5 latin1 latin1_swedish_ci enum('1enum','2enum')
  12979. 1.0000 test tb2 f109 set 9 9 latin1 latin1_swedish_ci set('1set','2set')
  12980. 1.0000 test tb3 f118 char 1 1 latin1 latin1_swedish_ci char(1)
  12981. 1.0000 test tb3 f119 char 1 1 latin1 latin1_bin char(1)
  12982. 1.0000 test tb3 f120 char 1 1 latin1 latin1_swedish_ci char(1)
  12983. 1.0000 test tb3 f121 tinytext 255 255 latin1 latin1_swedish_ci tinytext
  12984. 1.0000 test tb3 f122 text 65535 65535 latin1 latin1_swedish_ci text
  12985. 1.0000 test tb3 f123 mediumtext 16777215 16777215 latin1 latin1_swedish_ci mediumtext
  12986. 2.0000 test tb3 f124 longtext 2147483647 4294967295 ucs2 ucs2_general_ci longtext
  12987. 1.0000 test tb3 f125 tinyblob 255 255 NULL NULL tinyblob
  12988. 1.0000 test tb3 f126 blob 65535 65535 NULL NULL blob
  12989. 1.0000 test tb3 f127 mediumblob 16777215 16777215 NULL NULL mediumblob
  12990. 1.0000 test tb3 f128 longblob 4294967295 4294967295 NULL NULL longblob
  12991. 1.0000 test tb3 f129 binary 1 1 NULL NULL binary(1)
  12992. NULL test tb3 f130 tinyint NULL NULL NULL NULL tinyint(4)
  12993. NULL test tb3 f131 tinyint NULL NULL NULL NULL tinyint(3) unsigned
  12994. NULL test tb3 f132 tinyint NULL NULL NULL NULL tinyint(3) unsigned zerofill
  12995. NULL test tb3 f133 tinyint NULL NULL NULL NULL tinyint(3) unsigned zerofill
  12996. NULL test tb3 f134 smallint NULL NULL NULL NULL smallint(6)
  12997. NULL test tb3 f135 smallint NULL NULL NULL NULL smallint(5) unsigned
  12998. NULL test tb3 f136 smallint NULL NULL NULL NULL smallint(5) unsigned zerofill
  12999. NULL test tb3 f137 smallint NULL NULL NULL NULL smallint(5) unsigned zerofill
  13000. NULL test tb3 f138 mediumint NULL NULL NULL NULL mediumint(9)
  13001. NULL test tb3 f139 mediumint NULL NULL NULL NULL mediumint(8) unsigned
  13002. NULL test tb3 f140 mediumint NULL NULL NULL NULL mediumint(8) unsigned zerofill
  13003. NULL test tb3 f141 mediumint NULL NULL NULL NULL mediumint(8) unsigned zerofill
  13004. NULL test tb3 f142 int NULL NULL NULL NULL int(11)
  13005. NULL test tb3 f143 int NULL NULL NULL NULL int(10) unsigned
  13006. NULL test tb3 f144 int NULL NULL NULL NULL int(10) unsigned zerofill
  13007. NULL test tb3 f145 int NULL NULL NULL NULL int(10) unsigned zerofill
  13008. NULL test tb3 f146 bigint NULL NULL NULL NULL bigint(20)
  13009. NULL test tb3 f147 bigint NULL NULL NULL NULL bigint(20) unsigned
  13010. NULL test tb3 f148 bigint NULL NULL NULL NULL bigint(20) unsigned zerofill
  13011. NULL test tb3 f149 bigint NULL NULL NULL NULL bigint(20) unsigned zerofill
  13012. NULL test tb3 f150 decimal NULL NULL NULL NULL decimal(10,0)
  13013. NULL test tb3 f151 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  13014. NULL test tb3 f152 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13015. NULL test tb3 f153 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13016. NULL test tb3 f154 decimal NULL NULL NULL NULL decimal(10,0)
  13017. NULL test tb3 f155 decimal NULL NULL NULL NULL decimal(64,0)
  13018. NULL test tb3 f156 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  13019. NULL test tb3 f157 decimal NULL NULL NULL NULL decimal(64,0) unsigned
  13020. NULL test tb3 f158 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13021. NULL test tb3 f159 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  13022. NULL test tb3 f160 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13023. NULL test tb3 f161 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  13024. NULL test tb3 f162 decimal NULL NULL NULL NULL decimal(10,0)
  13025. NULL test tb3 f163 decimal NULL NULL NULL NULL decimal(63,30)
  13026. NULL test tb3 f164 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  13027. NULL test tb3 f165 decimal NULL NULL NULL NULL decimal(63,30) unsigned
  13028. NULL test tb3 f166 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13029. NULL test tb3 f167 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  13030. NULL test tb3 f168 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13031. NULL test tb3 f169 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  13032. NULL test tb3 f170 decimal NULL NULL NULL NULL decimal(10,0)
  13033. NULL test tb3 f171 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  13034. NULL test tb3 f172 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13035. NULL test tb3 f173 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13036. NULL test tb3 f174 decimal NULL NULL NULL NULL decimal(10,0)
  13037. NULL test tb3 f175 decimal NULL NULL NULL NULL decimal(64,0)
  13038. NULL test tb4 f176 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  13039. NULL test tb4 f177 decimal NULL NULL NULL NULL decimal(64,0) unsigned
  13040. NULL test tb4 f178 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13041. NULL test tb4 f179 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  13042. NULL test tb4 f180 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13043. NULL test tb4 f181 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  13044. NULL test tb4 f182 decimal NULL NULL NULL NULL decimal(10,0)
  13045. NULL test tb4 f183 decimal NULL NULL NULL NULL decimal(63,30)
  13046. NULL test tb4 f184 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  13047. NULL test tb4 f185 decimal NULL NULL NULL NULL decimal(63,30) unsigned
  13048. NULL test tb4 f186 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13049. NULL test tb4 f187 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  13050. NULL test tb4 f188 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13051. NULL test tb4 f189 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  13052. NULL test tb4 f190 double NULL NULL NULL NULL double
  13053. NULL test tb4 f191 double unsigned NULL NULL NULL NULL double unsigned
  13054. NULL test tb4 f192 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  13055. NULL test tb4 f193 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  13056. NULL test tb4 f194 double NULL NULL NULL NULL double
  13057. NULL test tb4 f195 double unsigned NULL NULL NULL NULL double unsigned
  13058. NULL test tb4 f196 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  13059. NULL test tb4 f197 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  13060. NULL test tb4 f198 float NULL NULL NULL NULL float
  13061. NULL test tb4 f199 float unsigned NULL NULL NULL NULL float unsigned
  13062. NULL test tb4 f200 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13063. NULL test tb4 f201 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13064. NULL test tb4 f202 float NULL NULL NULL NULL float
  13065. NULL test tb4 f203 float NULL NULL NULL NULL float
  13066. NULL test tb4 f204 float unsigned NULL NULL NULL NULL float unsigned
  13067. NULL test tb4 f205 float unsigned NULL NULL NULL NULL float unsigned
  13068. NULL test tb4 f206 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13069. NULL test tb4 f207 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13070. NULL test tb4 f208 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13071. NULL test tb4 f209 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13072. NULL test tb4 f210 float NULL NULL NULL NULL float
  13073. NULL test tb4 f211 double NULL NULL NULL NULL double
  13074. NULL test tb4 f212 float unsigned NULL NULL NULL NULL float unsigned
  13075. NULL test tb4 f213 double unsigned NULL NULL NULL NULL double unsigned
  13076. NULL test tb4 f214 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13077. NULL test tb4 f215 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  13078. NULL test tb4 f216 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13079. NULL test tb4 f217 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  13080. NULL test tb4 f218 date NULL NULL NULL NULL date
  13081. NULL test tb4 f219 time NULL NULL NULL NULL time
  13082. NULL test tb4 f220 datetime NULL NULL NULL NULL datetime
  13083. NULL test tb4 f221 timestamp NULL NULL NULL NULL timestamp
  13084. NULL test tb4 f222 year NULL NULL NULL NULL year(4)
  13085. NULL test tb4 f223 year NULL NULL NULL NULL year(4)
  13086. NULL test tb4 f224 year NULL NULL NULL NULL year(4)
  13087. 1.0000 test tb4 f225 enum 5 5 latin1 latin1_swedish_ci enum('1enum','2enum')
  13088. 1.0000 test tb4 f226 set 9 9 latin1 latin1_swedish_ci set('1set','2set')
  13089. NULL test tb4 f235 char 0 0 ucs2 ucs2_general_ci char(0)
  13090. 1.0000 test tb4 f236 char 90 90 latin1 latin1_swedish_ci char(90)
  13091. 1.0000 test tb4 f237 char 255 255 latin1 latin1_swedish_ci char(255)
  13092. NULL test tb4 f238 varchar 0 0 latin1 latin1_swedish_ci varchar(0)
  13093. 1.0000 test tb4 f239 varchar 20000 20000 latin1 latin1_bin varchar(20000)
  13094. 2.0000 test tb4 f240 varchar 2000 4000 ucs2 ucs2_general_ci varchar(2000)
  13095. 2.0000 test tb4 f241 char 100 200 ucs2 ucs2_general_ci char(100)
  13096. NULL test1 tb2 f59 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  13097. NULL test1 tb2 f60 decimal NULL NULL NULL NULL decimal(64,0) unsigned
  13098. NULL test1 tb2 f61 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13099. NULL test1 tb2 f62 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  13100. NULL test1 tb2 f63 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13101. NULL test1 tb2 f64 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  13102. NULL test1 tb2 f65 decimal NULL NULL NULL NULL decimal(10,0)
  13103. NULL test1 tb2 f66 decimal NULL NULL NULL NULL decimal(63,30)
  13104. NULL test1 tb2 f67 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  13105. NULL test1 tb2 f68 decimal NULL NULL NULL NULL decimal(63,30) unsigned
  13106. NULL test1 tb2 f69 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13107. NULL test1 tb2 f70 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  13108. NULL test1 tb2 f71 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  13109. NULL test1 tb2 f72 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  13110. NULL test1 tb2 f73 double NULL NULL NULL NULL double
  13111. NULL test1 tb2 f74 double unsigned NULL NULL NULL NULL double unsigned
  13112. NULL test1 tb2 f75 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  13113. NULL test1 tb2 f76 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  13114. NULL test1 tb2 f77 double NULL NULL NULL NULL double
  13115. NULL test1 tb2 f78 double unsigned NULL NULL NULL NULL double unsigned
  13116. NULL test1 tb2 f79 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  13117. NULL test1 tb2 f80 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  13118. NULL test1 tb2 f81 float NULL NULL NULL NULL float
  13119. NULL test1 tb2 f82 float unsigned NULL NULL NULL NULL float unsigned
  13120. NULL test1 tb2 f83 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13121. NULL test1 tb2 f84 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13122. NULL test1 tb2 f85 float NULL NULL NULL NULL float
  13123. NULL test1 tb2 f86 float NULL NULL NULL NULL float
  13124. NULL test1 tb2 f87 float unsigned NULL NULL NULL NULL float unsigned
  13125. NULL test1 tb2 f88 float unsigned NULL NULL NULL NULL float unsigned
  13126. NULL test1 tb2 f89 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13127. NULL test1 tb2 f90 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13128. NULL test1 tb2 f91 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13129. NULL test1 tb2 f92 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13130. NULL test1 tb2 f93 float NULL NULL NULL NULL float
  13131. NULL test1 tb2 f94 double NULL NULL NULL NULL double
  13132. NULL test1 tb2 f95 float unsigned NULL NULL NULL NULL float unsigned
  13133. NULL test1 tb2 f96 double unsigned NULL NULL NULL NULL double unsigned
  13134. NULL test1 tb2 f97 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13135. NULL test1 tb2 f98 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  13136. NULL test1 tb2 f99 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  13137. NULL test1 tb2 f100 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  13138. NULL test1 tb2 f101 date NULL NULL NULL NULL date
  13139. NULL test1 tb2 f102 time NULL NULL NULL NULL time
  13140. NULL test1 tb2 f103 datetime NULL NULL NULL NULL datetime
  13141. NULL test1 tb2 f104 timestamp NULL NULL NULL NULL timestamp
  13142. NULL test1 tb2 f105 year NULL NULL NULL NULL year(4)
  13143. NULL test1 tb2 f106 year NULL NULL NULL NULL year(4)
  13144. NULL test1 tb2 f107 year NULL NULL NULL NULL year(4)
  13145. 1.0000 test1 tb2 f108 enum 5 5 latin1 latin1_swedish_ci enum('1enum','2enum')
  13146. 1.0000 test1 tb2 f109 set 9 9 latin1 latin1_swedish_ci set('1set','2set')
  13147. 1.0000 test4 t6 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  13148. 1.0000 test4 t6 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  13149. NULL test4 t6 f3 date NULL NULL NULL NULL date
  13150. NULL test4 t6 f4 int NULL NULL NULL NULL int(11)
  13151. 1.0000 test4 t6 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  13152. NULL test4 t6 f6 int NULL NULL NULL NULL int(11)
  13153. DROP USER 'user_1'@'localhost';
  13154. DROP USER 'user_2'@'localhost';
  13155. DROP TABLE IF EXISTS t_6_406001;
  13156. DROP TABLE IF EXISTS t_6_406002;
  13157. DROP DATABASE IF EXISTS db_datadict;
  13158. Testcase 3.2.7.1:
  13159. --------------------------------------------------------------------------------
  13160. USE information_schema;
  13161. DESC key_column_usage;
  13162. Field Type Null Key Default Extra
  13163. CONSTRAINT_CATALOG varchar(4096) YES NULL
  13164. CONSTRAINT_SCHEMA varchar(64) NO
  13165. CONSTRAINT_NAME varchar(64) NO
  13166. TABLE_CATALOG varchar(4096) YES NULL
  13167. TABLE_SCHEMA varchar(64) NO
  13168. TABLE_NAME varchar(64) NO
  13169. COLUMN_NAME varchar(64) NO
  13170. ORDINAL_POSITION bigint(10) NO 0
  13171. POSITION_IN_UNIQUE_CONSTRAINT bigint(10) YES NULL
  13172. REFERENCED_TABLE_SCHEMA varchar(64) YES NULL
  13173. REFERENCED_TABLE_NAME varchar(64) YES NULL
  13174. REFERENCED_COLUMN_NAME varchar(64) YES NULL
  13175. SHOW CREATE TABLE key_column_usage;
  13176. Table Create Table
  13177. KEY_COLUMN_USAGE CREATE TEMPORARY TABLE `KEY_COLUMN_USAGE` (
  13178. `CONSTRAINT_CATALOG` varchar(4096) DEFAULT NULL,
  13179. `CONSTRAINT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13180. `CONSTRAINT_NAME` varchar(64) NOT NULL DEFAULT '',
  13181. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  13182. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13183. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  13184. `COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
  13185. `ORDINAL_POSITION` bigint(10) NOT NULL DEFAULT '0',
  13186. `POSITION_IN_UNIQUE_CONSTRAINT` bigint(10) DEFAULT NULL,
  13187. `REFERENCED_TABLE_SCHEMA` varchar(64) DEFAULT NULL,
  13188. `REFERENCED_TABLE_NAME` varchar(64) DEFAULT NULL,
  13189. `REFERENCED_COLUMN_NAME` varchar(64) DEFAULT NULL
  13190. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13191. SELECT COUNT(*) FROM information_schema.columns
  13192. WHERE table_schema = 'information_schema'
  13193. AND table_name = 'key_column_usage'
  13194. ORDER BY ordinal_position;
  13195. COUNT(*)
  13196. 12
  13197. SELECT * FROM information_schema.columns
  13198. WHERE table_schema = 'information_schema'
  13199. AND table_name = 'key_column_usage'
  13200. ORDER BY ordinal_position;
  13201. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  13202. NULL information_schema key_column_usage CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13203. NULL information_schema key_column_usage CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13204. NULL information_schema key_column_usage CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13205. NULL information_schema key_column_usage TABLE_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13206. NULL information_schema key_column_usage TABLE_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13207. NULL information_schema key_column_usage TABLE_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13208. NULL information_schema key_column_usage COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13209. NULL information_schema key_column_usage ORDINAL_POSITION 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  13210. NULL information_schema key_column_usage POSITION_IN_UNIQUE_CONSTRAINT 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(10) select
  13211. NULL information_schema key_column_usage REFERENCED_TABLE_SCHEMA 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13212. NULL information_schema key_column_usage REFERENCED_TABLE_NAME 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13213. NULL information_schema key_column_usage REFERENCED_COLUMN_NAME 12 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13214. Testcase 3.2.7.2 + 3.2.7.3:
  13215. --------------------------------------------------------------------------------
  13216. DROP DATABASE IF EXISTS db_datadict;
  13217. CREATE DATABASE db_datadict;
  13218. CREATE USER 'user_1'@'localhost';
  13219. CREATE USER 'user_2'@'localhost';
  13220. USE db_datadict;
  13221. CREATE TABLE t_40701 (
  13222. f1 INT NOT NULL, PRIMARY KEY(f1),
  13223. f2 INT, INDEX f2_ind(f2)
  13224. );
  13225. GRANT SELECT ON t_40701 to 'user_1'@'localhost';
  13226. CREATE TABLE t_40702 (
  13227. f1 INT NOT NULL, PRIMARY KEY(f1),
  13228. f2 INT, INDEX f2_ind(f2)
  13229. );
  13230. GRANT SELECT ON t_40702 to 'user_2'@'localhost';
  13231. FLUSH PRIVILEGES;
  13232. SELECT * FROM information_schema.key_column_usage
  13233. ORDER BY constraint_catalog, constraint_schema, constraint_name,
  13234. table_catalog, table_schema, table_name, ordinal_position;
  13235. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION POSITION_IN_UNIQUE_CONSTRAINT REFERENCED_TABLE_SCHEMA REFERENCED_TABLE_NAME REFERENCED_COLUMN_NAME
  13236. NULL db_datadict PRIMARY NULL db_datadict t_40701 f1 1 NULL NULL NULL NULL
  13237. NULL db_datadict PRIMARY NULL db_datadict t_40702 f1 1 NULL NULL NULL NULL
  13238. NULL mysql name NULL mysql help_category name 1 NULL NULL NULL NULL
  13239. NULL mysql name NULL mysql help_keyword name 1 NULL NULL NULL NULL
  13240. NULL mysql name NULL mysql help_topic name 1 NULL NULL NULL NULL
  13241. NULL mysql PRIMARY NULL mysql columns_priv Host 1 NULL NULL NULL NULL
  13242. NULL mysql PRIMARY NULL mysql columns_priv Db 2 NULL NULL NULL NULL
  13243. NULL mysql PRIMARY NULL mysql columns_priv User 3 NULL NULL NULL NULL
  13244. NULL mysql PRIMARY NULL mysql columns_priv Table_name 4 NULL NULL NULL NULL
  13245. NULL mysql PRIMARY NULL mysql columns_priv Column_name 5 NULL NULL NULL NULL
  13246. NULL mysql PRIMARY NULL mysql db Host 1 NULL NULL NULL NULL
  13247. NULL mysql PRIMARY NULL mysql db Db 2 NULL NULL NULL NULL
  13248. NULL mysql PRIMARY NULL mysql db User 3 NULL NULL NULL NULL
  13249. NULL mysql PRIMARY NULL mysql event db 1 NULL NULL NULL NULL
  13250. NULL mysql PRIMARY NULL mysql event name 2 NULL NULL NULL NULL
  13251. NULL mysql PRIMARY NULL mysql func name 1 NULL NULL NULL NULL
  13252. NULL mysql PRIMARY NULL mysql help_category help_category_id 1 NULL NULL NULL NULL
  13253. NULL mysql PRIMARY NULL mysql help_keyword help_keyword_id 1 NULL NULL NULL NULL
  13254. NULL mysql PRIMARY NULL mysql help_relation help_keyword_id 1 NULL NULL NULL NULL
  13255. NULL mysql PRIMARY NULL mysql help_relation help_topic_id 2 NULL NULL NULL NULL
  13256. NULL mysql PRIMARY NULL mysql help_topic help_topic_id 1 NULL NULL NULL NULL
  13257. NULL mysql PRIMARY NULL mysql host Host 1 NULL NULL NULL NULL
  13258. NULL mysql PRIMARY NULL mysql host Db 2 NULL NULL NULL NULL
  13259. NULL mysql PRIMARY NULL mysql ndb_binlog_index epoch 1 NULL NULL NULL NULL
  13260. NULL mysql PRIMARY NULL mysql plugin name 1 NULL NULL NULL NULL
  13261. NULL mysql PRIMARY NULL mysql proc db 1 NULL NULL NULL NULL
  13262. NULL mysql PRIMARY NULL mysql proc name 2 NULL NULL NULL NULL
  13263. NULL mysql PRIMARY NULL mysql proc type 3 NULL NULL NULL NULL
  13264. NULL mysql PRIMARY NULL mysql procs_priv Host 1 NULL NULL NULL NULL
  13265. NULL mysql PRIMARY NULL mysql procs_priv Db 2 NULL NULL NULL NULL
  13266. NULL mysql PRIMARY NULL mysql procs_priv User 3 NULL NULL NULL NULL
  13267. NULL mysql PRIMARY NULL mysql procs_priv Routine_name 4 NULL NULL NULL NULL
  13268. NULL mysql PRIMARY NULL mysql procs_priv Routine_type 5 NULL NULL NULL NULL
  13269. NULL mysql PRIMARY NULL mysql servers Server_name 1 NULL NULL NULL NULL
  13270. NULL mysql PRIMARY NULL mysql tables_priv Host 1 NULL NULL NULL NULL
  13271. NULL mysql PRIMARY NULL mysql tables_priv Db 2 NULL NULL NULL NULL
  13272. NULL mysql PRIMARY NULL mysql tables_priv User 3 NULL NULL NULL NULL
  13273. NULL mysql PRIMARY NULL mysql tables_priv Table_name 4 NULL NULL NULL NULL
  13274. NULL mysql PRIMARY NULL mysql time_zone Time_zone_id 1 NULL NULL NULL NULL
  13275. NULL mysql PRIMARY NULL mysql time_zone_leap_second Transition_time 1 NULL NULL NULL NULL
  13276. NULL mysql PRIMARY NULL mysql time_zone_name Name 1 NULL NULL NULL NULL
  13277. NULL mysql PRIMARY NULL mysql time_zone_transition Time_zone_id 1 NULL NULL NULL NULL
  13278. NULL mysql PRIMARY NULL mysql time_zone_transition Transition_time 2 NULL NULL NULL NULL
  13279. NULL mysql PRIMARY NULL mysql time_zone_transition_type Time_zone_id 1 NULL NULL NULL NULL
  13280. NULL mysql PRIMARY NULL mysql time_zone_transition_type Transition_type_id 2 NULL NULL NULL NULL
  13281. NULL mysql PRIMARY NULL mysql user Host 1 NULL NULL NULL NULL
  13282. NULL mysql PRIMARY NULL mysql user User 2 NULL NULL NULL NULL
  13283. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13284. SELECT * FROM information_schema.key_column_usage
  13285. ORDER BY constraint_catalog, constraint_schema, constraint_name,
  13286. table_catalog, table_schema, table_name, ordinal_position;
  13287. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION POSITION_IN_UNIQUE_CONSTRAINT REFERENCED_TABLE_SCHEMA REFERENCED_TABLE_NAME REFERENCED_COLUMN_NAME
  13288. NULL db_datadict PRIMARY NULL db_datadict t_40701 f1 1 NULL NULL NULL NULL
  13289. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13290. SELECT * FROM information_schema.key_column_usage
  13291. ORDER BY constraint_catalog, constraint_schema, constraint_name,
  13292. table_catalog, table_schema, table_name, ordinal_position;
  13293. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION POSITION_IN_UNIQUE_CONSTRAINT REFERENCED_TABLE_SCHEMA REFERENCED_TABLE_NAME REFERENCED_COLUMN_NAME
  13294. NULL db_datadict PRIMARY NULL db_datadict t_40702 f1 1 NULL NULL NULL NULL
  13295. root@localhost db_datadict
  13296. DROP USER 'user_1'@'localhost';
  13297. DROP USER 'user_2'@'localhost';
  13298. DROP TABLE t_40701;
  13299. DROP TABLE t_40702;
  13300. DROP DATABASE IF EXISTS db_datadict;
  13301. Testcase 3.2.8.1:
  13302. --------------------------------------------------------------------------------
  13303. USE information_schema;
  13304. DESC routines;
  13305. Field Type Null Key Default Extra
  13306. SPECIFIC_NAME varchar(64) NO
  13307. ROUTINE_CATALOG varchar(4096) YES NULL
  13308. ROUTINE_SCHEMA varchar(64) NO
  13309. ROUTINE_NAME varchar(64) NO
  13310. ROUTINE_TYPE varchar(9) NO
  13311. DTD_IDENTIFIER varchar(64) YES NULL
  13312. ROUTINE_BODY varchar(8) NO
  13313. ROUTINE_DEFINITION longtext YES NULL
  13314. EXTERNAL_NAME varchar(64) YES NULL
  13315. EXTERNAL_LANGUAGE varchar(64) YES NULL
  13316. PARAMETER_STYLE varchar(8) NO
  13317. IS_DETERMINISTIC varchar(3) NO
  13318. SQL_DATA_ACCESS varchar(64) NO
  13319. SQL_PATH varchar(64) YES NULL
  13320. SECURITY_TYPE varchar(7) NO
  13321. CREATED datetime NO 0000-00-00 00:00:00
  13322. LAST_ALTERED datetime NO 0000-00-00 00:00:00
  13323. SQL_MODE longtext NO NULL
  13324. ROUTINE_COMMENT varchar(64) NO
  13325. DEFINER varchar(77) NO
  13326. CHARACTER_SET_CLIENT varchar(32) NO
  13327. COLLATION_CONNECTION varchar(32) NO
  13328. DATABASE_COLLATION varchar(32) NO
  13329. SHOW CREATE TABLE routines;
  13330. Table Create Table
  13331. ROUTINES CREATE TEMPORARY TABLE `ROUTINES` (
  13332. `SPECIFIC_NAME` varchar(64) NOT NULL DEFAULT '',
  13333. `ROUTINE_CATALOG` varchar(4096) DEFAULT NULL,
  13334. `ROUTINE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13335. `ROUTINE_NAME` varchar(64) NOT NULL DEFAULT '',
  13336. `ROUTINE_TYPE` varchar(9) NOT NULL DEFAULT '',
  13337. `DTD_IDENTIFIER` varchar(64) DEFAULT NULL,
  13338. `ROUTINE_BODY` varchar(8) NOT NULL DEFAULT '',
  13339. `ROUTINE_DEFINITION` longtext,
  13340. `EXTERNAL_NAME` varchar(64) DEFAULT NULL,
  13341. `EXTERNAL_LANGUAGE` varchar(64) DEFAULT NULL,
  13342. `PARAMETER_STYLE` varchar(8) NOT NULL DEFAULT '',
  13343. `IS_DETERMINISTIC` varchar(3) NOT NULL DEFAULT '',
  13344. `SQL_DATA_ACCESS` varchar(64) NOT NULL DEFAULT '',
  13345. `SQL_PATH` varchar(64) DEFAULT NULL,
  13346. `SECURITY_TYPE` varchar(7) NOT NULL DEFAULT '',
  13347. `CREATED` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  13348. `LAST_ALTERED` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  13349. `SQL_MODE` longtext NOT NULL,
  13350. `ROUTINE_COMMENT` varchar(64) NOT NULL DEFAULT '',
  13351. `DEFINER` varchar(77) NOT NULL DEFAULT '',
  13352. `CHARACTER_SET_CLIENT` varchar(32) NOT NULL DEFAULT '',
  13353. `COLLATION_CONNECTION` varchar(32) NOT NULL DEFAULT '',
  13354. `DATABASE_COLLATION` varchar(32) NOT NULL DEFAULT ''
  13355. ) ENGINE=MyISAM DEFAULT CHARSET=utf8
  13356. SELECT COUNT(*) FROM information_schema.columns
  13357. WHERE table_schema = 'information_schema'
  13358. AND table_name = 'routines'
  13359. ORDER BY ordinal_position;
  13360. COUNT(*)
  13361. 23
  13362. SELECT * FROM information_schema.columns
  13363. WHERE table_schema = 'information_schema'
  13364. AND table_name = 'routines'
  13365. ORDER BY ordinal_position;
  13366. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  13367. NULL information_schema routines SPECIFIC_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13368. NULL information_schema routines ROUTINE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13369. NULL information_schema routines ROUTINE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13370. NULL information_schema routines ROUTINE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13371. NULL information_schema routines ROUTINE_TYPE 5 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  13372. NULL information_schema routines DTD_IDENTIFIER 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13373. NULL information_schema routines ROUTINE_BODY 7 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  13374. NULL information_schema routines ROUTINE_DEFINITION 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  13375. NULL information_schema routines EXTERNAL_NAME 9 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13376. NULL information_schema routines EXTERNAL_LANGUAGE 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13377. NULL information_schema routines PARAMETER_STYLE 11 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  13378. NULL information_schema routines IS_DETERMINISTIC 12 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  13379. NULL information_schema routines SQL_DATA_ACCESS 13 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13380. NULL information_schema routines SQL_PATH 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13381. NULL information_schema routines SECURITY_TYPE 15 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  13382. NULL information_schema routines CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  13383. NULL information_schema routines LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  13384. NULL information_schema routines SQL_MODE 18 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  13385. NULL information_schema routines ROUTINE_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13386. NULL information_schema routines DEFINER 20 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  13387. NULL information_schema routines CHARACTER_SET_CLIENT 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  13388. NULL information_schema routines COLLATION_CONNECTION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  13389. NULL information_schema routines DATABASE_COLLATION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  13390. Testcase 3.2.8.2 + 3.2.8.3:
  13391. --------------------------------------------------------------------------------
  13392. DROP DATABASE IF EXISTS db_datadict;
  13393. DROP DATABASE IF EXISTS db_datadict_2;
  13394. CREATE DATABASE db_datadict;
  13395. USE db_datadict;
  13396. CREATE USER 'user_1'@'localhost';
  13397. CREATE USER 'user_2'@'localhost';
  13398. CREATE USER 'user_3'@'localhost';
  13399. CREATE TABLE res_6_408002_1(f1 CHAR(3), f2 TEXT(25), f3 DATE, f4 INT);
  13400. INSERT INTO res_6_408002_1(f1, f2, f3, f4)
  13401. VALUES('abc', 'xyz', '1989-11-09', 0815);
  13402. DROP PROCEDURE IF EXISTS sp_6_408002_1;
  13403. CREATE PROCEDURE sp_6_408002_1()
  13404. BEGIN
  13405. SELECT * FROM db_datadict.res_6_408002_1;
  13406. END//
  13407. CREATE DATABASE db_datadict_2;
  13408. USE db_datadict_2;
  13409. CREATE TABLE res_6_408002_2(f1 CHAR(3), f2 TEXT(25), f3 DATE, f4 INT);
  13410. INSERT INTO res_6_408002_2(f1, f2, f3, f4)
  13411. VALUES('abc', 'xyz', '1990-10-03', 4711);
  13412. DROP PROCEDURE IF EXISTS sp_6_408002_2;
  13413. CREATE PROCEDURE sp_6_408002_2()
  13414. BEGIN
  13415. SELECT * FROM db_datadict_2.res_6_408002_2;
  13416. END//
  13417. GRANT SELECT ON db_datadict_2.* TO 'user_1'@'localhost';
  13418. GRANT EXECUTE ON db_datadict_2.* TO 'user_1'@'localhost';
  13419. GRANT EXECUTE ON db_datadict.* TO 'user_1'@'localhost';
  13420. GRANT SELECT ON db_datadict.* TO 'user_2'@'localhost';
  13421. GRANT EXECUTE ON PROCEDURE db_datadict_2.sp_6_408002_2 TO 'user_2'@'localhost';
  13422. GRANT EXECUTE ON db_datadict_2.* TO 'user_2'@'localhost';
  13423. FLUSH PRIVILEGES;
  13424. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13425. SELECT * FROM information_schema.routines;
  13426. SPECIFIC_NAME ROUTINE_CATALOG ROUTINE_SCHEMA ROUTINE_NAME ROUTINE_TYPE DTD_IDENTIFIER ROUTINE_BODY ROUTINE_DEFINITION EXTERNAL_NAME EXTERNAL_LANGUAGE PARAMETER_STYLE IS_DETERMINISTIC SQL_DATA_ACCESS SQL_PATH SECURITY_TYPE CREATED LAST_ALTERED SQL_MODE ROUTINE_COMMENT DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  13427. sp_6_408002_1 NULL db_datadict sp_6_408002_1 PROCEDURE NULL SQL NULL NULL NULL SQL NO CONTAINS SQL NULL DEFINER YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss root@localhost latin1 latin1_swedish_ci latin1_swedish_ci
  13428. sp_6_408002_2 NULL db_datadict_2 sp_6_408002_2 PROCEDURE NULL SQL NULL NULL NULL SQL NO CONTAINS SQL NULL DEFINER YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss root@localhost latin1 latin1_swedish_ci latin1_swedish_ci
  13429. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13430. SELECT * FROM information_schema.routines;
  13431. SPECIFIC_NAME ROUTINE_CATALOG ROUTINE_SCHEMA ROUTINE_NAME ROUTINE_TYPE DTD_IDENTIFIER ROUTINE_BODY ROUTINE_DEFINITION EXTERNAL_NAME EXTERNAL_LANGUAGE PARAMETER_STYLE IS_DETERMINISTIC SQL_DATA_ACCESS SQL_PATH SECURITY_TYPE CREATED LAST_ALTERED SQL_MODE ROUTINE_COMMENT DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  13432. sp_6_408002_2 NULL db_datadict_2 sp_6_408002_2 PROCEDURE NULL SQL NULL NULL NULL SQL NO CONTAINS SQL NULL DEFINER YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss root@localhost latin1 latin1_swedish_ci latin1_swedish_ci
  13433. connect(localhost,user_3,,test,MYSQL_PORT,MYSQL_SOCK);
  13434. SELECT * FROM information_schema.routines;
  13435. SPECIFIC_NAME ROUTINE_CATALOG ROUTINE_SCHEMA ROUTINE_NAME ROUTINE_TYPE DTD_IDENTIFIER ROUTINE_BODY ROUTINE_DEFINITION EXTERNAL_NAME EXTERNAL_LANGUAGE PARAMETER_STYLE IS_DETERMINISTIC SQL_DATA_ACCESS SQL_PATH SECURITY_TYPE CREATED LAST_ALTERED SQL_MODE ROUTINE_COMMENT DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
  13436. root@localhost db_datadict_2
  13437. DROP USER 'user_1'@'localhost';
  13438. DROP USER 'user_2'@'localhost';
  13439. DROP USER 'user_3'@'localhost';
  13440. use db_datadict;
  13441. DROP TABLE res_6_408002_1;
  13442. DROP PROCEDURE sp_6_408002_1;
  13443. USE db_datadict_2;
  13444. DROP TABLE res_6_408002_2;
  13445. DROP PROCEDURE sp_6_408002_2;
  13446. USE test;
  13447. DROP DATABASE db_datadict;
  13448. DROP DATABASE db_datadict_2;
  13449. Testcase 3.2.8.4:
  13450. --------------------------------------------------------------------------------
  13451. DROP DATABASE IF EXISTS db_datadict;
  13452. CREATE DATABASE db_datadict;
  13453. USE db_datadict;
  13454. create table res_6_408004_1(f1 longtext , f2 mediumint , f3 longblob , f4 real , f5 year);
  13455. insert into res_6_408004_1 values ('abc', 98765 , 99999999 , 98765, 10);
  13456. drop procedure if exists sp_6_408004;
  13457. create table res_6_408004_2(f1 longtext , f2 mediumint , f3 longblob , f4 real , f5 year);
  13458. insert into res_6_408004_2 values ('abc', 98765 , 99999999 , 98765, 10);
  13459. Checking the max. possible length of (currently) 4 GByte is not possible in this environment here.
  13460. --------------------------------------------------------------------------------------------------
  13461. create procedure sp_6_408004 ()
  13462. begin
  13463. declare done integer default 0;
  13464. declare variable_number_1 longtext;
  13465. declare variable_number_2 mediumint;
  13466. declare variable_number_3 longblob;
  13467. declare variable_number_4 real;
  13468. declare variable_number_5 year;
  13469. declare cursor_number_1 cursor for select * from res_6_408004_1 limit 0, 10;
  13470. declare cursor_number_2 cursor for select * from res_6_408004_1 limit 0, 10;
  13471. declare cursor_number_3 cursor for select * from res_6_408004_1 limit 0, 10;
  13472. declare cursor_number_4 cursor for select * from res_6_408004_1 limit 0, 10;
  13473. declare cursor_number_5 cursor for select * from res_6_408004_1 limit 0, 10;
  13474. declare continue handler for sqlstate '02000' set done = 1;
  13475. begin
  13476. open cursor_number_1;
  13477. while done <> 1 do
  13478. fetch cursor_number_1 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13479. if done <> 0 then
  13480. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3,
  13481. variable_number_4, variable_number_5);
  13482. end if;
  13483. end while;
  13484. begin
  13485. begin
  13486. set done = 0;
  13487. open cursor_number_2;
  13488. while done <> 1 do
  13489. fetch cursor_number_2 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13490. if done <> 0 then
  13491. insert into res_6_408004_2 values(variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13492. end if;
  13493. end while;
  13494. end;
  13495. set done = 0;
  13496. open cursor_number_3;
  13497. while done <> 1 do
  13498. fetch cursor_number_3 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13499. if done <> 0 then
  13500. insert into res_6_408004_2 values(variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13501. end if;
  13502. end while;
  13503. end;
  13504. end;
  13505. begin
  13506. set done = 0;
  13507. open cursor_number_4;
  13508. while done <> 1 do
  13509. fetch cursor_number_4 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13510. if done <> 0 then
  13511. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13512. end if;
  13513. end while;
  13514. end;
  13515. begin
  13516. set @a='test row';
  13517. select @a;
  13518. select @a;
  13519. select @a;
  13520. end;
  13521. begin
  13522. set done = 0;
  13523. open cursor_number_5;
  13524. while done <> 1 do
  13525. fetch cursor_number_5 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13526. if done <> 0 then
  13527. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13528. end if;
  13529. end while;
  13530. end;
  13531. begin
  13532. set @a='test row';
  13533. select @a;
  13534. select @a;
  13535. select @a;
  13536. end;
  13537. end//
  13538. call sp_6_408004 ();
  13539. @a
  13540. test row
  13541. @a
  13542. test row
  13543. @a
  13544. test row
  13545. @a
  13546. test row
  13547. @a
  13548. test row
  13549. @a
  13550. test row
  13551. select * from res_6_408004_2;
  13552. f1 f2 f3 f4 f5
  13553. abc 98765 99999999 98765 2010
  13554. abc 98765 99999999 98765 2010
  13555. abc 98765 99999999 98765 2010
  13556. abc 98765 99999999 98765 2010
  13557. abc 98765 99999999 98765 2010
  13558. abc 98765 99999999 98765 2010
  13559. SELECT *, LENGTH(routine_definition)
  13560. FROM information_schema.routines
  13561. WHERE routine_schema = 'db_datadict';
  13562. SPECIFIC_NAME sp_6_408004
  13563. ROUTINE_CATALOG NULL
  13564. ROUTINE_SCHEMA db_datadict
  13565. ROUTINE_NAME sp_6_408004
  13566. ROUTINE_TYPE PROCEDURE
  13567. DTD_IDENTIFIER NULL
  13568. ROUTINE_BODY SQL
  13569. ROUTINE_DEFINITION begin
  13570. declare done integer default 0;
  13571. declare variable_number_1 longtext;
  13572. declare variable_number_2 mediumint;
  13573. declare variable_number_3 longblob;
  13574. declare variable_number_4 real;
  13575. declare variable_number_5 year;
  13576. declare cursor_number_1 cursor for select * from res_6_408004_1 limit 0, 10;
  13577. declare cursor_number_2 cursor for select * from res_6_408004_1 limit 0, 10;
  13578. declare cursor_number_3 cursor for select * from res_6_408004_1 limit 0, 10;
  13579. declare cursor_number_4 cursor for select * from res_6_408004_1 limit 0, 10;
  13580. declare cursor_number_5 cursor for select * from res_6_408004_1 limit 0, 10;
  13581. declare continue handler for sqlstate '02000' set done = 1;
  13582. begin
  13583. open cursor_number_1;
  13584. while done <> 1 do
  13585. fetch cursor_number_1 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13586. if done <> 0 then
  13587. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3,
  13588. variable_number_4, variable_number_5);
  13589. end if;
  13590. end while;
  13591. begin
  13592. begin
  13593. set done = 0;
  13594. open cursor_number_2;
  13595. while done <> 1 do
  13596. fetch cursor_number_2 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13597. if done <> 0 then
  13598. insert into res_6_408004_2 values(variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13599. end if;
  13600. end while;
  13601. end;
  13602. set done = 0;
  13603. open cursor_number_3;
  13604. while done <> 1 do
  13605. fetch cursor_number_3 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13606. if done <> 0 then
  13607. insert into res_6_408004_2 values(variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13608. end if;
  13609. end while;
  13610. end;
  13611. end;
  13612. begin
  13613. set done = 0;
  13614. open cursor_number_4;
  13615. while done <> 1 do
  13616. fetch cursor_number_4 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13617. if done <> 0 then
  13618. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13619. end if;
  13620. end while;
  13621. end;
  13622. begin
  13623. set @a='test row';
  13624. select @a;
  13625. select @a;
  13626. select @a;
  13627. end;
  13628. begin
  13629. set done = 0;
  13630. open cursor_number_5;
  13631. while done <> 1 do
  13632. fetch cursor_number_5 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13633. if done <> 0 then
  13634. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13635. end if;
  13636. end while;
  13637. end;
  13638. begin
  13639. set @a='test row';
  13640. select @a;
  13641. select @a;
  13642. select @a;
  13643. end;
  13644. end
  13645. EXTERNAL_NAME NULL
  13646. EXTERNAL_LANGUAGE NULL
  13647. PARAMETER_STYLE SQL
  13648. IS_DETERMINISTIC NO
  13649. SQL_DATA_ACCESS CONTAINS SQL
  13650. SQL_PATH NULL
  13651. SECURITY_TYPE DEFINER
  13652. CREATED YYYY-MM-DD hh:mm:ss
  13653. LAST_ALTERED YYYY-MM-DD hh:mm:ss
  13654. SQL_MODE
  13655. ROUTINE_COMMENT
  13656. DEFINER root@localhost
  13657. CHARACTER_SET_CLIENT latin1
  13658. COLLATION_CONNECTION latin1_swedish_ci
  13659. DATABASE_COLLATION latin1_swedish_ci
  13660. LENGTH(routine_definition) 2549
  13661. use db_datadict;
  13662. drop procedure sp_6_408004;
  13663. drop table res_6_408004_1;
  13664. drop table res_6_408004_2;
  13665. use test;
  13666. drop database db_datadict;
  13667. Testcase 3.2.9.1:
  13668. --------------------------------------------------------------------------------
  13669. USE information_schema;
  13670. DESC schemata;
  13671. Field Type Null Key Default Extra
  13672. CATALOG_NAME varchar(4096) YES NULL
  13673. SCHEMA_NAME varchar(64) NO
  13674. DEFAULT_CHARACTER_SET_NAME varchar(64) NO
  13675. DEFAULT_COLLATION_NAME varchar(64) NO
  13676. SQL_PATH varchar(4096) YES NULL
  13677. SHOW CREATE TABLE schemata;
  13678. Table Create Table
  13679. SCHEMATA CREATE TEMPORARY TABLE `SCHEMATA` (
  13680. `CATALOG_NAME` varchar(4096) DEFAULT NULL,
  13681. `SCHEMA_NAME` varchar(64) NOT NULL DEFAULT '',
  13682. `DEFAULT_CHARACTER_SET_NAME` varchar(64) NOT NULL DEFAULT '',
  13683. `DEFAULT_COLLATION_NAME` varchar(64) NOT NULL DEFAULT '',
  13684. `SQL_PATH` varchar(4096) DEFAULT NULL
  13685. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13686. SELECT COUNT(*) FROM information_schema.columns
  13687. WHERE table_schema = 'information_schema'
  13688. AND table_name = 'schemata'
  13689. ORDER BY ordinal_position;
  13690. COUNT(*)
  13691. 5
  13692. SELECT * FROM information_schema.columns
  13693. WHERE table_schema = 'information_schema'
  13694. AND table_name = 'schemata'
  13695. ORDER BY ordinal_position;
  13696. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  13697. NULL information_schema schemata CATALOG_NAME 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13698. NULL information_schema schemata SCHEMA_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13699. NULL information_schema schemata DEFAULT_CHARACTER_SET_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13700. NULL information_schema schemata DEFAULT_COLLATION_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13701. NULL information_schema schemata SQL_PATH 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13702. Testcase 3.2.9.2 + 3.2.9.3:
  13703. --------------------------------------------------------------------------------
  13704. CREATE USER 'user_1'@'localhost';
  13705. CREATE USER 'user_2'@'localhost';
  13706. CREATE USER 'user_3'@'localhost';
  13707. DROP DATABASE IF EXISTS db_datadict_1;
  13708. DROP DATABASE IF EXISTS db_datadict_2;
  13709. CREATE DATABASE db_datadict_1;
  13710. CREATE DATABASE db_datadict_2;
  13711. GRANT SELECT ON db_datadict_1.* to 'user_1'@'localhost';
  13712. GRANT SELECT ON db_datadict_2.* to 'user_2'@'localhost';
  13713. FLUSH PRIVILEGES;
  13714. connect(localhost,user_1,,db_datadict_1,MYSQL_PORT,MYSQL_SOCK);
  13715. SELECT COUNT(*) FROM information_schema.schemata;
  13716. COUNT(*)
  13717. 3
  13718. SELECT * FROM information_schema.schemata;
  13719. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  13720. NULL information_schema utf8 utf8_general_ci NULL
  13721. NULL db_datadict_1 latin1 latin1_swedish_ci NULL
  13722. NULL test latin1 latin1_swedish_ci NULL
  13723. connect(localhost,user_2,,db_datadict_2,MYSQL_PORT,MYSQL_SOCK);
  13724. SELECT COUNT(*) FROM information_schema.schemata;
  13725. COUNT(*)
  13726. 3
  13727. SELECT * FROM information_schema.schemata;
  13728. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  13729. NULL information_schema utf8 utf8_general_ci NULL
  13730. NULL db_datadict_2 latin1 latin1_swedish_ci NULL
  13731. NULL test latin1 latin1_swedish_ci NULL
  13732. connect(localhost,user_3,,test,MYSQL_PORT,MYSQL_SOCK);
  13733. SELECT COUNT(*) FROM information_schema.schemata;
  13734. COUNT(*)
  13735. 2
  13736. SELECT * FROM information_schema.schemata;
  13737. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  13738. NULL information_schema utf8 utf8_general_ci NULL
  13739. NULL test latin1 latin1_swedish_ci NULL
  13740. root@localhost information_schema
  13741. DROP USER 'user_1'@'localhost';
  13742. DROP USER 'user_2'@'localhost';
  13743. DROP USER 'user_3'@'localhost';
  13744. DROP DATABASE db_datadict_1;
  13745. DROP DATABASE db_datadict_2;
  13746. Testcase 3.2.10.1:
  13747. --------------------------------------------------------------------------------
  13748. USE information_schema;
  13749. DESC table_constraints;
  13750. Field Type Null Key Default Extra
  13751. CONSTRAINT_CATALOG varchar(4096) YES NULL
  13752. CONSTRAINT_SCHEMA varchar(64) NO
  13753. CONSTRAINT_NAME varchar(64) NO
  13754. TABLE_SCHEMA varchar(64) NO
  13755. TABLE_NAME varchar(64) NO
  13756. CONSTRAINT_TYPE varchar(64) NO
  13757. SHOW CREATE TABLE table_constraints;
  13758. Table Create Table
  13759. TABLE_CONSTRAINTS CREATE TEMPORARY TABLE `TABLE_CONSTRAINTS` (
  13760. `CONSTRAINT_CATALOG` varchar(4096) DEFAULT NULL,
  13761. `CONSTRAINT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13762. `CONSTRAINT_NAME` varchar(64) NOT NULL DEFAULT '',
  13763. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13764. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  13765. `CONSTRAINT_TYPE` varchar(64) NOT NULL DEFAULT ''
  13766. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13767. SELECT COUNT(*) FROM information_schema.columns
  13768. WHERE table_schema = 'information_schema'
  13769. AND table_name = 'table_constraints'
  13770. ORDER BY ordinal_position;
  13771. COUNT(*)
  13772. 6
  13773. SELECT * FROM information_schema.columns
  13774. WHERE table_schema = 'information_schema'
  13775. AND table_name = 'table_constraints'
  13776. ORDER BY ordinal_position;
  13777. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  13778. NULL information_schema table_constraints CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13779. NULL information_schema table_constraints CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13780. NULL information_schema table_constraints CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13781. NULL information_schema table_constraints TABLE_SCHEMA 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13782. NULL information_schema table_constraints TABLE_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13783. NULL information_schema table_constraints CONSTRAINT_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13784. Testcase 3.2.10.2 + 3.2.10.3:
  13785. --------------------------------------------------------------------------------
  13786. CREATE USER 'user_1'@'localhost';
  13787. CREATE USER 'user_2'@'localhost';
  13788. DROP DATABASE IF EXISTS db_datadict;
  13789. DROP DATABASE IF EXISTS db_datadict_2;
  13790. CREATE DATABASE db_datadict;
  13791. CREATE DATABASE db_datadict_2;
  13792. USE db_datadict;
  13793. CREATE TABLE res_6_401003_1(f1 INT NOT NULL, PRIMARY KEY(f1), f2 INT, INDEX f2_ind(f2));
  13794. USE db_datadict_2;
  13795. CREATE TABLE res_6_401003_2(f1 INT NOT NULL, PRIMARY KEY(f1), f2 INT, INDEX f2_ind(f2));
  13796. GRANT SELECT ON db_datadict.res_6_401003_1 TO 'user_1'@'localhost';
  13797. GRANT SELECT ON db_datadict_2.res_6_401003_2 TO 'user_2'@'localhost';
  13798. FLUSH PRIVILEGES;
  13799. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13800. SELECT * FROM information_schema.table_constraints;
  13801. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  13802. NULL db_datadict PRIMARY db_datadict res_6_401003_1 PRIMARY KEY
  13803. SELECT COUNT(*) FROM information_schema.table_constraints;
  13804. COUNT(*)
  13805. 1
  13806. connect(localhost,user_2,,db_datadict_2,MYSQL_PORT,MYSQL_SOCK);
  13807. SELECT * FROM information_schema.table_constraints;
  13808. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  13809. NULL db_datadict_2 PRIMARY db_datadict_2 res_6_401003_2 PRIMARY KEY
  13810. SELECT COUNT(*) FROM information_schema.table_constraints;
  13811. COUNT(*)
  13812. 1
  13813. use db_datadict;
  13814. root@localhost db_datadict
  13815. DROP USER 'user_1'@'localhost';
  13816. DROP USER 'user_2'@'localhost';
  13817. DROP TABLE res_6_401003_1;
  13818. USE db_datadict_2;
  13819. DROP TABLE res_6_401003_2;
  13820. USE test;
  13821. DROP DATABASE db_datadict;
  13822. DROP DATABASE db_datadict_2;
  13823. Testcase 3.2.11.1:
  13824. --------------------------------------------------------------------------------
  13825. USE information_schema;
  13826. DESC table_privileges;
  13827. Field Type Null Key Default Extra
  13828. GRANTEE varchar(81) NO
  13829. TABLE_CATALOG varchar(4096) YES NULL
  13830. TABLE_SCHEMA varchar(64) NO
  13831. TABLE_NAME varchar(64) NO
  13832. PRIVILEGE_TYPE varchar(64) NO
  13833. IS_GRANTABLE varchar(3) NO
  13834. SHOW CREATE TABLE table_privileges;
  13835. Table Create Table
  13836. TABLE_PRIVILEGES CREATE TEMPORARY TABLE `TABLE_PRIVILEGES` (
  13837. `GRANTEE` varchar(81) NOT NULL DEFAULT '',
  13838. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  13839. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13840. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  13841. `PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
  13842. `IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''
  13843. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13844. SELECT COUNT(*) FROM information_schema.columns
  13845. WHERE table_schema = 'information_schema'
  13846. AND table_name = 'table_privileges'
  13847. ORDER BY ordinal_position;
  13848. COUNT(*)
  13849. 6
  13850. SELECT * FROM information_schema.columns
  13851. WHERE table_schema = 'information_schema'
  13852. AND table_name = 'table_privileges'
  13853. ORDER BY ordinal_position;
  13854. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  13855. NULL information_schema table_privileges GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  13856. NULL information_schema table_privileges TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13857. NULL information_schema table_privileges TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13858. NULL information_schema table_privileges TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13859. NULL information_schema table_privileges PRIVILEGE_TYPE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13860. NULL information_schema table_privileges IS_GRANTABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  13861. Testcase 3.2.11.2 + 3.2.11.3 + 3.2.11.4:
  13862. --------------------------------------------------------------------------------
  13863. DROP DATABASE IF EXISTS db_datadict;
  13864. create database db_datadict;
  13865. CREATE USER 'user_1'@'localhost';
  13866. GRANT CREATE, SELECT ON db_datadict.* TO 'user_1'@'localhost' WITH GRANT OPTION;
  13867. CREATE USER 'user_2'@'localhost';
  13868. CREATE USER 'user_3'@'localhost';
  13869. use db_datadict;
  13870. create table tb1(f1 int, f2 int, f3 int);
  13871. grant select on db_datadict.tb1 to 'user_1'@'localhost';
  13872. GRANT ALL on db_datadict.tb1 to 'user_2'@'localhost' WITH GRANT OPTION;
  13873. FLUSH PRIVILEGES;
  13874. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13875. CREATE TABLE tb3 (f1 TEXT);
  13876. GRANT SELECT ON db_datadict.tb3 to 'user_3'@'localhost';
  13877. SELECT * FROM information_schema.table_privileges
  13878. WHERE table_name LIKE 'tb%';
  13879. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  13880. 'user_1'@'localhost' NULL db_datadict tb1 SELECT NO
  13881. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13882. SELECT * FROM information_schema.table_privileges;
  13883. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  13884. 'user_2'@'localhost' NULL db_datadict tb1 SELECT YES
  13885. 'user_2'@'localhost' NULL db_datadict tb1 INSERT YES
  13886. 'user_2'@'localhost' NULL db_datadict tb1 UPDATE YES
  13887. 'user_2'@'localhost' NULL db_datadict tb1 DELETE YES
  13888. 'user_2'@'localhost' NULL db_datadict tb1 CREATE YES
  13889. 'user_2'@'localhost' NULL db_datadict tb1 DROP YES
  13890. 'user_2'@'localhost' NULL db_datadict tb1 REFERENCES YES
  13891. 'user_2'@'localhost' NULL db_datadict tb1 INDEX YES
  13892. 'user_2'@'localhost' NULL db_datadict tb1 ALTER YES
  13893. 'user_2'@'localhost' NULL db_datadict tb1 CREATE VIEW YES
  13894. 'user_2'@'localhost' NULL db_datadict tb1 SHOW VIEW YES
  13895. 'user_2'@'localhost' NULL db_datadict tb1 TRIGGER YES
  13896. SELECT USER(), COUNT(*)
  13897. FROM information_schema.table_privileges
  13898. WHERE grantee = USER();
  13899. USER() COUNT(*)
  13900. user_2@localhost 0
  13901. SELECT USER(), COUNT(*)
  13902. FROM information_schema.table_privileges
  13903. WHERE grantee = "'user_2'@'localhost'";
  13904. USER() COUNT(*)
  13905. user_2@localhost 12
  13906. connect(localhost,user_3,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13907. SELECT * FROM information_schema.table_privileges;
  13908. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  13909. 'user_3'@'localhost' NULL db_datadict tb3 SELECT NO
  13910. root@localhost db_datadict
  13911. SELECT * FROM information_schema.table_privileges;
  13912. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  13913. 'user_2'@'localhost' NULL db_datadict tb1 SELECT YES
  13914. 'user_2'@'localhost' NULL db_datadict tb1 INSERT YES
  13915. 'user_2'@'localhost' NULL db_datadict tb1 UPDATE YES
  13916. 'user_2'@'localhost' NULL db_datadict tb1 DELETE YES
  13917. 'user_2'@'localhost' NULL db_datadict tb1 CREATE YES
  13918. 'user_2'@'localhost' NULL db_datadict tb1 DROP YES
  13919. 'user_2'@'localhost' NULL db_datadict tb1 REFERENCES YES
  13920. 'user_2'@'localhost' NULL db_datadict tb1 INDEX YES
  13921. 'user_2'@'localhost' NULL db_datadict tb1 ALTER YES
  13922. 'user_2'@'localhost' NULL db_datadict tb1 CREATE VIEW YES
  13923. 'user_2'@'localhost' NULL db_datadict tb1 SHOW VIEW YES
  13924. 'user_2'@'localhost' NULL db_datadict tb1 TRIGGER YES
  13925. 'user_1'@'localhost' NULL db_datadict tb1 SELECT NO
  13926. 'user_3'@'localhost' NULL db_datadict tb3 SELECT NO
  13927. root@localhost db_datadict
  13928. DROP USER 'user_1'@'localhost';
  13929. DROP USER 'user_2'@'localhost';
  13930. DROP USER 'user_3'@'localhost';
  13931. drop table db_datadict.tb1;
  13932. drop table db_datadict.tb3;
  13933. use test;
  13934. drop database db_datadict;
  13935. Testcase 3.2.12.1:
  13936. --------------------------------------------------------------------------------
  13937. USE information_schema;
  13938. DESC tables;
  13939. Field Type Null Key Default Extra
  13940. TABLE_CATALOG varchar(4096) YES NULL
  13941. TABLE_SCHEMA varchar(64) NO
  13942. TABLE_NAME varchar(64) NO
  13943. TABLE_TYPE varchar(64) NO
  13944. ENGINE varchar(64) YES NULL
  13945. VERSION bigint(21) unsigned YES NULL
  13946. ROW_FORMAT varchar(10) YES NULL
  13947. TABLE_ROWS bigint(21) unsigned YES NULL
  13948. AVG_ROW_LENGTH bigint(21) unsigned YES NULL
  13949. DATA_LENGTH bigint(21) unsigned YES NULL
  13950. MAX_DATA_LENGTH bigint(21) unsigned YES NULL
  13951. INDEX_LENGTH bigint(21) unsigned YES NULL
  13952. DATA_FREE bigint(21) unsigned YES NULL
  13953. AUTO_INCREMENT bigint(21) unsigned YES NULL
  13954. CREATE_TIME datetime YES NULL
  13955. UPDATE_TIME datetime YES NULL
  13956. CHECK_TIME datetime YES NULL
  13957. TABLE_COLLATION varchar(64) YES NULL
  13958. CHECKSUM bigint(21) unsigned YES NULL
  13959. CREATE_OPTIONS varchar(255) YES NULL
  13960. TABLE_COMMENT varchar(80) NO
  13961. SHOW CREATE TABLE tables;
  13962. Table Create Table
  13963. TABLES CREATE TEMPORARY TABLE `TABLES` (
  13964. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  13965. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13966. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  13967. `TABLE_TYPE` varchar(64) NOT NULL DEFAULT '',
  13968. `ENGINE` varchar(64) DEFAULT NULL,
  13969. `VERSION` bigint(21) unsigned DEFAULT NULL,
  13970. `ROW_FORMAT` varchar(10) DEFAULT NULL,
  13971. `TABLE_ROWS` bigint(21) unsigned DEFAULT NULL,
  13972. `AVG_ROW_LENGTH` bigint(21) unsigned DEFAULT NULL,
  13973. `DATA_LENGTH` bigint(21) unsigned DEFAULT NULL,
  13974. `MAX_DATA_LENGTH` bigint(21) unsigned DEFAULT NULL,
  13975. `INDEX_LENGTH` bigint(21) unsigned DEFAULT NULL,
  13976. `DATA_FREE` bigint(21) unsigned DEFAULT NULL,
  13977. `AUTO_INCREMENT` bigint(21) unsigned DEFAULT NULL,
  13978. `CREATE_TIME` datetime DEFAULT NULL,
  13979. `UPDATE_TIME` datetime DEFAULT NULL,
  13980. `CHECK_TIME` datetime DEFAULT NULL,
  13981. `TABLE_COLLATION` varchar(64) DEFAULT NULL,
  13982. `CHECKSUM` bigint(21) unsigned DEFAULT NULL,
  13983. `CREATE_OPTIONS` varchar(255) DEFAULT NULL,
  13984. `TABLE_COMMENT` varchar(80) NOT NULL DEFAULT ''
  13985. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13986. SELECT COUNT(*) FROM information_schema.columns
  13987. WHERE table_schema = 'information_schema'
  13988. AND table_name = 'tables'
  13989. ORDER BY ordinal_position;
  13990. COUNT(*)
  13991. 21
  13992. SELECT * FROM information_schema.columns
  13993. WHERE table_schema = 'information_schema'
  13994. AND table_name = 'tables'
  13995. ORDER BY ordinal_position;
  13996. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  13997. NULL information_schema tables TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13998. NULL information_schema tables TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13999. NULL information_schema tables TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14000. NULL information_schema tables TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14001. NULL information_schema tables ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14002. NULL information_schema tables VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  14003. NULL information_schema tables ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  14004. NULL information_schema tables TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  14005. NULL information_schema tables AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  14006. NULL information_schema tables DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  14007. NULL information_schema tables MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  14008. NULL information_schema tables INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  14009. NULL information_schema tables DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  14010. NULL information_schema tables AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  14011. NULL information_schema tables CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  14012. NULL information_schema tables UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  14013. NULL information_schema tables CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  14014. NULL information_schema tables TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14015. NULL information_schema tables CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  14016. NULL information_schema tables CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  14017. NULL information_schema tables TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  14018. Testcase 3.2.12.2 + 3.2.12.3:
  14019. --------------------------------------------------------------------------------
  14020. DROP DATABASE IF EXISTS db_datadict;
  14021. create database db_datadict;
  14022. CREATE USER 'user_1'@'localhost';
  14023. GRANT CREATE, CREATE VIEW, INSERT, SELECT ON db_datadict.*
  14024. TO 'user_1'@'localhost' WITH GRANT OPTION;
  14025. CREATE USER 'user_2'@'localhost';
  14026. CREATE USER 'user_3'@'localhost';
  14027. use db_datadict;
  14028. create table tb1(f1 int, f2 int, f3 int);
  14029. grant select on db_datadict.tb1 to 'user_1'@'localhost';
  14030. GRANT ALL on db_datadict.tb1 to 'user_2'@'localhost' WITH GRANT OPTION;
  14031. FLUSH PRIVILEGES;
  14032. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  14033. CREATE TABLE tb2 (f1 DECIMAL);
  14034. CREATE TABLE tb3 (f1 TEXT);
  14035. GRANT SELECT ON db_datadict.tb3 to 'user_3'@'localhost';
  14036. GRANT INSERT ON db_datadict.tb3 to 'user_2'@'localhost';
  14037. CREATE VIEW v3 AS SELECT * FROM tb3;
  14038. GRANT SELECT ON db_datadict.v3 to 'user_3'@'localhost';
  14039. SELECT * FROM information_schema.tables
  14040. WHERE table_schema = 'information_schema';
  14041. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
  14042. NULL information_schema CHARACTER_SETS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14043. NULL information_schema COLLATIONS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14044. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14045. NULL information_schema COLUMNS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14046. NULL information_schema COLUMN_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14047. NULL information_schema ENGINES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14048. NULL information_schema EVENTS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14049. NULL information_schema FILES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14050. NULL information_schema GLOBAL_STATUS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14051. NULL information_schema GLOBAL_VARIABLES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14052. NULL information_schema KEY_COLUMN_USAGE SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14053. NULL information_schema PARTITIONS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14054. NULL information_schema PLUGINS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14055. NULL information_schema PROCESSLIST SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14056. NULL information_schema PROFILING SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14057. NULL information_schema REFERENTIAL_CONSTRAINTS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14058. NULL information_schema ROUTINES SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14059. NULL information_schema SCHEMATA SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14060. NULL information_schema SCHEMA_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14061. NULL information_schema SESSION_STATUS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14062. NULL information_schema SESSION_VARIABLES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14063. NULL information_schema STATISTICS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14064. NULL information_schema TABLES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14065. NULL information_schema TABLE_CONSTRAINTS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14066. NULL information_schema TABLE_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14067. NULL information_schema TRIGGERS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14068. NULL information_schema USER_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14069. NULL information_schema VIEWS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14070. SELECT * FROM information_schema.tables
  14071. WHERE NOT( table_schema = 'information_schema');
  14072. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
  14073. NULL db_datadict tb1 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14074. NULL db_datadict tb2 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14075. NULL db_datadict tb3 BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14076. NULL db_datadict v3 VIEW NULL NULL NULL NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss NULL NULL NULL VIEW
  14077. NULL test t1 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14078. NULL test t10 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14079. NULL test t11 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14080. NULL test t2 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14081. NULL test t3 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14082. NULL test t4 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14083. NULL test t7 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14084. NULL test t8 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14085. NULL test t9 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14086. NULL test tb1 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14087. NULL test tb2 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14088. NULL test tb3 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14089. NULL test tb4 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14090. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  14091. SELECT * FROM information_schema.tables
  14092. WHERE table_schema = 'information_schema';
  14093. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
  14094. NULL information_schema CHARACTER_SETS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14095. NULL information_schema COLLATIONS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14096. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14097. NULL information_schema COLUMNS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14098. NULL information_schema COLUMN_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14099. NULL information_schema ENGINES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14100. NULL information_schema EVENTS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14101. NULL information_schema FILES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14102. NULL information_schema GLOBAL_STATUS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14103. NULL information_schema GLOBAL_VARIABLES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14104. NULL information_schema KEY_COLUMN_USAGE SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14105. NULL information_schema PARTITIONS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14106. NULL information_schema PLUGINS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14107. NULL information_schema PROCESSLIST SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14108. NULL information_schema PROFILING SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14109. NULL information_schema REFERENTIAL_CONSTRAINTS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14110. NULL information_schema ROUTINES SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14111. NULL information_schema SCHEMATA SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14112. NULL information_schema SCHEMA_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14113. NULL information_schema SESSION_STATUS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14114. NULL information_schema SESSION_VARIABLES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14115. NULL information_schema STATISTICS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14116. NULL information_schema TABLES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14117. NULL information_schema TABLE_CONSTRAINTS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14118. NULL information_schema TABLE_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14119. NULL information_schema TRIGGERS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14120. NULL information_schema USER_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14121. NULL information_schema VIEWS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14122. SELECT * FROM information_schema.tables
  14123. WHERE NOT( table_schema = 'information_schema');
  14124. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
  14125. NULL db_datadict tb1 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14126. NULL db_datadict tb3 BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14127. NULL test t1 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14128. NULL test t10 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14129. NULL test t11 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14130. NULL test t2 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14131. NULL test t3 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14132. NULL test t4 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14133. NULL test t7 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14134. NULL test t8 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14135. NULL test t9 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14136. NULL test tb1 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14137. NULL test tb2 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14138. NULL test tb3 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14139. NULL test tb4 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14140. connect(localhost,user_3,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  14141. SELECT * FROM information_schema.tables
  14142. WHERE table_schema = 'information_schema';
  14143. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
  14144. NULL information_schema CHARACTER_SETS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14145. NULL information_schema COLLATIONS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14146. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14147. NULL information_schema COLUMNS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14148. NULL information_schema COLUMN_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14149. NULL information_schema ENGINES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14150. NULL information_schema EVENTS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14151. NULL information_schema FILES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14152. NULL information_schema GLOBAL_STATUS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14153. NULL information_schema GLOBAL_VARIABLES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14154. NULL information_schema KEY_COLUMN_USAGE SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14155. NULL information_schema PARTITIONS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14156. NULL information_schema PLUGINS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14157. NULL information_schema PROCESSLIST SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14158. NULL information_schema PROFILING SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14159. NULL information_schema REFERENTIAL_CONSTRAINTS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14160. NULL information_schema ROUTINES SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14161. NULL information_schema SCHEMATA SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14162. NULL information_schema SCHEMA_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14163. NULL information_schema SESSION_STATUS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14164. NULL information_schema SESSION_VARIABLES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14165. NULL information_schema STATISTICS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14166. NULL information_schema TABLES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14167. NULL information_schema TABLE_CONSTRAINTS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14168. NULL information_schema TABLE_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14169. NULL information_schema TRIGGERS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14170. NULL information_schema USER_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14171. NULL information_schema VIEWS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14172. SELECT * FROM information_schema.tables
  14173. WHERE NOT( table_schema = 'information_schema');
  14174. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
  14175. NULL db_datadict tb3 BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14176. NULL db_datadict v3 VIEW NULL NULL NULL NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss NULL NULL NULL VIEW
  14177. NULL test t1 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14178. NULL test t10 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14179. NULL test t11 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14180. NULL test t2 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14181. NULL test t3 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14182. NULL test t4 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14183. NULL test t7 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14184. NULL test t8 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14185. NULL test t9 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14186. NULL test tb1 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14187. NULL test tb2 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14188. NULL test tb3 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14189. NULL test tb4 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14190. root@localhost db_datadict
  14191. SELECT * FROM information_schema.tables
  14192. WHERE table_schema = 'information_schema';
  14193. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
  14194. NULL information_schema CHARACTER_SETS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14195. NULL information_schema COLLATIONS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14196. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14197. NULL information_schema COLUMNS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14198. NULL information_schema COLUMN_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14199. NULL information_schema ENGINES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14200. NULL information_schema EVENTS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14201. NULL information_schema FILES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14202. NULL information_schema GLOBAL_STATUS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14203. NULL information_schema GLOBAL_VARIABLES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14204. NULL information_schema KEY_COLUMN_USAGE SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14205. NULL information_schema PARTITIONS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14206. NULL information_schema PLUGINS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14207. NULL information_schema PROCESSLIST SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14208. NULL information_schema PROFILING SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14209. NULL information_schema REFERENTIAL_CONSTRAINTS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14210. NULL information_schema ROUTINES SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14211. NULL information_schema SCHEMATA SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14212. NULL information_schema SCHEMA_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14213. NULL information_schema SESSION_STATUS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14214. NULL information_schema SESSION_VARIABLES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14215. NULL information_schema STATISTICS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14216. NULL information_schema TABLES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14217. NULL information_schema TABLE_CONSTRAINTS SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14218. NULL information_schema TABLE_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14219. NULL information_schema TRIGGERS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14220. NULL information_schema USER_PRIVILEGES SYSTEM VIEW MEMORY 10 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14221. NULL information_schema VIEWS SYSTEM VIEW MyISAM 10 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
  14222. SELECT * FROM information_schema.tables
  14223. WHERE NOT( table_schema = 'information_schema') AND NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
  14224. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
  14225. NULL db_datadict tb1 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14226. NULL db_datadict tb2 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14227. NULL db_datadict tb3 BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14228. NULL db_datadict v3 VIEW NULL NULL NULL NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss NULL NULL NULL VIEW
  14229. NULL mysql columns_priv BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Column privileges
  14230. NULL mysql db BASE TABLE MyISAM 10 Fixed 3 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Database privileges
  14231. NULL mysql event BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL Events
  14232. NULL mysql func BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL User defined functions
  14233. NULL mysql general_log BASE TABLE CSV 10 Dynamic 1 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL General log
  14234. NULL mysql host BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Host privileges; Merged with database privileges
  14235. NULL mysql ndb_binlog_index BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14236. NULL mysql plugin BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL MySQL plugins
  14237. NULL mysql proc BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL Stored Procedures
  14238. NULL mysql procs_priv BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Procedure privileges
  14239. NULL mysql servers BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL MySQL Foreign Servers table
  14240. NULL mysql slow_log BASE TABLE CSV 10 Dynamic 2 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL Slow log
  14241. NULL mysql tables_priv BASE TABLE MyISAM 10 Fixed 5 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Table privileges
  14242. NULL mysql time_zone BASE TABLE MyISAM 10 Fixed 5 #ARL# #DL# #MDL# #IL# #DF# 6 YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL Time zones
  14243. NULL mysql time_zone_leap_second BASE TABLE MyISAM 10 Fixed 22 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL Leap seconds information for time zones
  14244. NULL mysql time_zone_name BASE TABLE MyISAM 10 Fixed 6 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL Time zone names
  14245. NULL mysql time_zone_transition BASE TABLE MyISAM 10 Fixed 393 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL Time zone transitions
  14246. NULL mysql time_zone_transition_type BASE TABLE MyISAM 10 Fixed 31 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL Time zone transition types
  14247. NULL mysql user BASE TABLE MyISAM 10 Dynamic 6 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Users and global privileges
  14248. NULL test t1 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14249. NULL test t10 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14250. NULL test t11 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14251. NULL test t2 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14252. NULL test t3 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14253. NULL test t4 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14254. NULL test t7 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14255. NULL test t8 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14256. NULL test t9 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14257. NULL test tb1 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14258. NULL test tb2 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14259. NULL test tb3 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14260. NULL test tb4 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14261. NULL test1 tb2 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14262. NULL test4 t6 BASE TABLE InnoDB 10 Compact 10 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
  14263. DROP USER 'user_1'@'localhost';
  14264. DROP USER 'user_2'@'localhost';
  14265. DROP USER 'user_3'@'localhost';
  14266. DROP TABLE db_datadict.tb1;
  14267. DROP TABLE db_datadict.tb3;
  14268. DROP VIEW db_datadict.v3;
  14269. USE test;
  14270. DROP DATABASE db_datadict;
  14271. Testcase 3.2.13.1:
  14272. --------------------------------------------------------------------------------
  14273. USE information_schema;
  14274. DESC views;
  14275. Field Type Null Key Default Extra
  14276. TABLE_CATALOG varchar(4096) YES NULL
  14277. TABLE_SCHEMA varchar(64) NO
  14278. TABLE_NAME varchar(64) NO
  14279. VIEW_DEFINITION longtext NO NULL
  14280. CHECK_OPTION varchar(8) NO
  14281. IS_UPDATABLE varchar(3) NO
  14282. DEFINER varchar(77) NO
  14283. SECURITY_TYPE varchar(7) NO
  14284. CHARACTER_SET_CLIENT varchar(32) NO
  14285. COLLATION_CONNECTION varchar(32) NO
  14286. SHOW CREATE TABLE views;
  14287. Table Create Table
  14288. VIEWS CREATE TEMPORARY TABLE `VIEWS` (
  14289. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  14290. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  14291. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  14292. `VIEW_DEFINITION` longtext NOT NULL,
  14293. `CHECK_OPTION` varchar(8) NOT NULL DEFAULT '',
  14294. `IS_UPDATABLE` varchar(3) NOT NULL DEFAULT '',
  14295. `DEFINER` varchar(77) NOT NULL DEFAULT '',
  14296. `SECURITY_TYPE` varchar(7) NOT NULL DEFAULT '',
  14297. `CHARACTER_SET_CLIENT` varchar(32) NOT NULL DEFAULT '',
  14298. `COLLATION_CONNECTION` varchar(32) NOT NULL DEFAULT ''
  14299. ) ENGINE=MyISAM DEFAULT CHARSET=utf8
  14300. SELECT COUNT(*) FROM information_schema.columns
  14301. WHERE table_schema = 'information_schema'
  14302. AND table_name = 'views'
  14303. ORDER BY ordinal_position;
  14304. COUNT(*)
  14305. 10
  14306. SELECT * FROM information_schema.columns
  14307. WHERE table_schema = 'information_schema'
  14308. AND table_name = 'views'
  14309. ORDER BY ordinal_position;
  14310. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  14311. NULL information_schema views TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  14312. NULL information_schema views TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14313. NULL information_schema views TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14314. NULL information_schema views VIEW_DEFINITION 4 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  14315. NULL information_schema views CHECK_OPTION 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  14316. NULL information_schema views IS_UPDATABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  14317. NULL information_schema views DEFINER 7 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  14318. NULL information_schema views SECURITY_TYPE 8 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  14319. NULL information_schema views CHARACTER_SET_CLIENT 9 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  14320. NULL information_schema views COLLATION_CONNECTION 10 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  14321. Testcase 3.2.13.2 + 3.2.13.3:
  14322. --------------------------------------------------------------------------------
  14323. DROP DATABASE IF EXISTS db_datadict;
  14324. CREATE DATABASE db_datadict;
  14325. CREATE USER 'user_1'@'localhost';
  14326. CREATE USER 'user_2'@'localhost';
  14327. CREATE USER 'user_no_views'@'localhost';
  14328. USE db_datadict;
  14329. CREATE TABLE tb_401302(f1 INT, f2 INT, f3 INT);
  14330. CREATE VIEW v_granted_to_1 AS SELECT * FROM tb_401302;
  14331. CREATE VIEW v_granted_glob AS SELECT f2, f3 FROM tb_401302;
  14332. GRANT SELECT ON db_datadict.tb_401302 TO 'user_1'@'localhost';
  14333. GRANT SELECT ON db_datadict.v_granted_to_1 TO 'user_1'@'localhost';
  14334. GRANT SHOW VIEW, CREATE VIEW ON db_datadict.* TO 'user_2'@'localhost';
  14335. FLUSH PRIVILEGES;
  14336. SELECT * FROM information_schema.views;
  14337. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE CHARACTER_SET_CLIENT COLLATION_CONNECTION
  14338. NULL db_datadict v_granted_glob SELECT f2, f3 FROM tb_401302 NONE YES root@localhost DEFINER latin1 latin1_swedish_ci
  14339. NULL db_datadict v_granted_to_1 SELECT * FROM tb_401302 NONE YES root@localhost DEFINER latin1 latin1_swedish_ci
  14340. connect(localhost,user_1,,test,MYSQL_PORT,MYSQL_SOCK);
  14341. SELECT * FROM information_schema.views;
  14342. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE CHARACTER_SET_CLIENT COLLATION_CONNECTION
  14343. NULL db_datadict v_granted_to_1 NONE YES root@localhost DEFINER latin1 latin1_swedish_ci
  14344. connect(localhost,user_2,,test,MYSQL_PORT,MYSQL_SOCK);
  14345. SELECT * FROM information_schema.views;
  14346. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE CHARACTER_SET_CLIENT COLLATION_CONNECTION
  14347. NULL db_datadict v_granted_glob NONE YES root@localhost DEFINER latin1 latin1_swedish_ci
  14348. NULL db_datadict v_granted_to_1 NONE YES root@localhost DEFINER latin1 latin1_swedish_ci
  14349. connect(localhost,user_no_views,,test,MYSQL_PORT,MYSQL_SOCK);
  14350. SELECT * FROM information_schema.views;
  14351. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE CHARACTER_SET_CLIENT COLLATION_CONNECTION
  14352. root@localhost db_datadict
  14353. USE db_datadict;
  14354. DROP USER 'user_1'@'localhost';
  14355. DROP USER 'user_2'@'localhost';
  14356. DROP USER 'user_no_views'@'localhost';
  14357. DROP VIEW v_granted_to_1;
  14358. DROP TABLE tb_401302;
  14359. DROP VIEW v_granted_glob;
  14360. USE test;
  14361. DROP DATABASE db_datadict;
  14362. Testcase 3.2.14.1:
  14363. --------------------------------------------------------------------------------
  14364. USE information_schema;
  14365. DESC statistics;
  14366. Field Type Null Key Default Extra
  14367. TABLE_CATALOG varchar(4096) YES NULL
  14368. TABLE_SCHEMA varchar(64) NO
  14369. TABLE_NAME varchar(64) NO
  14370. NON_UNIQUE bigint(1) NO 0
  14371. INDEX_SCHEMA varchar(64) NO
  14372. INDEX_NAME varchar(64) NO
  14373. SEQ_IN_INDEX bigint(2) NO 0
  14374. COLUMN_NAME varchar(64) NO
  14375. COLLATION varchar(1) YES NULL
  14376. CARDINALITY bigint(21) YES NULL
  14377. SUB_PART bigint(3) YES NULL
  14378. PACKED varchar(10) YES NULL
  14379. NULLABLE varchar(3) NO
  14380. INDEX_TYPE varchar(16) NO
  14381. COMMENT varchar(16) YES NULL
  14382. SHOW CREATE TABLE statistics;
  14383. Table Create Table
  14384. STATISTICS CREATE TEMPORARY TABLE `STATISTICS` (
  14385. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  14386. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  14387. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  14388. `NON_UNIQUE` bigint(1) NOT NULL DEFAULT '0',
  14389. `INDEX_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  14390. `INDEX_NAME` varchar(64) NOT NULL DEFAULT '',
  14391. `SEQ_IN_INDEX` bigint(2) NOT NULL DEFAULT '0',
  14392. `COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
  14393. `COLLATION` varchar(1) DEFAULT NULL,
  14394. `CARDINALITY` bigint(21) DEFAULT NULL,
  14395. `SUB_PART` bigint(3) DEFAULT NULL,
  14396. `PACKED` varchar(10) DEFAULT NULL,
  14397. `NULLABLE` varchar(3) NOT NULL DEFAULT '',
  14398. `INDEX_TYPE` varchar(16) NOT NULL DEFAULT '',
  14399. `COMMENT` varchar(16) DEFAULT NULL
  14400. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  14401. SELECT COUNT(*) FROM information_schema.columns
  14402. WHERE table_schema = 'information_schema'
  14403. AND table_name = 'statistics'
  14404. ORDER BY ordinal_position;
  14405. COUNT(*)
  14406. 15
  14407. SELECT * FROM information_schema.columns
  14408. WHERE table_schema = 'information_schema'
  14409. AND table_name = 'statistics'
  14410. ORDER BY ordinal_position;
  14411. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  14412. NULL information_schema statistics TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  14413. NULL information_schema statistics TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14414. NULL information_schema statistics TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14415. NULL information_schema statistics NON_UNIQUE 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(1) select
  14416. NULL information_schema statistics INDEX_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14417. NULL information_schema statistics INDEX_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14418. NULL information_schema statistics SEQ_IN_INDEX 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(2) select
  14419. NULL information_schema statistics COLUMN_NAME 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14420. NULL information_schema statistics COLLATION 9 NULL YES varchar 1 3 NULL NULL utf8 utf8_general_ci varchar(1) select
  14421. NULL information_schema statistics CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  14422. NULL information_schema statistics SUB_PART 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(3) select
  14423. NULL information_schema statistics PACKED 12 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  14424. NULL information_schema statistics NULLABLE 13 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  14425. NULL information_schema statistics INDEX_TYPE 14 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  14426. NULL information_schema statistics COMMENT 15 NULL YES varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  14427. Testcase 3.2.14.2 + 3.2.14.3:
  14428. --------------------------------------------------------------------------------
  14429. DROP DATABASE IF EXISTS db_datadict;
  14430. DROP DATABASE IF EXISTS db_datadict_2;
  14431. CREATE DATABASE db_datadict;
  14432. CREATE DATABASE db_datadict_2;
  14433. CREATE USER 'user_1'@'localhost';
  14434. CREATE USER 'user_2'@'localhost';
  14435. USE db_datadict;
  14436. create table tb_6_401402_1(f1 int not null, primary key(f1), f2 int, index f2_ind(f2));
  14437. create table tb_6_401402_2(f1 int not null, primary key(f1), f2 int, index f2_ind(f2));
  14438. grant select on db_datadict.tb_6_401402_1 to 'user_1'@'localhost' WITH GRANT OPTION;
  14439. USE db_datadict_2;
  14440. create table tb_2_1(f1 int not null, primary key(f1), f2 int, index f2_ind(f2));
  14441. create table tb_2_2(f1 int not null, primary key(f1), f2 int, index f2_ind(f2));
  14442. grant select on db_datadict_2.tb_2_1 to 'user_1'@'localhost';
  14443. FLUSH PRIVILEGES;
  14444. connect(localhost,user_1,,test,MYSQL_PORT,MYSQL_SOCK);
  14445. SELECT * FROM information_schema.statistics;
  14446. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
  14447. NULL db_datadict tb_6_401402_1 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
  14448. NULL db_datadict tb_6_401402_1 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
  14449. NULL db_datadict_2 tb_2_1 0 db_datadict_2 PRIMARY 1 f1 A 0 NULL NULL BTREE
  14450. NULL db_datadict_2 tb_2_1 1 db_datadict_2 f2_ind 1 f2 A NULL NULL NULL YES BTREE
  14451. connect(localhost,user_2,,test,MYSQL_PORT,MYSQL_SOCK);
  14452. SELECT * FROM information_schema.statistics;
  14453. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
  14454. root@localhost db_datadict_2
  14455. REVOKE SELECT ON db_datadict.tb_6_401402_1 FROM 'user_1'@'localhost';
  14456. SELECT * FROM information_schema.statistics
  14457. WHERE NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
  14458. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
  14459. NULL db_datadict tb_6_401402_1 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
  14460. NULL db_datadict tb_6_401402_1 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
  14461. NULL db_datadict tb_6_401402_2 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
  14462. NULL db_datadict tb_6_401402_2 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
  14463. NULL db_datadict_2 tb_2_1 0 db_datadict_2 PRIMARY 1 f1 A 0 NULL NULL BTREE
  14464. NULL db_datadict_2 tb_2_1 1 db_datadict_2 f2_ind 1 f2 A NULL NULL NULL YES BTREE
  14465. NULL db_datadict_2 tb_2_2 0 db_datadict_2 PRIMARY 1 f1 A 0 NULL NULL BTREE
  14466. NULL db_datadict_2 tb_2_2 1 db_datadict_2 f2_ind 1 f2 A NULL NULL NULL YES BTREE
  14467. NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  14468. NULL mysql columns_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  14469. NULL mysql columns_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  14470. NULL mysql columns_priv 0 mysql PRIMARY 4 Table_name A NULL NULL NULL BTREE
  14471. NULL mysql columns_priv 0 mysql PRIMARY 5 Column_name A 0 NULL NULL BTREE
  14472. NULL mysql db 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  14473. NULL mysql db 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  14474. NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
  14475. NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
  14476. NULL mysql event 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
  14477. NULL mysql event 0 mysql PRIMARY 2 name A 0 NULL NULL BTREE
  14478. NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
  14479. NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  14480. NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
  14481. NULL mysql ndb_binlog_index 0 mysql PRIMARY 1 epoch A 0 NULL NULL BTREE
  14482. NULL mysql plugin 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
  14483. NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
  14484. NULL mysql proc 0 mysql PRIMARY 2 name A NULL NULL NULL BTREE
  14485. NULL mysql proc 0 mysql PRIMARY 3 type A 0 NULL NULL BTREE
  14486. NULL mysql procs_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  14487. NULL mysql procs_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  14488. NULL mysql procs_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  14489. NULL mysql procs_priv 0 mysql PRIMARY 4 Routine_name A NULL NULL NULL BTREE
  14490. NULL mysql procs_priv 0 mysql PRIMARY 5 Routine_type A 0 NULL NULL BTREE
  14491. NULL mysql procs_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
  14492. NULL mysql servers 0 mysql PRIMARY 1 Server_name A 0 NULL NULL BTREE
  14493. NULL mysql tables_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  14494. NULL mysql tables_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  14495. NULL mysql tables_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  14496. NULL mysql tables_priv 0 mysql PRIMARY 4 Table_name A 2 NULL NULL BTREE
  14497. NULL mysql tables_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
  14498. NULL mysql time_zone 0 mysql PRIMARY 1 Time_zone_id A 5 NULL NULL BTREE
  14499. NULL mysql time_zone_leap_second 0 mysql PRIMARY 1 Transition_time A 22 NULL NULL BTREE
  14500. NULL mysql time_zone_name 0 mysql PRIMARY 1 Name A 6 NULL NULL BTREE
  14501. NULL mysql time_zone_transition 0 mysql PRIMARY 1 Time_zone_id A NULL NULL NULL BTREE
  14502. NULL mysql time_zone_transition 0 mysql PRIMARY 2 Transition_time A 393 NULL NULL BTREE
  14503. NULL mysql time_zone_transition_type 0 mysql PRIMARY 1 Time_zone_id A NULL NULL NULL BTREE
  14504. NULL mysql time_zone_transition_type 0 mysql PRIMARY 2 Transition_type_id A 31 NULL NULL BTREE
  14505. NULL mysql user 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  14506. NULL mysql user 0 mysql PRIMARY 2 User A 5 NULL NULL BTREE
  14507. user_1@localhost test
  14508. SELECT * FROM information_schema.statistics;
  14509. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
  14510. NULL db_datadict tb_6_401402_1 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
  14511. NULL db_datadict tb_6_401402_1 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
  14512. NULL db_datadict_2 tb_2_1 0 db_datadict_2 PRIMARY 1 f1 A 0 NULL NULL BTREE
  14513. NULL db_datadict_2 tb_2_1 1 db_datadict_2 f2_ind 1 f2 A NULL NULL NULL YES BTREE
  14514. user_2@localhost test
  14515. SELECT * FROM information_schema.statistics;
  14516. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
  14517. root@localhost db_datadict_2
  14518. USE db_datadict;
  14519. DROP USER 'user_1'@'localhost';
  14520. DROP USER 'user_2'@'localhost';
  14521. DROP TABLE tb_6_401402_1;
  14522. DROP TABLE tb_6_401402_2;
  14523. USE test;
  14524. DROP DATABASE db_datadict;
  14525. Testcase 3.2.15.1:
  14526. --------------------------------------------------------------------------------
  14527. USE information_schema;
  14528. DESC schema_privileges;
  14529. Field Type Null Key Default Extra
  14530. GRANTEE varchar(81) NO
  14531. TABLE_CATALOG varchar(4096) YES NULL
  14532. TABLE_SCHEMA varchar(64) NO
  14533. PRIVILEGE_TYPE varchar(64) NO
  14534. IS_GRANTABLE varchar(3) NO
  14535. SHOW CREATE TABLE schema_privileges;
  14536. Table Create Table
  14537. SCHEMA_PRIVILEGES CREATE TEMPORARY TABLE `SCHEMA_PRIVILEGES` (
  14538. `GRANTEE` varchar(81) NOT NULL DEFAULT '',
  14539. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  14540. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  14541. `PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
  14542. `IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''
  14543. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  14544. SELECT COUNT(*) FROM information_schema.columns
  14545. WHERE table_schema = 'information_schema'
  14546. AND table_name = 'schema_privileges'
  14547. ORDER BY ordinal_position;
  14548. COUNT(*)
  14549. 5
  14550. SELECT * FROM information_schema.columns
  14551. WHERE table_schema = 'information_schema'
  14552. AND table_name = 'schema_privileges'
  14553. ORDER BY ordinal_position;
  14554. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  14555. NULL information_schema schema_privileges GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  14556. NULL information_schema schema_privileges TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  14557. NULL information_schema schema_privileges TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14558. NULL information_schema schema_privileges PRIVILEGE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14559. NULL information_schema schema_privileges IS_GRANTABLE 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  14560. Testcase 3.2.15.2:
  14561. --------------------------------------------------------------------------------
  14562. DROP DATABASE IF EXISTS db_datadict;
  14563. DROP DATABASE IF EXISTS db_datadict_2;
  14564. create database db_datadict;
  14565. create database db_datadict_2;
  14566. CREATE USER 'u_6_401502'@'localhost';
  14567. use db_datadict;
  14568. create table res_6_401502(f1 int, f2 int, f3 int);
  14569. grant insert on db_datadict.* to 'u_6_401502'@'localhost';
  14570. FLUSH PRIVILEGES;
  14571. SELECT * FROM information_schema.schema_privileges;
  14572. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14573. 'u_6_401502'@'localhost' NULL db_datadict INSERT NO
  14574. ''@'%' NULL test SELECT NO
  14575. ''@'%' NULL test INSERT NO
  14576. ''@'%' NULL test UPDATE NO
  14577. ''@'%' NULL test DELETE NO
  14578. ''@'%' NULL test CREATE NO
  14579. ''@'%' NULL test DROP NO
  14580. ''@'%' NULL test REFERENCES NO
  14581. ''@'%' NULL test INDEX NO
  14582. ''@'%' NULL test ALTER NO
  14583. ''@'%' NULL test CREATE TEMPORARY TABLES NO
  14584. ''@'%' NULL test LOCK TABLES NO
  14585. ''@'%' NULL test CREATE VIEW NO
  14586. ''@'%' NULL test SHOW VIEW NO
  14587. ''@'%' NULL test CREATE ROUTINE NO
  14588. ''@'%' NULL test EVENT NO
  14589. ''@'%' NULL test TRIGGER NO
  14590. ''@'%' NULL test\_% SELECT NO
  14591. ''@'%' NULL test\_% INSERT NO
  14592. ''@'%' NULL test\_% UPDATE NO
  14593. ''@'%' NULL test\_% DELETE NO
  14594. ''@'%' NULL test\_% CREATE NO
  14595. ''@'%' NULL test\_% DROP NO
  14596. ''@'%' NULL test\_% REFERENCES NO
  14597. ''@'%' NULL test\_% INDEX NO
  14598. ''@'%' NULL test\_% ALTER NO
  14599. ''@'%' NULL test\_% CREATE TEMPORARY TABLES NO
  14600. ''@'%' NULL test\_% LOCK TABLES NO
  14601. ''@'%' NULL test\_% CREATE VIEW NO
  14602. ''@'%' NULL test\_% SHOW VIEW NO
  14603. ''@'%' NULL test\_% CREATE ROUTINE NO
  14604. ''@'%' NULL test\_% EVENT NO
  14605. ''@'%' NULL test\_% TRIGGER NO
  14606. connect(localhost,u_6_401502,,test,MYSQL_PORT,MYSQL_SOCK);
  14607. SELECT * FROM information_schema.schema_privileges;
  14608. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14609. 'u_6_401502'@'localhost' NULL db_datadict INSERT NO
  14610. use db_datadict;
  14611. root@localhost db_datadict
  14612. DROP USER 'u_6_401502'@'localhost';
  14613. drop table res_6_401502;
  14614. use test;
  14615. drop database db_datadict;
  14616. drop database db_datadict_2;
  14617. Testcase 3.2.15.3 + 3.2.15.4:
  14618. --------------------------------------------------------------------------------
  14619. DROP DATABASE IF EXISTS db_datadict;
  14620. DROP DATABASE IF EXISTS db_datadict_2;
  14621. create database db_datadict;
  14622. create database db_datadict_2;
  14623. CREATE USER 'u_6_401503_1'@'localhost';
  14624. CREATE USER 'u_6_401503_2'@'localhost';
  14625. CREATE USER 'u_6_401503_3'@'localhost';
  14626. use db_datadict;
  14627. create table res_6_401503_1(f1 int, f2 int, f3 int);
  14628. use db_datadict_2;
  14629. create table res_6_401503_2(f1 int, f2 int, f3 int);
  14630. grant update on db_datadict.* to 'u_6_401503_1'@'localhost';
  14631. grant delete on db_datadict_2.* to 'u_6_401503_2'@'localhost';
  14632. FLUSH PRIVILEGES;
  14633. SELECT * FROM information_schema.schema_privileges;
  14634. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14635. 'u_6_401503_1'@'localhost' NULL db_datadict UPDATE NO
  14636. 'u_6_401503_2'@'localhost' NULL db_datadict_2 DELETE NO
  14637. ''@'%' NULL test SELECT NO
  14638. ''@'%' NULL test INSERT NO
  14639. ''@'%' NULL test UPDATE NO
  14640. ''@'%' NULL test DELETE NO
  14641. ''@'%' NULL test CREATE NO
  14642. ''@'%' NULL test DROP NO
  14643. ''@'%' NULL test REFERENCES NO
  14644. ''@'%' NULL test INDEX NO
  14645. ''@'%' NULL test ALTER NO
  14646. ''@'%' NULL test CREATE TEMPORARY TABLES NO
  14647. ''@'%' NULL test LOCK TABLES NO
  14648. ''@'%' NULL test CREATE VIEW NO
  14649. ''@'%' NULL test SHOW VIEW NO
  14650. ''@'%' NULL test CREATE ROUTINE NO
  14651. ''@'%' NULL test EVENT NO
  14652. ''@'%' NULL test TRIGGER NO
  14653. ''@'%' NULL test\_% SELECT NO
  14654. ''@'%' NULL test\_% INSERT NO
  14655. ''@'%' NULL test\_% UPDATE NO
  14656. ''@'%' NULL test\_% DELETE NO
  14657. ''@'%' NULL test\_% CREATE NO
  14658. ''@'%' NULL test\_% DROP NO
  14659. ''@'%' NULL test\_% REFERENCES NO
  14660. ''@'%' NULL test\_% INDEX NO
  14661. ''@'%' NULL test\_% ALTER NO
  14662. ''@'%' NULL test\_% CREATE TEMPORARY TABLES NO
  14663. ''@'%' NULL test\_% LOCK TABLES NO
  14664. ''@'%' NULL test\_% CREATE VIEW NO
  14665. ''@'%' NULL test\_% SHOW VIEW NO
  14666. ''@'%' NULL test\_% CREATE ROUTINE NO
  14667. ''@'%' NULL test\_% EVENT NO
  14668. ''@'%' NULL test\_% TRIGGER NO
  14669. connect(localhost,u_6_401503_1,,test,MYSQL_PORT,MYSQL_SOCK);
  14670. SELECT * FROM information_schema.schema_privileges;
  14671. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14672. 'u_6_401503_1'@'localhost' NULL db_datadict UPDATE NO
  14673. connect(localhost,u_6_401503_2,,test,MYSQL_PORT,MYSQL_SOCK);
  14674. SELECT * FROM information_schema.schema_privileges;
  14675. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14676. 'u_6_401503_2'@'localhost' NULL db_datadict_2 DELETE NO
  14677. connect(localhost,u_6_401503_3,,test,MYSQL_PORT,MYSQL_SOCK);
  14678. SELECT * FROM information_schema.schema_privileges;
  14679. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14680. root@localhost db_datadict_2
  14681. use db_datadict;
  14682. DROP USER 'u_6_401503_1'@'localhost';
  14683. DROP USER 'u_6_401503_2'@'localhost';
  14684. DROP USER 'u_6_401503_3'@'localhost';
  14685. drop table res_6_401503_1;
  14686. use db_datadict_2;
  14687. drop table res_6_401503_2;
  14688. use test;
  14689. drop database db_datadict;
  14690. drop database db_datadict_2;
  14691. Testcase 3.2.16.1:
  14692. --------------------------------------------------------------------------------
  14693. USE information_schema;
  14694. DESC user_privileges;
  14695. Field Type Null Key Default Extra
  14696. GRANTEE varchar(81) NO
  14697. TABLE_CATALOG varchar(4096) YES NULL
  14698. PRIVILEGE_TYPE varchar(64) NO
  14699. IS_GRANTABLE varchar(3) NO
  14700. SHOW CREATE TABLE user_privileges;
  14701. Table Create Table
  14702. USER_PRIVILEGES CREATE TEMPORARY TABLE `USER_PRIVILEGES` (
  14703. `GRANTEE` varchar(81) NOT NULL DEFAULT '',
  14704. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  14705. `PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
  14706. `IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''
  14707. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  14708. SELECT COUNT(*) FROM information_schema.columns
  14709. WHERE table_schema = 'information_schema'
  14710. AND table_name = 'user_privileges'
  14711. ORDER BY ordinal_position;
  14712. COUNT(*)
  14713. 4
  14714. SELECT * FROM information_schema.columns
  14715. WHERE table_schema = 'information_schema'
  14716. AND table_name = 'user_privileges'
  14717. ORDER BY ordinal_position;
  14718. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  14719. NULL information_schema user_privileges GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  14720. NULL information_schema user_privileges TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  14721. NULL information_schema user_privileges PRIVILEGE_TYPE 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14722. NULL information_schema user_privileges IS_GRANTABLE 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  14723. Testcase 3.2.16.2 + 3.2.16.3 + 3.2.16.4:
  14724. --------------------------------------------------------------------------------
  14725. DROP DATABASE IF EXISTS db_datadict;
  14726. CREATE DATABASE db_datadict;
  14727. CREATE USER 'user_1'@'localhost';
  14728. CREATE USER 'user_2'@'localhost';
  14729. CREATE USER 'user_3'@'localhost';
  14730. GRANT SELECT ON db_datadict.* TO 'user_1'@'localhost';
  14731. GRANT SELECT ON mysql.user TO 'user_1'@'localhost';
  14732. GRANT INSERT ON *.* TO 'user_2'@'localhost';
  14733. GRANT UPDATE ON *.* TO 'user_2'@'localhost';
  14734. FLUSH PRIVILEGES;
  14735. FIXME (see Bug 12269) Here we expect more than only <USAGE> for user_1
  14736. ----------------------------------------------------------------------
  14737. SELECT * FROM information_schema.user_privileges
  14738. WHERE grantee LIKE "%user%"
  14739. ORDER BY grantee, table_catalog, privilege_type;
  14740. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14741. 'user_1'@'localhost' NULL USAGE NO
  14742. 'user_2'@'localhost' NULL INSERT NO
  14743. 'user_2'@'localhost' NULL UPDATE NO
  14744. 'user_3'@'localhost' NULL USAGE NO
  14745. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14746. Host User Password Select_priv Insert_priv Update_priv Delete_priv Create_priv Drop_priv Reload_priv Shutdown_priv Process_priv File_priv Grant_priv References_priv Index_priv Alter_priv Show_db_priv Super_priv Create_tmp_table_priv Lock_tables_priv Execute_priv Repl_slave_priv Repl_client_priv Create_view_priv Show_view_priv Create_routine_priv Alter_routine_priv Create_user_priv Event_priv Trigger_priv ssl_type ssl_cipher x509_issuer x509_subject max_questions max_updates max_connections max_user_connections
  14747. localhost user_1 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14748. localhost user_2 N Y Y N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14749. localhost user_3 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14750. SHOW GRANTS;
  14751. Grants for root@localhost
  14752. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14753. add GRANT OPTION db_datadict.* to user_1
  14754. ----------------------------------------
  14755. GRANT UPDATE ON db_datadict.* TO 'user_1'@'localhost' WITH GRANT OPTION;
  14756. FIXME (see Bug 12269) Here the <YES> is missing for the GRANT OPTION for user_1
  14757. -------------------------------------------------------------------------------
  14758. SELECT * FROM information_schema.user_privileges
  14759. WHERE grantee LIKE "%user%"
  14760. ORDER BY grantee, table_catalog, privilege_type;
  14761. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14762. 'user_1'@'localhost' NULL USAGE NO
  14763. 'user_2'@'localhost' NULL INSERT NO
  14764. 'user_2'@'localhost' NULL UPDATE NO
  14765. 'user_3'@'localhost' NULL USAGE NO
  14766. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14767. Host User Password Select_priv Insert_priv Update_priv Delete_priv Create_priv Drop_priv Reload_priv Shutdown_priv Process_priv File_priv Grant_priv References_priv Index_priv Alter_priv Show_db_priv Super_priv Create_tmp_table_priv Lock_tables_priv Execute_priv Repl_slave_priv Repl_client_priv Create_view_priv Show_view_priv Create_routine_priv Alter_routine_priv Create_user_priv Event_priv Trigger_priv ssl_type ssl_cipher x509_issuer x509_subject max_questions max_updates max_connections max_user_connections
  14768. localhost user_1 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14769. localhost user_2 N Y Y N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14770. localhost user_3 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14771. SHOW GRANTS;
  14772. Grants for root@localhost
  14773. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14774. FLUSH PRIVILEGES;
  14775. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  14776. SELECT * FROM information_schema.user_privileges
  14777. WHERE grantee LIKE "%user%"
  14778. ORDER BY grantee, table_catalog, privilege_type;
  14779. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14780. 'user_1'@'localhost' NULL USAGE NO
  14781. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14782. Host User Password Select_priv Insert_priv Update_priv Delete_priv Create_priv Drop_priv Reload_priv Shutdown_priv Process_priv File_priv Grant_priv References_priv Index_priv Alter_priv Show_db_priv Super_priv Create_tmp_table_priv Lock_tables_priv Execute_priv Repl_slave_priv Repl_client_priv Create_view_priv Show_view_priv Create_routine_priv Alter_routine_priv Create_user_priv Event_priv Trigger_priv ssl_type ssl_cipher x509_issuer x509_subject max_questions max_updates max_connections max_user_connections
  14783. localhost user_1 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14784. localhost user_2 N Y Y N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14785. localhost user_3 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14786. SHOW GRANTS;
  14787. Grants for user_1@localhost
  14788. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14789. GRANT SELECT, UPDATE ON `db_datadict`.* TO 'user_1'@'localhost' WITH GRANT OPTION
  14790. GRANT SELECT ON `mysql`.`user` TO 'user_1'@'localhost'
  14791. Now add SELECT on *.* to user_1
  14792. -------------------------------
  14793. root@localhost information_schema
  14794. GRANT SELECT ON *.* TO 'user_1'@'localhost';
  14795. Here <SELECT NO> is shown correctly for user_1
  14796. ----------------------------------------------
  14797. SELECT * FROM information_schema.user_privileges
  14798. WHERE grantee LIKE "%user%"
  14799. ORDER BY grantee, table_catalog, privilege_type;
  14800. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14801. 'user_1'@'localhost' NULL SELECT NO
  14802. 'user_2'@'localhost' NULL INSERT NO
  14803. 'user_2'@'localhost' NULL UPDATE NO
  14804. 'user_3'@'localhost' NULL USAGE NO
  14805. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14806. Host User Password Select_priv Insert_priv Update_priv Delete_priv Create_priv Drop_priv Reload_priv Shutdown_priv Process_priv File_priv Grant_priv References_priv Index_priv Alter_priv Show_db_priv Super_priv Create_tmp_table_priv Lock_tables_priv Execute_priv Repl_slave_priv Repl_client_priv Create_view_priv Show_view_priv Create_routine_priv Alter_routine_priv Create_user_priv Event_priv Trigger_priv ssl_type ssl_cipher x509_issuer x509_subject max_questions max_updates max_connections max_user_connections
  14807. localhost user_1 Y N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14808. localhost user_2 N Y Y N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14809. localhost user_3 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14810. SHOW GRANTS;
  14811. Grants for root@localhost
  14812. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14813. GRANT SELECT ON *.* TO 'user_1'@'localhost' WITH GRANT OPTION;
  14814. Here <SELECT YES> is shown correctly for user_1
  14815. -----------------------------------------------
  14816. SELECT * FROM information_schema.user_privileges
  14817. WHERE grantee LIKE "%user%"
  14818. ORDER BY grantee, table_catalog, privilege_type;
  14819. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14820. 'user_1'@'localhost' NULL SELECT YES
  14821. 'user_2'@'localhost' NULL INSERT NO
  14822. 'user_2'@'localhost' NULL UPDATE NO
  14823. 'user_3'@'localhost' NULL USAGE NO
  14824. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14825. Host User Password Select_priv Insert_priv Update_priv Delete_priv Create_priv Drop_priv Reload_priv Shutdown_priv Process_priv File_priv Grant_priv References_priv Index_priv Alter_priv Show_db_priv Super_priv Create_tmp_table_priv Lock_tables_priv Execute_priv Repl_slave_priv Repl_client_priv Create_view_priv Show_view_priv Create_routine_priv Alter_routine_priv Create_user_priv Event_priv Trigger_priv ssl_type ssl_cipher x509_issuer x509_subject max_questions max_updates max_connections max_user_connections
  14826. localhost user_1 Y N N N N N N N N N Y N N N N N N N N N N N N N N N N N 0 0 0 0
  14827. localhost user_2 N Y Y N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14828. localhost user_3 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14829. SHOW GRANTS;
  14830. Grants for root@localhost
  14831. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14832. FLUSH PRIVILEGES;
  14833. SELECT * FROM information_schema.user_privileges
  14834. WHERE grantee LIKE "%user%"
  14835. ORDER BY grantee, table_catalog, privilege_type;
  14836. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14837. 'user_1'@'localhost' NULL SELECT YES
  14838. 'user_2'@'localhost' NULL INSERT NO
  14839. 'user_2'@'localhost' NULL UPDATE NO
  14840. 'user_3'@'localhost' NULL USAGE NO
  14841. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14842. Host User Password Select_priv Insert_priv Update_priv Delete_priv Create_priv Drop_priv Reload_priv Shutdown_priv Process_priv File_priv Grant_priv References_priv Index_priv Alter_priv Show_db_priv Super_priv Create_tmp_table_priv Lock_tables_priv Execute_priv Repl_slave_priv Repl_client_priv Create_view_priv Show_view_priv Create_routine_priv Alter_routine_priv Create_user_priv Event_priv Trigger_priv ssl_type ssl_cipher x509_issuer x509_subject max_questions max_updates max_connections max_user_connections
  14843. localhost user_1 Y N N N N N N N N N Y N N N N N N N N N N N N N N N N N 0 0 0 0
  14844. localhost user_2 N Y Y N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14845. localhost user_3 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14846. SHOW GRANTS;
  14847. Grants for root@localhost
  14848. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14849. user_1@localhost db_datadict
  14850. SELECT * FROM information_schema.user_privileges
  14851. WHERE grantee LIKE "%user%"
  14852. ORDER BY grantee, table_catalog, privilege_type;
  14853. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14854. 'user_1'@'localhost' NULL SELECT YES
  14855. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14856. Host User Password Select_priv Insert_priv Update_priv Delete_priv Create_priv Drop_priv Reload_priv Shutdown_priv Process_priv File_priv Grant_priv References_priv Index_priv Alter_priv Show_db_priv Super_priv Create_tmp_table_priv Lock_tables_priv Execute_priv Repl_slave_priv Repl_client_priv Create_view_priv Show_view_priv Create_routine_priv Alter_routine_priv Create_user_priv Event_priv Trigger_priv ssl_type ssl_cipher x509_issuer x509_subject max_questions max_updates max_connections max_user_connections
  14857. localhost user_1 Y N N N N N N N N N Y N N N N N N N N N N N N N N N N N 0 0 0 0
  14858. localhost user_2 N Y Y N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14859. localhost user_3 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14860. SHOW GRANTS;
  14861. Grants for user_1@localhost
  14862. GRANT SELECT ON *.* TO 'user_1'@'localhost' WITH GRANT OPTION
  14863. GRANT SELECT, UPDATE ON `db_datadict`.* TO 'user_1'@'localhost' WITH GRANT OPTION
  14864. GRANT SELECT ON `mysql`.`user` TO 'user_1'@'localhost'
  14865. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  14866. SELECT * FROM information_schema.user_privileges
  14867. WHERE grantee LIKE "%user%"
  14868. ORDER BY grantee, table_catalog, privilege_type;
  14869. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14870. 'user_2'@'localhost' NULL INSERT NO
  14871. 'user_2'@'localhost' NULL UPDATE NO
  14872. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14873. ERROR 42000: SELECT command denied to user 'user_2'@'localhost' for table 'user'
  14874. SHOW GRANTS;
  14875. Grants for user_2@localhost
  14876. GRANT INSERT, UPDATE ON *.* TO 'user_2'@'localhost'
  14877. connect(localhost,user_3,,test,MYSQL_PORT,MYSQL_SOCK);
  14878. SELECT * FROM information_schema.user_privileges
  14879. WHERE grantee LIKE "%user%"
  14880. ORDER BY grantee, table_catalog, privilege_type;
  14881. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14882. 'user_3'@'localhost' NULL USAGE NO
  14883. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14884. ERROR 42000: SELECT command denied to user 'user_3'@'localhost' for table 'user'
  14885. SHOW GRANTS;
  14886. Grants for user_3@localhost
  14887. GRANT USAGE ON *.* TO 'user_3'@'localhost'
  14888. revoke privileges from user_1
  14889. -----------------------------
  14890. root@localhost information_schema
  14891. REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'user_1'@'localhost';
  14892. SELECT * FROM information_schema.user_privileges
  14893. WHERE grantee LIKE "%user%"
  14894. ORDER BY grantee, table_catalog, privilege_type;
  14895. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14896. 'user_1'@'localhost' NULL USAGE NO
  14897. 'user_2'@'localhost' NULL INSERT NO
  14898. 'user_2'@'localhost' NULL UPDATE NO
  14899. 'user_3'@'localhost' NULL USAGE NO
  14900. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14901. Host User Password Select_priv Insert_priv Update_priv Delete_priv Create_priv Drop_priv Reload_priv Shutdown_priv Process_priv File_priv Grant_priv References_priv Index_priv Alter_priv Show_db_priv Super_priv Create_tmp_table_priv Lock_tables_priv Execute_priv Repl_slave_priv Repl_client_priv Create_view_priv Show_view_priv Create_routine_priv Alter_routine_priv Create_user_priv Event_priv Trigger_priv ssl_type ssl_cipher x509_issuer x509_subject max_questions max_updates max_connections max_user_connections
  14902. localhost user_1 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14903. localhost user_2 N Y Y N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14904. localhost user_3 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14905. SHOW GRANTS;
  14906. Grants for root@localhost
  14907. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14908. user_1@localhost db_datadict
  14909. SELECT * FROM information_schema.user_privileges
  14910. WHERE grantee LIKE "%user%"
  14911. ORDER BY grantee, table_catalog, privilege_type;
  14912. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14913. 'user_1'@'localhost' NULL USAGE NO
  14914. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14915. ERROR 42000: SELECT command denied to user 'user_1'@'localhost' for table 'user'
  14916. SHOW GRANTS;
  14917. Grants for user_1@localhost
  14918. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14919. user_1@localhost db_datadict
  14920. CREATE TABLE db_datadict.tb_55 ( c1 TEXT );
  14921. ERROR 42000: CREATE command denied to user 'user_1'@'localhost' for table 'tb_55'
  14922. user_1@localhost db_datadict
  14923. SELECT * FROM information_schema.user_privileges
  14924. WHERE grantee LIKE "%user%"
  14925. ORDER BY grantee, table_catalog, privilege_type;
  14926. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14927. 'user_1'@'localhost' NULL USAGE NO
  14928. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14929. ERROR 42000: SELECT command denied to user 'user_1'@'localhost' for table 'user'
  14930. SHOW GRANTS;
  14931. Grants for user_1@localhost
  14932. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14933. CREATE TABLE db_datadict.tb_66 ( c1 TEXT );
  14934. ERROR 42000: CREATE command denied to user 'user_1'@'localhost' for table 'tb_66'
  14935. add ALL on db_datadict.* (and select on mysql.user) to user_1
  14936. -------------------------------------------------------------
  14937. root@localhost information_schema
  14938. GRANT ALL ON db_datadict.* TO 'user_1'@'localhost' WITH GRANT OPTION;
  14939. GRANT SELECT ON mysql.user TO 'user_1'@'localhost';
  14940. SELECT * FROM information_schema.user_privileges
  14941. WHERE grantee LIKE "%user%"
  14942. ORDER BY grantee, table_catalog, privilege_type;
  14943. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14944. 'user_1'@'localhost' NULL USAGE NO
  14945. 'user_2'@'localhost' NULL INSERT NO
  14946. 'user_2'@'localhost' NULL UPDATE NO
  14947. 'user_3'@'localhost' NULL USAGE NO
  14948. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14949. Host User Password Select_priv Insert_priv Update_priv Delete_priv Create_priv Drop_priv Reload_priv Shutdown_priv Process_priv File_priv Grant_priv References_priv Index_priv Alter_priv Show_db_priv Super_priv Create_tmp_table_priv Lock_tables_priv Execute_priv Repl_slave_priv Repl_client_priv Create_view_priv Show_view_priv Create_routine_priv Alter_routine_priv Create_user_priv Event_priv Trigger_priv ssl_type ssl_cipher x509_issuer x509_subject max_questions max_updates max_connections max_user_connections
  14950. localhost user_1 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14951. localhost user_2 N Y Y N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14952. localhost user_3 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14953. SHOW GRANTS;
  14954. Grants for root@localhost
  14955. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14956. user_1@localhost db_datadict
  14957. SELECT * FROM information_schema.user_privileges
  14958. WHERE grantee LIKE "%user%"
  14959. ORDER BY grantee, table_catalog, privilege_type;
  14960. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14961. 'user_1'@'localhost' NULL USAGE NO
  14962. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14963. Host User Password Select_priv Insert_priv Update_priv Delete_priv Create_priv Drop_priv Reload_priv Shutdown_priv Process_priv File_priv Grant_priv References_priv Index_priv Alter_priv Show_db_priv Super_priv Create_tmp_table_priv Lock_tables_priv Execute_priv Repl_slave_priv Repl_client_priv Create_view_priv Show_view_priv Create_routine_priv Alter_routine_priv Create_user_priv Event_priv Trigger_priv ssl_type ssl_cipher x509_issuer x509_subject max_questions max_updates max_connections max_user_connections
  14964. localhost user_1 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14965. localhost user_2 N Y Y N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14966. localhost user_3 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14967. SHOW GRANTS;
  14968. Grants for user_1@localhost
  14969. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14970. GRANT ALL PRIVILEGES ON `db_datadict`.* TO 'user_1'@'localhost' WITH GRANT OPTION
  14971. GRANT SELECT ON `mysql`.`user` TO 'user_1'@'localhost'
  14972. CREATE TABLE db_datadict.tb_56 ( c1 TEXT );
  14973. ERROR 42000: CREATE command denied to user 'user_1'@'localhost' for table 'tb_56'
  14974. USE db_datadict;
  14975. user_1@localhost db_datadict
  14976. SELECT * FROM information_schema.user_privileges
  14977. WHERE grantee LIKE "%user%"
  14978. ORDER BY grantee, table_catalog, privilege_type;
  14979. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14980. 'user_1'@'localhost' NULL USAGE NO
  14981. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14982. Host User Password Select_priv Insert_priv Update_priv Delete_priv Create_priv Drop_priv Reload_priv Shutdown_priv Process_priv File_priv Grant_priv References_priv Index_priv Alter_priv Show_db_priv Super_priv Create_tmp_table_priv Lock_tables_priv Execute_priv Repl_slave_priv Repl_client_priv Create_view_priv Show_view_priv Create_routine_priv Alter_routine_priv Create_user_priv Event_priv Trigger_priv ssl_type ssl_cipher x509_issuer x509_subject max_questions max_updates max_connections max_user_connections
  14983. localhost user_1 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14984. localhost user_2 N Y Y N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14985. localhost user_3 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  14986. SHOW GRANTS;
  14987. Grants for user_1@localhost
  14988. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14989. GRANT ALL PRIVILEGES ON `db_datadict`.* TO 'user_1'@'localhost' WITH GRANT OPTION
  14990. GRANT SELECT ON `mysql`.`user` TO 'user_1'@'localhost'
  14991. CREATE TABLE tb_57 ( c1 TEXT );
  14992. revoke privileges from user_1
  14993. -----------------------------
  14994. root@localhost information_schema
  14995. REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'user_1'@'localhost';
  14996. FLUSH PRIVILEGES;
  14997. SELECT * FROM information_schema.user_privileges
  14998. WHERE grantee LIKE "%user%"
  14999. ORDER BY grantee, table_catalog, privilege_type;
  15000. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  15001. 'user_1'@'localhost' NULL USAGE NO
  15002. 'user_2'@'localhost' NULL INSERT NO
  15003. 'user_2'@'localhost' NULL UPDATE NO
  15004. 'user_3'@'localhost' NULL USAGE NO
  15005. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  15006. Host User Password Select_priv Insert_priv Update_priv Delete_priv Create_priv Drop_priv Reload_priv Shutdown_priv Process_priv File_priv Grant_priv References_priv Index_priv Alter_priv Show_db_priv Super_priv Create_tmp_table_priv Lock_tables_priv Execute_priv Repl_slave_priv Repl_client_priv Create_view_priv Show_view_priv Create_routine_priv Alter_routine_priv Create_user_priv Event_priv Trigger_priv ssl_type ssl_cipher x509_issuer x509_subject max_questions max_updates max_connections max_user_connections
  15007. localhost user_1 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  15008. localhost user_2 N Y Y N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  15009. localhost user_3 N N N N N N N N N N N N N N N N N N N N N N N N N N N N 0 0 0 0
  15010. SHOW GRANTS;
  15011. Grants for root@localhost
  15012. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  15013. user_1@localhost db_datadict
  15014. SELECT * FROM information_schema.user_privileges
  15015. WHERE grantee LIKE "%user%"
  15016. ORDER BY grantee, table_catalog, privilege_type;
  15017. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  15018. 'user_1'@'localhost' NULL USAGE NO
  15019. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  15020. ERROR 42000: SELECT command denied to user 'user_1'@'localhost' for table 'user'
  15021. SHOW GRANTS;
  15022. Grants for user_1@localhost
  15023. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  15024. CREATE TABLE db_datadict.tb_58 ( c1 TEXT );
  15025. USE db_datadict;
  15026. ERROR 42000: Access denied for user 'user_1'@'localhost' to database 'db_datadict'
  15027. CREATE TABLE db_datadict.tb_59 ( c1 TEXT );
  15028. root@localhost information_schema
  15029. DROP USER 'user_1'@'localhost';
  15030. DROP USER 'user_2'@'localhost';
  15031. DROP USER 'user_3'@'localhost';
  15032. DROP DATABASE IF EXISTS db_datadict;
  15033. Testcase 3.2.17: Checks on Performance - not here in this script!
  15034. --------------------------------------------------------------------------------
  15035. Testcase 3.2.18.1:
  15036. --------------------------------------------------------------------------------
  15037. USE information_schema;
  15038. DESC triggers;
  15039. Field Type Null Key Default Extra
  15040. TRIGGER_CATALOG varchar(4096) YES NULL
  15041. TRIGGER_SCHEMA varchar(64) NO
  15042. TRIGGER_NAME varchar(64) NO
  15043. EVENT_MANIPULATION varchar(6) NO
  15044. EVENT_OBJECT_CATALOG varchar(4096) YES NULL
  15045. EVENT_OBJECT_SCHEMA varchar(64) NO
  15046. EVENT_OBJECT_TABLE varchar(64) NO
  15047. ACTION_ORDER bigint(4) NO 0
  15048. ACTION_CONDITION longtext YES NULL
  15049. ACTION_STATEMENT longtext NO NULL
  15050. ACTION_ORIENTATION varchar(9) NO
  15051. ACTION_TIMING varchar(6) NO
  15052. ACTION_REFERENCE_OLD_TABLE varchar(64) YES NULL
  15053. ACTION_REFERENCE_NEW_TABLE varchar(64) YES NULL
  15054. ACTION_REFERENCE_OLD_ROW varchar(3) NO
  15055. ACTION_REFERENCE_NEW_ROW varchar(3) NO
  15056. CREATED datetime YES NULL
  15057. SQL_MODE longtext NO NULL
  15058. DEFINER longtext NO NULL
  15059. CHARACTER_SET_CLIENT varchar(32) NO
  15060. COLLATION_CONNECTION varchar(32) NO
  15061. DATABASE_COLLATION varchar(32) NO
  15062. SHOW CREATE TABLE triggers;
  15063. Table Create Table
  15064. TRIGGERS CREATE TEMPORARY TABLE `TRIGGERS` (
  15065. `TRIGGER_CATALOG` varchar(4096) DEFAULT NULL,
  15066. `TRIGGER_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  15067. `TRIGGER_NAME` varchar(64) NOT NULL DEFAULT '',
  15068. `EVENT_MANIPULATION` varchar(6) NOT NULL DEFAULT '',
  15069. `EVENT_OBJECT_CATALOG` varchar(4096) DEFAULT NULL,
  15070. `EVENT_OBJECT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  15071. `EVENT_OBJECT_TABLE` varchar(64) NOT NULL DEFAULT '',
  15072. `ACTION_ORDER` bigint(4) NOT NULL DEFAULT '0',
  15073. `ACTION_CONDITION` longtext,
  15074. `ACTION_STATEMENT` longtext NOT NULL,
  15075. `ACTION_ORIENTATION` varchar(9) NOT NULL DEFAULT '',
  15076. `ACTION_TIMING` varchar(6) NOT NULL DEFAULT '',
  15077. `ACTION_REFERENCE_OLD_TABLE` varchar(64) DEFAULT NULL,
  15078. `ACTION_REFERENCE_NEW_TABLE` varchar(64) DEFAULT NULL,
  15079. `ACTION_REFERENCE_OLD_ROW` varchar(3) NOT NULL DEFAULT '',
  15080. `ACTION_REFERENCE_NEW_ROW` varchar(3) NOT NULL DEFAULT '',
  15081. `CREATED` datetime DEFAULT NULL,
  15082. `SQL_MODE` longtext NOT NULL,
  15083. `DEFINER` longtext NOT NULL,
  15084. `CHARACTER_SET_CLIENT` varchar(32) NOT NULL DEFAULT '',
  15085. `COLLATION_CONNECTION` varchar(32) NOT NULL DEFAULT '',
  15086. `DATABASE_COLLATION` varchar(32) NOT NULL DEFAULT ''
  15087. ) ENGINE=MyISAM DEFAULT CHARSET=utf8
  15088. SELECT COUNT(*) FROM information_schema.columns
  15089. WHERE table_schema = 'information_schema'
  15090. AND table_name = 'triggers'
  15091. ORDER BY ordinal_position;
  15092. COUNT(*)
  15093. 22
  15094. SELECT * FROM information_schema.columns
  15095. WHERE table_schema = 'information_schema'
  15096. AND table_name = 'triggers'
  15097. ORDER BY ordinal_position;
  15098. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  15099. NULL information_schema triggers TRIGGER_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  15100. NULL information_schema triggers TRIGGER_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  15101. NULL information_schema triggers TRIGGER_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  15102. NULL information_schema triggers EVENT_MANIPULATION 4 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  15103. NULL information_schema triggers EVENT_OBJECT_CATALOG 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  15104. NULL information_schema triggers EVENT_OBJECT_SCHEMA 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  15105. NULL information_schema triggers EVENT_OBJECT_TABLE 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  15106. NULL information_schema triggers ACTION_ORDER 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  15107. NULL information_schema triggers ACTION_CONDITION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  15108. NULL information_schema triggers ACTION_STATEMENT 10 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  15109. NULL information_schema triggers ACTION_ORIENTATION 11 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  15110. NULL information_schema triggers ACTION_TIMING 12 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  15111. NULL information_schema triggers ACTION_REFERENCE_OLD_TABLE 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  15112. NULL information_schema triggers ACTION_REFERENCE_NEW_TABLE 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  15113. NULL information_schema triggers ACTION_REFERENCE_OLD_ROW 15 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  15114. NULL information_schema triggers ACTION_REFERENCE_NEW_ROW 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  15115. NULL information_schema triggers CREATED 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  15116. NULL information_schema triggers SQL_MODE 18 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  15117. NULL information_schema triggers DEFINER 19 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  15118. NULL information_schema triggers CHARACTER_SET_CLIENT 20 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  15119. NULL information_schema triggers COLLATION_CONNECTION 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  15120. NULL information_schema triggers DATABASE_COLLATION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  15121. Testcase 3.2.18.2 + 3.2.18.3:
  15122. --------------------------------------------------------------------------------
  15123. Testcase 3.2.19.1:
  15124. --------------------------------------------------------------------------------
  15125. checking a table that will be implemented later
  15126. -----------------------------------------------
  15127. DESC parameters;
  15128. ERROR 42S02: Unknown table 'parameters' in information_schema
  15129. Testcase 3.2.20.1:
  15130. --------------------------------------------------------------------------------
  15131. DESC referential_constraints;
  15132. Field Type Null Key Default Extra
  15133. CONSTRAINT_CATALOG varchar(512) YES NULL
  15134. CONSTRAINT_SCHEMA varchar(64) NO
  15135. CONSTRAINT_NAME varchar(64) NO
  15136. UNIQUE_CONSTRAINT_CATALOG varchar(512) YES NULL
  15137. UNIQUE_CONSTRAINT_SCHEMA varchar(64) NO
  15138. UNIQUE_CONSTRAINT_NAME varchar(64) NO
  15139. MATCH_OPTION varchar(64) NO
  15140. UPDATE_RULE varchar(64) NO
  15141. DELETE_RULE varchar(64) NO
  15142. TABLE_NAME varchar(64) NO
  15143. REFERENCED_TABLE_NAME varchar(64) NO
  15144. USE information_schema;
  15145. DESC referential_constraints;
  15146. Field Type Null Key Default Extra
  15147. CONSTRAINT_CATALOG varchar(4096) YES NULL
  15148. CONSTRAINT_SCHEMA varchar(64) NO
  15149. CONSTRAINT_NAME varchar(64) NO
  15150. UNIQUE_CONSTRAINT_CATALOG varchar(4096) YES NULL
  15151. UNIQUE_CONSTRAINT_SCHEMA varchar(64) NO
  15152. UNIQUE_CONSTRAINT_NAME varchar(64) NO
  15153. MATCH_OPTION varchar(64) NO
  15154. UPDATE_RULE varchar(64) NO
  15155. DELETE_RULE varchar(64) NO
  15156. TABLE_NAME varchar(64) NO
  15157. REFERENCED_TABLE_NAME varchar(64) NO
  15158. SHOW CREATE TABLE referential_constraints;
  15159. Table Create Table
  15160. REFERENTIAL_CONSTRAINTS CREATE TEMPORARY TABLE `REFERENTIAL_CONSTRAINTS` (
  15161. `CONSTRAINT_CATALOG` varchar(4096) DEFAULT NULL,
  15162. `CONSTRAINT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  15163. `CONSTRAINT_NAME` varchar(64) NOT NULL DEFAULT '',
  15164. `UNIQUE_CONSTRAINT_CATALOG` varchar(4096) DEFAULT NULL,
  15165. `UNIQUE_CONSTRAINT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  15166. `UNIQUE_CONSTRAINT_NAME` varchar(64) NOT NULL DEFAULT '',
  15167. `MATCH_OPTION` varchar(64) NOT NULL DEFAULT '',
  15168. `UPDATE_RULE` varchar(64) NOT NULL DEFAULT '',
  15169. `DELETE_RULE` varchar(64) NOT NULL DEFAULT '',
  15170. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  15171. `REFERENCED_TABLE_NAME` varchar(64) NOT NULL DEFAULT ''
  15172. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  15173. SELECT COUNT(*) FROM information_schema.columns
  15174. WHERE table_schema = 'information_schema'
  15175. AND table_name = 'referential_constraints'
  15176. ORDER BY ordinal_position;
  15177. COUNT(*)
  15178. 11
  15179. SELECT * FROM information_schema.columns
  15180. WHERE table_schema = 'information_schema'
  15181. AND table_name = 'referential_constraints'
  15182. ORDER BY ordinal_position;
  15183. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
  15184. NULL information_schema referential_constraints CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  15185. NULL information_schema referential_constraints CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  15186. NULL information_schema referential_constraints CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  15187. NULL information_schema referential_constraints UNIQUE_CONSTRAINT_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  15188. NULL information_schema referential_constraints UNIQUE_CONSTRAINT_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  15189. NULL information_schema referential_constraints UNIQUE_CONSTRAINT_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  15190. NULL information_schema referential_constraints MATCH_OPTION 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  15191. NULL information_schema referential_constraints UPDATE_RULE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  15192. NULL information_schema referential_constraints DELETE_RULE 9 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  15193. NULL information_schema referential_constraints TABLE_NAME 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  15194. NULL information_schema referential_constraints REFERENCED_TABLE_NAME 11 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  15195. *** End of Data Dictionary Tests ***
  15196. --------------------------------------------------------------------------------
  15197. DROP TABLE IF EXISTS test.tb1;
  15198. DROP TABLE IF EXISTS test.tb2;
  15199. DROP TABLE IF EXISTS test.tb3;
  15200. DROP TABLE IF EXISTS test.tb4;
  15201. DROP TABLE IF EXISTS test.t1;
  15202. DROP TABLE IF EXISTS test.t2;
  15203. DROP TABLE IF EXISTS test.t3;
  15204. DROP TABLE IF EXISTS test.t4;
  15205. DROP TABLE IF EXISTS test.t7;
  15206. DROP TABLE IF EXISTS test.t8;
  15207. DROP TABLE IF EXISTS test.t9;
  15208. DROP TABLE IF EXISTS test.t10;
  15209. DROP TABLE IF EXISTS test.t11;
  15210. DROP DATABASE IF EXISTS test1;
  15211. DROP DATABASE IF EXISTS test4;
  15212. DROP DATABASE IF EXISTS db_datadict;
  15213. DROP DATABASE IF EXISTS db_datadict_1;
  15214. DROP DATABASE IF EXISTS db_datadict_2;