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.

14787 lines
885 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. USE test;
  40. USE test;
  41. DROP TABLE IF EXISTS t1, t2, t4, t10, t11;
  42. CREATE TABLE t1 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = ndb;
  43. CREATE TABLE t2 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = ndb;
  44. CREATE TABLE t4 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = ndb;
  45. CREATE TABLE t10 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = ndb;
  46. CREATE TABLE t11 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = ndb;
  47. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t1;
  48. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t2;
  49. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t4;
  50. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t10;
  51. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t11;
  52. drop TABLE if exists t3;
  53. CREATE TABLE t3 (f1 char(20), f2 char(20), f3 integer) ENGINE = ndb;
  54. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t3.txt' INTO TABLE t3;
  55. drop database if exists test4;
  56. CREATE database test4;
  57. use test4;
  58. CREATE TABLE t6 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = ndb;
  59. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t6;
  60. use test;
  61. drop TABLE if exists t7, t8;
  62. CREATE TABLE t7 (f1 char(20), f2 char(25), f3 date, f4 int) ENGINE = ndb;
  63. CREATE TABLE t8 (f1 char(20), f2 char(25), f3 date, f4 int) ENGINE = ndb;
  64. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t7.txt' INTO TABLE t7;
  65. Warnings:
  66. Warning 1265 Data truncated for column 'f3' at row 1
  67. Warning 1265 Data truncated for column 'f3' at row 2
  68. Warning 1265 Data truncated for column 'f3' at row 3
  69. Warning 1265 Data truncated for column 'f3' at row 4
  70. Warning 1265 Data truncated for column 'f3' at row 5
  71. Warning 1265 Data truncated for column 'f3' at row 6
  72. Warning 1265 Data truncated for column 'f3' at row 7
  73. Warning 1265 Data truncated for column 'f3' at row 8
  74. Warning 1265 Data truncated for column 'f3' at row 9
  75. Warning 1265 Data truncated for column 'f3' at row 10
  76. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t7.txt' INTO TABLE t8;
  77. Warnings:
  78. Warning 1265 Data truncated for column 'f3' at row 1
  79. Warning 1265 Data truncated for column 'f3' at row 2
  80. Warning 1265 Data truncated for column 'f3' at row 3
  81. Warning 1265 Data truncated for column 'f3' at row 4
  82. Warning 1265 Data truncated for column 'f3' at row 5
  83. Warning 1265 Data truncated for column 'f3' at row 6
  84. Warning 1265 Data truncated for column 'f3' at row 7
  85. Warning 1265 Data truncated for column 'f3' at row 8
  86. Warning 1265 Data truncated for column 'f3' at row 9
  87. Warning 1265 Data truncated for column 'f3' at row 10
  88. drop TABLE if exists t9;
  89. CREATE TABLE t9 (f1 int, f2 char(25), f3 int) ENGINE = ndb;
  90. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t9.txt' INTO TABLE t9;
  91. use information_schema;
  92. root@localhost information_schema
  93. Testcase 3.2.1.1:
  94. --------------------------------------------------------------------------------
  95. DROP DATABASE IF EXISTS db_datadict;
  96. CREATE DATABASE db_datadict;
  97. USE db_datadict;
  98. CREATE VIEW v1 AS SELECT * FROM information_schema.tables;
  99. CREATE OR REPLACE VIEW db_datadict.vu1 as
  100. SELECT grantee AS u
  101. FROM information_schema.user_privileges;
  102. CREATE OR REPLACE VIEW db_datadict.vu as
  103. SELECT DISTINCT u,
  104. SUBSTRING( u, LENGTH(SUBSTRING_INDEX(u,_utf8'@',1))+3 )
  105. AS server,
  106. SUBSTRING( u, LENGTH(SUBSTRING_INDEX(u,_utf8'@',1))+3,
  107. LENGTH( SUBSTRING( u,
  108. LENGTH( SUBSTRING_INDEX(u, _utf8'@',1)) +3 )) - 1 )
  109. AS Server_Clean
  110. FROM db_datadict.vu1;
  111. SELECT * FROM db_datadict.vu order by u;
  112. u server Server_Clean
  113. 'root'@'127.0.0.1' 127.0.0.1' 127.0.0.1
  114. 'root'@'<SERVER_NAME>' <SERVER_NAME>' <SERVER_NAME>
  115. 'root'@'localhost' localhost' localhost
  116. CREATE PROCEDURE db_datadict.sp_1()
  117. BEGIN
  118. SELECT * FROM db_datadict.v1;
  119. END//
  120. USE information_schema;
  121. SHOW tables;
  122. Tables_in_information_schema
  123. CHARACTER_SETS
  124. COLLATIONS
  125. COLLATION_CHARACTER_SET_APPLICABILITY
  126. COLUMNS
  127. COLUMN_PRIVILEGES
  128. ENGINES
  129. EVENTS
  130. FILES
  131. GLOBAL_STATUS
  132. GLOBAL_VARIABLES
  133. KEY_COLUMN_USAGE
  134. PARTITIONS
  135. PLUGINS
  136. PROCESSLIST
  137. REFERENTIAL_CONSTRAINTS
  138. ROUTINES
  139. SCHEMATA
  140. SCHEMA_PRIVILEGES
  141. SESSION_STATUS
  142. SESSION_VARIABLES
  143. STATISTICS
  144. TABLES
  145. TABLE_CONSTRAINTS
  146. TABLE_PRIVILEGES
  147. TRIGGERS
  148. USER_PRIVILEGES
  149. VIEWS
  150. select * from schemata ORDER BY 2 DESC, 1 ASC;
  151. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  152. NULL test4 latin1 latin1_swedish_ci NULL
  153. NULL test1 latin1 latin1_swedish_ci NULL
  154. NULL test latin1 latin1_swedish_ci NULL
  155. NULL mysql latin1 latin1_swedish_ci NULL
  156. NULL information_schema utf8 utf8_general_ci NULL
  157. NULL db_datadict latin1 latin1_swedish_ci NULL
  158. SELECT * FROM tables
  159. WHERE table_schema = 'information_schema';
  160. TABLE_CATALOG NULL
  161. TABLE_SCHEMA information_schema
  162. TABLE_NAME CHARACTER_SETS
  163. TABLE_TYPE SYSTEM VIEW
  164. ENGINE MEMORY
  165. VERSION 10
  166. ROW_FORMAT Fixed
  167. TABLE_ROWS NULL
  168. AVG_ROW_LENGTH #ARL#
  169. DATA_LENGTH #DL#
  170. MAX_DATA_LENGTH #MDL#
  171. INDEX_LENGTH #IL#
  172. DATA_FREE #DF#
  173. AUTO_INCREMENT NULL
  174. CREATE_TIME YYYY-MM-DD hh:mm:ss
  175. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  176. CHECK_TIME YYYY-MM-DD hh:mm:ss
  177. TABLE_COLLATION utf8_general_ci
  178. CHECKSUM NULL
  179. CREATE_OPTIONS #CO#
  180. TABLE_COMMENT
  181. TABLE_CATALOG NULL
  182. TABLE_SCHEMA information_schema
  183. TABLE_NAME COLLATIONS
  184. TABLE_TYPE SYSTEM VIEW
  185. ENGINE MEMORY
  186. VERSION 10
  187. ROW_FORMAT Fixed
  188. TABLE_ROWS NULL
  189. AVG_ROW_LENGTH #ARL#
  190. DATA_LENGTH #DL#
  191. MAX_DATA_LENGTH #MDL#
  192. INDEX_LENGTH #IL#
  193. DATA_FREE #DF#
  194. AUTO_INCREMENT NULL
  195. CREATE_TIME YYYY-MM-DD hh:mm:ss
  196. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  197. CHECK_TIME YYYY-MM-DD hh:mm:ss
  198. TABLE_COLLATION utf8_general_ci
  199. CHECKSUM NULL
  200. CREATE_OPTIONS #CO#
  201. TABLE_COMMENT
  202. TABLE_CATALOG NULL
  203. TABLE_SCHEMA information_schema
  204. TABLE_NAME COLLATION_CHARACTER_SET_APPLICABILITY
  205. TABLE_TYPE SYSTEM VIEW
  206. ENGINE MEMORY
  207. VERSION 10
  208. ROW_FORMAT Fixed
  209. TABLE_ROWS NULL
  210. AVG_ROW_LENGTH #ARL#
  211. DATA_LENGTH #DL#
  212. MAX_DATA_LENGTH #MDL#
  213. INDEX_LENGTH #IL#
  214. DATA_FREE #DF#
  215. AUTO_INCREMENT NULL
  216. CREATE_TIME YYYY-MM-DD hh:mm:ss
  217. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  218. CHECK_TIME YYYY-MM-DD hh:mm:ss
  219. TABLE_COLLATION utf8_general_ci
  220. CHECKSUM NULL
  221. CREATE_OPTIONS #CO#
  222. TABLE_COMMENT
  223. TABLE_CATALOG NULL
  224. TABLE_SCHEMA information_schema
  225. TABLE_NAME COLUMNS
  226. TABLE_TYPE SYSTEM VIEW
  227. ENGINE MyISAM
  228. VERSION 10
  229. ROW_FORMAT Dynamic
  230. TABLE_ROWS NULL
  231. AVG_ROW_LENGTH #ARL#
  232. DATA_LENGTH #DL#
  233. MAX_DATA_LENGTH #MDL#
  234. INDEX_LENGTH #IL#
  235. DATA_FREE #DF#
  236. AUTO_INCREMENT NULL
  237. CREATE_TIME YYYY-MM-DD hh:mm:ss
  238. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  239. CHECK_TIME YYYY-MM-DD hh:mm:ss
  240. TABLE_COLLATION utf8_general_ci
  241. CHECKSUM NULL
  242. CREATE_OPTIONS #CO#
  243. TABLE_COMMENT
  244. TABLE_CATALOG NULL
  245. TABLE_SCHEMA information_schema
  246. TABLE_NAME COLUMN_PRIVILEGES
  247. TABLE_TYPE SYSTEM VIEW
  248. ENGINE MEMORY
  249. VERSION 10
  250. ROW_FORMAT Fixed
  251. TABLE_ROWS NULL
  252. AVG_ROW_LENGTH #ARL#
  253. DATA_LENGTH #DL#
  254. MAX_DATA_LENGTH #MDL#
  255. INDEX_LENGTH #IL#
  256. DATA_FREE #DF#
  257. AUTO_INCREMENT NULL
  258. CREATE_TIME YYYY-MM-DD hh:mm:ss
  259. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  260. CHECK_TIME YYYY-MM-DD hh:mm:ss
  261. TABLE_COLLATION utf8_general_ci
  262. CHECKSUM NULL
  263. CREATE_OPTIONS #CO#
  264. TABLE_COMMENT
  265. TABLE_CATALOG NULL
  266. TABLE_SCHEMA information_schema
  267. TABLE_NAME ENGINES
  268. TABLE_TYPE SYSTEM VIEW
  269. ENGINE MEMORY
  270. VERSION 10
  271. ROW_FORMAT Fixed
  272. TABLE_ROWS NULL
  273. AVG_ROW_LENGTH #ARL#
  274. DATA_LENGTH #DL#
  275. MAX_DATA_LENGTH #MDL#
  276. INDEX_LENGTH #IL#
  277. DATA_FREE #DF#
  278. AUTO_INCREMENT NULL
  279. CREATE_TIME YYYY-MM-DD hh:mm:ss
  280. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  281. CHECK_TIME YYYY-MM-DD hh:mm:ss
  282. TABLE_COLLATION utf8_general_ci
  283. CHECKSUM NULL
  284. CREATE_OPTIONS #CO#
  285. TABLE_COMMENT
  286. TABLE_CATALOG NULL
  287. TABLE_SCHEMA information_schema
  288. TABLE_NAME EVENTS
  289. TABLE_TYPE SYSTEM VIEW
  290. ENGINE MyISAM
  291. VERSION 10
  292. ROW_FORMAT Dynamic
  293. TABLE_ROWS NULL
  294. AVG_ROW_LENGTH #ARL#
  295. DATA_LENGTH #DL#
  296. MAX_DATA_LENGTH #MDL#
  297. INDEX_LENGTH #IL#
  298. DATA_FREE #DF#
  299. AUTO_INCREMENT NULL
  300. CREATE_TIME YYYY-MM-DD hh:mm:ss
  301. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  302. CHECK_TIME YYYY-MM-DD hh:mm:ss
  303. TABLE_COLLATION utf8_general_ci
  304. CHECKSUM NULL
  305. CREATE_OPTIONS #CO#
  306. TABLE_COMMENT
  307. TABLE_CATALOG NULL
  308. TABLE_SCHEMA information_schema
  309. TABLE_NAME FILES
  310. TABLE_TYPE SYSTEM VIEW
  311. ENGINE MEMORY
  312. VERSION 10
  313. ROW_FORMAT Fixed
  314. TABLE_ROWS NULL
  315. AVG_ROW_LENGTH #ARL#
  316. DATA_LENGTH #DL#
  317. MAX_DATA_LENGTH #MDL#
  318. INDEX_LENGTH #IL#
  319. DATA_FREE #DF#
  320. AUTO_INCREMENT NULL
  321. CREATE_TIME YYYY-MM-DD hh:mm:ss
  322. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  323. CHECK_TIME YYYY-MM-DD hh:mm:ss
  324. TABLE_COLLATION utf8_general_ci
  325. CHECKSUM NULL
  326. CREATE_OPTIONS #CO#
  327. TABLE_COMMENT
  328. TABLE_CATALOG NULL
  329. TABLE_SCHEMA information_schema
  330. TABLE_NAME GLOBAL_STATUS
  331. TABLE_TYPE SYSTEM VIEW
  332. ENGINE MEMORY
  333. VERSION 10
  334. ROW_FORMAT Fixed
  335. TABLE_ROWS NULL
  336. AVG_ROW_LENGTH #ARL#
  337. DATA_LENGTH #DL#
  338. MAX_DATA_LENGTH #MDL#
  339. INDEX_LENGTH #IL#
  340. DATA_FREE #DF#
  341. AUTO_INCREMENT NULL
  342. CREATE_TIME YYYY-MM-DD hh:mm:ss
  343. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  344. CHECK_TIME YYYY-MM-DD hh:mm:ss
  345. TABLE_COLLATION utf8_general_ci
  346. CHECKSUM NULL
  347. CREATE_OPTIONS #CO#
  348. TABLE_COMMENT
  349. TABLE_CATALOG NULL
  350. TABLE_SCHEMA information_schema
  351. TABLE_NAME GLOBAL_VARIABLES
  352. TABLE_TYPE SYSTEM VIEW
  353. ENGINE MEMORY
  354. VERSION 10
  355. ROW_FORMAT Fixed
  356. TABLE_ROWS NULL
  357. AVG_ROW_LENGTH #ARL#
  358. DATA_LENGTH #DL#
  359. MAX_DATA_LENGTH #MDL#
  360. INDEX_LENGTH #IL#
  361. DATA_FREE #DF#
  362. AUTO_INCREMENT NULL
  363. CREATE_TIME YYYY-MM-DD hh:mm:ss
  364. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  365. CHECK_TIME YYYY-MM-DD hh:mm:ss
  366. TABLE_COLLATION utf8_general_ci
  367. CHECKSUM NULL
  368. CREATE_OPTIONS #CO#
  369. TABLE_COMMENT
  370. TABLE_CATALOG NULL
  371. TABLE_SCHEMA information_schema
  372. TABLE_NAME KEY_COLUMN_USAGE
  373. TABLE_TYPE SYSTEM VIEW
  374. ENGINE MEMORY
  375. VERSION 10
  376. ROW_FORMAT Fixed
  377. TABLE_ROWS NULL
  378. AVG_ROW_LENGTH #ARL#
  379. DATA_LENGTH #DL#
  380. MAX_DATA_LENGTH #MDL#
  381. INDEX_LENGTH #IL#
  382. DATA_FREE #DF#
  383. AUTO_INCREMENT NULL
  384. CREATE_TIME YYYY-MM-DD hh:mm:ss
  385. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  386. CHECK_TIME YYYY-MM-DD hh:mm:ss
  387. TABLE_COLLATION utf8_general_ci
  388. CHECKSUM NULL
  389. CREATE_OPTIONS #CO#
  390. TABLE_COMMENT
  391. TABLE_CATALOG NULL
  392. TABLE_SCHEMA information_schema
  393. TABLE_NAME PARTITIONS
  394. TABLE_TYPE SYSTEM VIEW
  395. ENGINE MyISAM
  396. VERSION 10
  397. ROW_FORMAT Dynamic
  398. TABLE_ROWS NULL
  399. AVG_ROW_LENGTH #ARL#
  400. DATA_LENGTH #DL#
  401. MAX_DATA_LENGTH #MDL#
  402. INDEX_LENGTH #IL#
  403. DATA_FREE #DF#
  404. AUTO_INCREMENT NULL
  405. CREATE_TIME YYYY-MM-DD hh:mm:ss
  406. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  407. CHECK_TIME YYYY-MM-DD hh:mm:ss
  408. TABLE_COLLATION utf8_general_ci
  409. CHECKSUM NULL
  410. CREATE_OPTIONS #CO#
  411. TABLE_COMMENT
  412. TABLE_CATALOG NULL
  413. TABLE_SCHEMA information_schema
  414. TABLE_NAME PLUGINS
  415. TABLE_TYPE SYSTEM VIEW
  416. ENGINE MyISAM
  417. VERSION 10
  418. ROW_FORMAT Dynamic
  419. TABLE_ROWS NULL
  420. AVG_ROW_LENGTH #ARL#
  421. DATA_LENGTH #DL#
  422. MAX_DATA_LENGTH #MDL#
  423. INDEX_LENGTH #IL#
  424. DATA_FREE #DF#
  425. AUTO_INCREMENT NULL
  426. CREATE_TIME YYYY-MM-DD hh:mm:ss
  427. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  428. CHECK_TIME YYYY-MM-DD hh:mm:ss
  429. TABLE_COLLATION utf8_general_ci
  430. CHECKSUM NULL
  431. CREATE_OPTIONS #CO#
  432. TABLE_COMMENT
  433. TABLE_CATALOG NULL
  434. TABLE_SCHEMA information_schema
  435. TABLE_NAME PROCESSLIST
  436. TABLE_TYPE SYSTEM VIEW
  437. ENGINE MyISAM
  438. VERSION 10
  439. ROW_FORMAT Dynamic
  440. TABLE_ROWS NULL
  441. AVG_ROW_LENGTH #ARL#
  442. DATA_LENGTH #DL#
  443. MAX_DATA_LENGTH #MDL#
  444. INDEX_LENGTH #IL#
  445. DATA_FREE #DF#
  446. AUTO_INCREMENT NULL
  447. CREATE_TIME YYYY-MM-DD hh:mm:ss
  448. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  449. CHECK_TIME YYYY-MM-DD hh:mm:ss
  450. TABLE_COLLATION utf8_general_ci
  451. CHECKSUM NULL
  452. CREATE_OPTIONS #CO#
  453. TABLE_COMMENT
  454. TABLE_CATALOG NULL
  455. TABLE_SCHEMA information_schema
  456. TABLE_NAME REFERENTIAL_CONSTRAINTS
  457. TABLE_TYPE SYSTEM VIEW
  458. ENGINE MEMORY
  459. VERSION 10
  460. ROW_FORMAT Fixed
  461. TABLE_ROWS NULL
  462. AVG_ROW_LENGTH #ARL#
  463. DATA_LENGTH #DL#
  464. MAX_DATA_LENGTH #MDL#
  465. INDEX_LENGTH #IL#
  466. DATA_FREE #DF#
  467. AUTO_INCREMENT NULL
  468. CREATE_TIME YYYY-MM-DD hh:mm:ss
  469. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  470. CHECK_TIME YYYY-MM-DD hh:mm:ss
  471. TABLE_COLLATION utf8_general_ci
  472. CHECKSUM NULL
  473. CREATE_OPTIONS #CO#
  474. TABLE_COMMENT
  475. TABLE_CATALOG NULL
  476. TABLE_SCHEMA information_schema
  477. TABLE_NAME ROUTINES
  478. TABLE_TYPE SYSTEM VIEW
  479. ENGINE MyISAM
  480. VERSION 10
  481. ROW_FORMAT Dynamic
  482. TABLE_ROWS NULL
  483. AVG_ROW_LENGTH #ARL#
  484. DATA_LENGTH #DL#
  485. MAX_DATA_LENGTH #MDL#
  486. INDEX_LENGTH #IL#
  487. DATA_FREE #DF#
  488. AUTO_INCREMENT NULL
  489. CREATE_TIME YYYY-MM-DD hh:mm:ss
  490. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  491. CHECK_TIME YYYY-MM-DD hh:mm:ss
  492. TABLE_COLLATION utf8_general_ci
  493. CHECKSUM NULL
  494. CREATE_OPTIONS #CO#
  495. TABLE_COMMENT
  496. TABLE_CATALOG NULL
  497. TABLE_SCHEMA information_schema
  498. TABLE_NAME SCHEMATA
  499. TABLE_TYPE SYSTEM VIEW
  500. ENGINE MEMORY
  501. VERSION 10
  502. ROW_FORMAT Fixed
  503. TABLE_ROWS NULL
  504. AVG_ROW_LENGTH #ARL#
  505. DATA_LENGTH #DL#
  506. MAX_DATA_LENGTH #MDL#
  507. INDEX_LENGTH #IL#
  508. DATA_FREE #DF#
  509. AUTO_INCREMENT NULL
  510. CREATE_TIME YYYY-MM-DD hh:mm:ss
  511. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  512. CHECK_TIME YYYY-MM-DD hh:mm:ss
  513. TABLE_COLLATION utf8_general_ci
  514. CHECKSUM NULL
  515. CREATE_OPTIONS #CO#
  516. TABLE_COMMENT
  517. TABLE_CATALOG NULL
  518. TABLE_SCHEMA information_schema
  519. TABLE_NAME SCHEMA_PRIVILEGES
  520. TABLE_TYPE SYSTEM VIEW
  521. ENGINE MEMORY
  522. VERSION 10
  523. ROW_FORMAT Fixed
  524. TABLE_ROWS NULL
  525. AVG_ROW_LENGTH #ARL#
  526. DATA_LENGTH #DL#
  527. MAX_DATA_LENGTH #MDL#
  528. INDEX_LENGTH #IL#
  529. DATA_FREE #DF#
  530. AUTO_INCREMENT NULL
  531. CREATE_TIME YYYY-MM-DD hh:mm:ss
  532. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  533. CHECK_TIME YYYY-MM-DD hh:mm:ss
  534. TABLE_COLLATION utf8_general_ci
  535. CHECKSUM NULL
  536. CREATE_OPTIONS #CO#
  537. TABLE_COMMENT
  538. TABLE_CATALOG NULL
  539. TABLE_SCHEMA information_schema
  540. TABLE_NAME SESSION_STATUS
  541. TABLE_TYPE SYSTEM VIEW
  542. ENGINE MEMORY
  543. VERSION 10
  544. ROW_FORMAT Fixed
  545. TABLE_ROWS NULL
  546. AVG_ROW_LENGTH #ARL#
  547. DATA_LENGTH #DL#
  548. MAX_DATA_LENGTH #MDL#
  549. INDEX_LENGTH #IL#
  550. DATA_FREE #DF#
  551. AUTO_INCREMENT NULL
  552. CREATE_TIME YYYY-MM-DD hh:mm:ss
  553. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  554. CHECK_TIME YYYY-MM-DD hh:mm:ss
  555. TABLE_COLLATION utf8_general_ci
  556. CHECKSUM NULL
  557. CREATE_OPTIONS #CO#
  558. TABLE_COMMENT
  559. TABLE_CATALOG NULL
  560. TABLE_SCHEMA information_schema
  561. TABLE_NAME SESSION_VARIABLES
  562. TABLE_TYPE SYSTEM VIEW
  563. ENGINE MEMORY
  564. VERSION 10
  565. ROW_FORMAT Fixed
  566. TABLE_ROWS NULL
  567. AVG_ROW_LENGTH #ARL#
  568. DATA_LENGTH #DL#
  569. MAX_DATA_LENGTH #MDL#
  570. INDEX_LENGTH #IL#
  571. DATA_FREE #DF#
  572. AUTO_INCREMENT NULL
  573. CREATE_TIME YYYY-MM-DD hh:mm:ss
  574. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  575. CHECK_TIME YYYY-MM-DD hh:mm:ss
  576. TABLE_COLLATION utf8_general_ci
  577. CHECKSUM NULL
  578. CREATE_OPTIONS #CO#
  579. TABLE_COMMENT
  580. TABLE_CATALOG NULL
  581. TABLE_SCHEMA information_schema
  582. TABLE_NAME STATISTICS
  583. TABLE_TYPE SYSTEM VIEW
  584. ENGINE MEMORY
  585. VERSION 10
  586. ROW_FORMAT Fixed
  587. TABLE_ROWS NULL
  588. AVG_ROW_LENGTH #ARL#
  589. DATA_LENGTH #DL#
  590. MAX_DATA_LENGTH #MDL#
  591. INDEX_LENGTH #IL#
  592. DATA_FREE #DF#
  593. AUTO_INCREMENT NULL
  594. CREATE_TIME YYYY-MM-DD hh:mm:ss
  595. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  596. CHECK_TIME YYYY-MM-DD hh:mm:ss
  597. TABLE_COLLATION utf8_general_ci
  598. CHECKSUM NULL
  599. CREATE_OPTIONS #CO#
  600. TABLE_COMMENT
  601. TABLE_CATALOG NULL
  602. TABLE_SCHEMA information_schema
  603. TABLE_NAME TABLES
  604. TABLE_TYPE SYSTEM VIEW
  605. ENGINE MEMORY
  606. VERSION 10
  607. ROW_FORMAT Fixed
  608. TABLE_ROWS NULL
  609. AVG_ROW_LENGTH #ARL#
  610. DATA_LENGTH #DL#
  611. MAX_DATA_LENGTH #MDL#
  612. INDEX_LENGTH #IL#
  613. DATA_FREE #DF#
  614. AUTO_INCREMENT NULL
  615. CREATE_TIME YYYY-MM-DD hh:mm:ss
  616. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  617. CHECK_TIME YYYY-MM-DD hh:mm:ss
  618. TABLE_COLLATION utf8_general_ci
  619. CHECKSUM NULL
  620. CREATE_OPTIONS #CO#
  621. TABLE_COMMENT
  622. TABLE_CATALOG NULL
  623. TABLE_SCHEMA information_schema
  624. TABLE_NAME TABLE_CONSTRAINTS
  625. TABLE_TYPE SYSTEM VIEW
  626. ENGINE MEMORY
  627. VERSION 10
  628. ROW_FORMAT Fixed
  629. TABLE_ROWS NULL
  630. AVG_ROW_LENGTH #ARL#
  631. DATA_LENGTH #DL#
  632. MAX_DATA_LENGTH #MDL#
  633. INDEX_LENGTH #IL#
  634. DATA_FREE #DF#
  635. AUTO_INCREMENT NULL
  636. CREATE_TIME YYYY-MM-DD hh:mm:ss
  637. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  638. CHECK_TIME YYYY-MM-DD hh:mm:ss
  639. TABLE_COLLATION utf8_general_ci
  640. CHECKSUM NULL
  641. CREATE_OPTIONS #CO#
  642. TABLE_COMMENT
  643. TABLE_CATALOG NULL
  644. TABLE_SCHEMA information_schema
  645. TABLE_NAME TABLE_PRIVILEGES
  646. TABLE_TYPE SYSTEM VIEW
  647. ENGINE MEMORY
  648. VERSION 10
  649. ROW_FORMAT Fixed
  650. TABLE_ROWS NULL
  651. AVG_ROW_LENGTH #ARL#
  652. DATA_LENGTH #DL#
  653. MAX_DATA_LENGTH #MDL#
  654. INDEX_LENGTH #IL#
  655. DATA_FREE #DF#
  656. AUTO_INCREMENT NULL
  657. CREATE_TIME YYYY-MM-DD hh:mm:ss
  658. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  659. CHECK_TIME YYYY-MM-DD hh:mm:ss
  660. TABLE_COLLATION utf8_general_ci
  661. CHECKSUM NULL
  662. CREATE_OPTIONS #CO#
  663. TABLE_COMMENT
  664. TABLE_CATALOG NULL
  665. TABLE_SCHEMA information_schema
  666. TABLE_NAME TRIGGERS
  667. TABLE_TYPE SYSTEM VIEW
  668. ENGINE MyISAM
  669. VERSION 10
  670. ROW_FORMAT Dynamic
  671. TABLE_ROWS NULL
  672. AVG_ROW_LENGTH #ARL#
  673. DATA_LENGTH #DL#
  674. MAX_DATA_LENGTH #MDL#
  675. INDEX_LENGTH #IL#
  676. DATA_FREE #DF#
  677. AUTO_INCREMENT NULL
  678. CREATE_TIME YYYY-MM-DD hh:mm:ss
  679. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  680. CHECK_TIME YYYY-MM-DD hh:mm:ss
  681. TABLE_COLLATION utf8_general_ci
  682. CHECKSUM NULL
  683. CREATE_OPTIONS #CO#
  684. TABLE_COMMENT
  685. TABLE_CATALOG NULL
  686. TABLE_SCHEMA information_schema
  687. TABLE_NAME USER_PRIVILEGES
  688. TABLE_TYPE SYSTEM VIEW
  689. ENGINE MEMORY
  690. VERSION 10
  691. ROW_FORMAT Fixed
  692. TABLE_ROWS NULL
  693. AVG_ROW_LENGTH #ARL#
  694. DATA_LENGTH #DL#
  695. MAX_DATA_LENGTH #MDL#
  696. INDEX_LENGTH #IL#
  697. DATA_FREE #DF#
  698. AUTO_INCREMENT NULL
  699. CREATE_TIME YYYY-MM-DD hh:mm:ss
  700. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  701. CHECK_TIME YYYY-MM-DD hh:mm:ss
  702. TABLE_COLLATION utf8_general_ci
  703. CHECKSUM NULL
  704. CREATE_OPTIONS #CO#
  705. TABLE_COMMENT
  706. TABLE_CATALOG NULL
  707. TABLE_SCHEMA information_schema
  708. TABLE_NAME VIEWS
  709. TABLE_TYPE SYSTEM VIEW
  710. ENGINE MyISAM
  711. VERSION 10
  712. ROW_FORMAT Dynamic
  713. TABLE_ROWS NULL
  714. AVG_ROW_LENGTH #ARL#
  715. DATA_LENGTH #DL#
  716. MAX_DATA_LENGTH #MDL#
  717. INDEX_LENGTH #IL#
  718. DATA_FREE #DF#
  719. AUTO_INCREMENT NULL
  720. CREATE_TIME YYYY-MM-DD hh:mm:ss
  721. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  722. CHECK_TIME YYYY-MM-DD hh:mm:ss
  723. TABLE_COLLATION utf8_general_ci
  724. CHECKSUM NULL
  725. CREATE_OPTIONS #CO#
  726. TABLE_COMMENT
  727. SELECT * FROM tables
  728. WHERE NOT( table_schema = 'information_schema')
  729. AND NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
  730. TABLE_CATALOG NULL
  731. TABLE_SCHEMA db_datadict
  732. TABLE_NAME v1
  733. TABLE_TYPE VIEW
  734. ENGINE NULL
  735. VERSION NULL
  736. ROW_FORMAT NULL
  737. TABLE_ROWS NULL
  738. AVG_ROW_LENGTH #ARL#
  739. DATA_LENGTH #DL#
  740. MAX_DATA_LENGTH #MDL#
  741. INDEX_LENGTH #IL#
  742. DATA_FREE #DF#
  743. AUTO_INCREMENT NULL
  744. CREATE_TIME YYYY-MM-DD hh:mm:ss
  745. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  746. CHECK_TIME YYYY-MM-DD hh:mm:ss
  747. TABLE_COLLATION NULL
  748. CHECKSUM NULL
  749. CREATE_OPTIONS NULL
  750. TABLE_COMMENT VIEW
  751. TABLE_CATALOG NULL
  752. TABLE_SCHEMA db_datadict
  753. TABLE_NAME vu
  754. TABLE_TYPE VIEW
  755. ENGINE NULL
  756. VERSION NULL
  757. ROW_FORMAT NULL
  758. TABLE_ROWS NULL
  759. AVG_ROW_LENGTH #ARL#
  760. DATA_LENGTH #DL#
  761. MAX_DATA_LENGTH #MDL#
  762. INDEX_LENGTH #IL#
  763. DATA_FREE #DF#
  764. AUTO_INCREMENT NULL
  765. CREATE_TIME YYYY-MM-DD hh:mm:ss
  766. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  767. CHECK_TIME YYYY-MM-DD hh:mm:ss
  768. TABLE_COLLATION NULL
  769. CHECKSUM NULL
  770. CREATE_OPTIONS NULL
  771. TABLE_COMMENT VIEW
  772. TABLE_CATALOG NULL
  773. TABLE_SCHEMA db_datadict
  774. TABLE_NAME vu1
  775. TABLE_TYPE VIEW
  776. ENGINE NULL
  777. VERSION NULL
  778. ROW_FORMAT NULL
  779. TABLE_ROWS NULL
  780. AVG_ROW_LENGTH #ARL#
  781. DATA_LENGTH #DL#
  782. MAX_DATA_LENGTH #MDL#
  783. INDEX_LENGTH #IL#
  784. DATA_FREE #DF#
  785. AUTO_INCREMENT NULL
  786. CREATE_TIME YYYY-MM-DD hh:mm:ss
  787. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  788. CHECK_TIME YYYY-MM-DD hh:mm:ss
  789. TABLE_COLLATION NULL
  790. CHECKSUM NULL
  791. CREATE_OPTIONS NULL
  792. TABLE_COMMENT VIEW
  793. TABLE_CATALOG NULL
  794. TABLE_SCHEMA mysql
  795. TABLE_NAME user
  796. TABLE_TYPE BASE TABLE
  797. ENGINE MyISAM
  798. VERSION 10
  799. ROW_FORMAT Dynamic
  800. TABLE_ROWS 3
  801. AVG_ROW_LENGTH #ARL#
  802. DATA_LENGTH #DL#
  803. MAX_DATA_LENGTH #MDL#
  804. INDEX_LENGTH #IL#
  805. DATA_FREE #DF#
  806. AUTO_INCREMENT NULL
  807. CREATE_TIME YYYY-MM-DD hh:mm:ss
  808. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  809. CHECK_TIME YYYY-MM-DD hh:mm:ss
  810. TABLE_COLLATION utf8_bin
  811. CHECKSUM NULL
  812. CREATE_OPTIONS
  813. TABLE_COMMENT Users and global privileges
  814. TABLE_CATALOG NULL
  815. TABLE_SCHEMA mysql
  816. TABLE_NAME columns_priv
  817. TABLE_TYPE BASE TABLE
  818. ENGINE MyISAM
  819. VERSION 10
  820. ROW_FORMAT Fixed
  821. TABLE_ROWS 0
  822. AVG_ROW_LENGTH #ARL#
  823. DATA_LENGTH #DL#
  824. MAX_DATA_LENGTH #MDL#
  825. INDEX_LENGTH #IL#
  826. DATA_FREE #DF#
  827. AUTO_INCREMENT NULL
  828. CREATE_TIME YYYY-MM-DD hh:mm:ss
  829. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  830. CHECK_TIME YYYY-MM-DD hh:mm:ss
  831. TABLE_COLLATION utf8_bin
  832. CHECKSUM NULL
  833. CREATE_OPTIONS
  834. TABLE_COMMENT Column privileges
  835. TABLE_CATALOG NULL
  836. TABLE_SCHEMA mysql
  837. TABLE_NAME db
  838. TABLE_TYPE BASE TABLE
  839. ENGINE MyISAM
  840. VERSION 10
  841. ROW_FORMAT Fixed
  842. TABLE_ROWS 2
  843. AVG_ROW_LENGTH #ARL#
  844. DATA_LENGTH #DL#
  845. MAX_DATA_LENGTH #MDL#
  846. INDEX_LENGTH #IL#
  847. DATA_FREE #DF#
  848. AUTO_INCREMENT NULL
  849. CREATE_TIME YYYY-MM-DD hh:mm:ss
  850. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  851. CHECK_TIME YYYY-MM-DD hh:mm:ss
  852. TABLE_COLLATION utf8_bin
  853. CHECKSUM NULL
  854. CREATE_OPTIONS
  855. TABLE_COMMENT Database privileges
  856. TABLE_CATALOG NULL
  857. TABLE_SCHEMA mysql
  858. TABLE_NAME event
  859. TABLE_TYPE BASE TABLE
  860. ENGINE MyISAM
  861. VERSION 10
  862. ROW_FORMAT Dynamic
  863. TABLE_ROWS 0
  864. AVG_ROW_LENGTH #ARL#
  865. DATA_LENGTH #DL#
  866. MAX_DATA_LENGTH #MDL#
  867. INDEX_LENGTH #IL#
  868. DATA_FREE #DF#
  869. AUTO_INCREMENT NULL
  870. CREATE_TIME YYYY-MM-DD hh:mm:ss
  871. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  872. CHECK_TIME YYYY-MM-DD hh:mm:ss
  873. TABLE_COLLATION utf8_general_ci
  874. CHECKSUM NULL
  875. CREATE_OPTIONS
  876. TABLE_COMMENT Events
  877. TABLE_CATALOG NULL
  878. TABLE_SCHEMA mysql
  879. TABLE_NAME func
  880. TABLE_TYPE BASE TABLE
  881. ENGINE MyISAM
  882. VERSION 10
  883. ROW_FORMAT Fixed
  884. TABLE_ROWS 0
  885. AVG_ROW_LENGTH #ARL#
  886. DATA_LENGTH #DL#
  887. MAX_DATA_LENGTH #MDL#
  888. INDEX_LENGTH #IL#
  889. DATA_FREE #DF#
  890. AUTO_INCREMENT NULL
  891. CREATE_TIME YYYY-MM-DD hh:mm:ss
  892. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  893. CHECK_TIME YYYY-MM-DD hh:mm:ss
  894. TABLE_COLLATION utf8_bin
  895. CHECKSUM NULL
  896. CREATE_OPTIONS
  897. TABLE_COMMENT User defined functions
  898. TABLE_CATALOG NULL
  899. TABLE_SCHEMA mysql
  900. TABLE_NAME general_log
  901. TABLE_TYPE BASE TABLE
  902. ENGINE CSV
  903. VERSION 10
  904. ROW_FORMAT Dynamic
  905. TABLE_ROWS 1
  906. AVG_ROW_LENGTH #ARL#
  907. DATA_LENGTH #DL#
  908. MAX_DATA_LENGTH #MDL#
  909. INDEX_LENGTH #IL#
  910. DATA_FREE #DF#
  911. AUTO_INCREMENT NULL
  912. CREATE_TIME YYYY-MM-DD hh:mm:ss
  913. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  914. CHECK_TIME YYYY-MM-DD hh:mm:ss
  915. TABLE_COLLATION utf8_general_ci
  916. CHECKSUM NULL
  917. CREATE_OPTIONS
  918. TABLE_COMMENT General log
  919. TABLE_CATALOG NULL
  920. TABLE_SCHEMA mysql
  921. TABLE_NAME host
  922. TABLE_TYPE BASE TABLE
  923. ENGINE MyISAM
  924. VERSION 10
  925. ROW_FORMAT Fixed
  926. TABLE_ROWS 0
  927. AVG_ROW_LENGTH #ARL#
  928. DATA_LENGTH #DL#
  929. MAX_DATA_LENGTH #MDL#
  930. INDEX_LENGTH #IL#
  931. DATA_FREE #DF#
  932. AUTO_INCREMENT NULL
  933. CREATE_TIME YYYY-MM-DD hh:mm:ss
  934. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  935. CHECK_TIME YYYY-MM-DD hh:mm:ss
  936. TABLE_COLLATION utf8_bin
  937. CHECKSUM NULL
  938. CREATE_OPTIONS
  939. TABLE_COMMENT Host privileges; Merged with database privileges
  940. TABLE_CATALOG NULL
  941. TABLE_SCHEMA mysql
  942. TABLE_NAME ndb_apply_status
  943. TABLE_TYPE BASE TABLE
  944. ENGINE ndbcluster
  945. VERSION 10
  946. ROW_FORMAT Dynamic
  947. TABLE_ROWS 0
  948. AVG_ROW_LENGTH #ARL#
  949. DATA_LENGTH #DL#
  950. MAX_DATA_LENGTH #MDL#
  951. INDEX_LENGTH #IL#
  952. DATA_FREE #DF#
  953. AUTO_INCREMENT NULL
  954. CREATE_TIME YYYY-MM-DD hh:mm:ss
  955. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  956. CHECK_TIME YYYY-MM-DD hh:mm:ss
  957. TABLE_COLLATION latin1_swedish_ci
  958. CHECKSUM NULL
  959. CREATE_OPTIONS
  960. TABLE_COMMENT
  961. TABLE_CATALOG NULL
  962. TABLE_SCHEMA mysql
  963. TABLE_NAME ndb_binlog_index
  964. TABLE_TYPE BASE TABLE
  965. ENGINE MyISAM
  966. VERSION 10
  967. ROW_FORMAT Dynamic
  968. TABLE_ROWS 0
  969. AVG_ROW_LENGTH #ARL#
  970. DATA_LENGTH #DL#
  971. MAX_DATA_LENGTH #MDL#
  972. INDEX_LENGTH #IL#
  973. DATA_FREE #DF#
  974. AUTO_INCREMENT NULL
  975. CREATE_TIME YYYY-MM-DD hh:mm:ss
  976. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  977. CHECK_TIME YYYY-MM-DD hh:mm:ss
  978. TABLE_COLLATION latin1_swedish_ci
  979. CHECKSUM NULL
  980. CREATE_OPTIONS
  981. TABLE_COMMENT
  982. TABLE_CATALOG NULL
  983. TABLE_SCHEMA mysql
  984. TABLE_NAME plugin
  985. TABLE_TYPE BASE TABLE
  986. ENGINE MyISAM
  987. VERSION 10
  988. ROW_FORMAT Fixed
  989. TABLE_ROWS 0
  990. AVG_ROW_LENGTH #ARL#
  991. DATA_LENGTH #DL#
  992. MAX_DATA_LENGTH #MDL#
  993. INDEX_LENGTH #IL#
  994. DATA_FREE #DF#
  995. AUTO_INCREMENT NULL
  996. CREATE_TIME YYYY-MM-DD hh:mm:ss
  997. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  998. CHECK_TIME YYYY-MM-DD hh:mm:ss
  999. TABLE_COLLATION utf8_bin
  1000. CHECKSUM NULL
  1001. CREATE_OPTIONS
  1002. TABLE_COMMENT MySQL plugins
  1003. TABLE_CATALOG NULL
  1004. TABLE_SCHEMA mysql
  1005. TABLE_NAME proc
  1006. TABLE_TYPE BASE TABLE
  1007. ENGINE MyISAM
  1008. VERSION 10
  1009. ROW_FORMAT Dynamic
  1010. TABLE_ROWS 1
  1011. AVG_ROW_LENGTH #ARL#
  1012. DATA_LENGTH #DL#
  1013. MAX_DATA_LENGTH #MDL#
  1014. INDEX_LENGTH #IL#
  1015. DATA_FREE #DF#
  1016. AUTO_INCREMENT NULL
  1017. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1018. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1019. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1020. TABLE_COLLATION utf8_general_ci
  1021. CHECKSUM NULL
  1022. CREATE_OPTIONS
  1023. TABLE_COMMENT Stored Procedures
  1024. TABLE_CATALOG NULL
  1025. TABLE_SCHEMA mysql
  1026. TABLE_NAME procs_priv
  1027. TABLE_TYPE BASE TABLE
  1028. ENGINE MyISAM
  1029. VERSION 10
  1030. ROW_FORMAT Fixed
  1031. TABLE_ROWS 0
  1032. AVG_ROW_LENGTH #ARL#
  1033. DATA_LENGTH #DL#
  1034. MAX_DATA_LENGTH #MDL#
  1035. INDEX_LENGTH #IL#
  1036. DATA_FREE #DF#
  1037. AUTO_INCREMENT NULL
  1038. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1039. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1040. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1041. TABLE_COLLATION utf8_bin
  1042. CHECKSUM NULL
  1043. CREATE_OPTIONS
  1044. TABLE_COMMENT Procedure privileges
  1045. TABLE_CATALOG NULL
  1046. TABLE_SCHEMA mysql
  1047. TABLE_NAME servers
  1048. TABLE_TYPE BASE TABLE
  1049. ENGINE MyISAM
  1050. VERSION 10
  1051. ROW_FORMAT Fixed
  1052. TABLE_ROWS 0
  1053. AVG_ROW_LENGTH #ARL#
  1054. DATA_LENGTH #DL#
  1055. MAX_DATA_LENGTH #MDL#
  1056. INDEX_LENGTH #IL#
  1057. DATA_FREE #DF#
  1058. AUTO_INCREMENT NULL
  1059. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1060. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1061. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1062. TABLE_COLLATION utf8_general_ci
  1063. CHECKSUM NULL
  1064. CREATE_OPTIONS
  1065. TABLE_COMMENT MySQL Foreign Servers table
  1066. TABLE_CATALOG NULL
  1067. TABLE_SCHEMA mysql
  1068. TABLE_NAME slow_log
  1069. TABLE_TYPE BASE TABLE
  1070. ENGINE CSV
  1071. VERSION 10
  1072. ROW_FORMAT Dynamic
  1073. TABLE_ROWS 2
  1074. AVG_ROW_LENGTH #ARL#
  1075. DATA_LENGTH #DL#
  1076. MAX_DATA_LENGTH #MDL#
  1077. INDEX_LENGTH #IL#
  1078. DATA_FREE #DF#
  1079. AUTO_INCREMENT NULL
  1080. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1081. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1082. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1083. TABLE_COLLATION utf8_general_ci
  1084. CHECKSUM NULL
  1085. CREATE_OPTIONS
  1086. TABLE_COMMENT Slow log
  1087. TABLE_CATALOG NULL
  1088. TABLE_SCHEMA mysql
  1089. TABLE_NAME tables_priv
  1090. TABLE_TYPE BASE TABLE
  1091. ENGINE MyISAM
  1092. VERSION 10
  1093. ROW_FORMAT Fixed
  1094. TABLE_ROWS 0
  1095. AVG_ROW_LENGTH #ARL#
  1096. DATA_LENGTH #DL#
  1097. MAX_DATA_LENGTH #MDL#
  1098. INDEX_LENGTH #IL#
  1099. DATA_FREE #DF#
  1100. AUTO_INCREMENT NULL
  1101. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1102. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1103. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1104. TABLE_COLLATION utf8_bin
  1105. CHECKSUM NULL
  1106. CREATE_OPTIONS
  1107. TABLE_COMMENT Table privileges
  1108. TABLE_CATALOG NULL
  1109. TABLE_SCHEMA mysql
  1110. TABLE_NAME time_zone
  1111. TABLE_TYPE BASE TABLE
  1112. ENGINE MyISAM
  1113. VERSION 10
  1114. ROW_FORMAT Fixed
  1115. TABLE_ROWS 5
  1116. AVG_ROW_LENGTH #ARL#
  1117. DATA_LENGTH #DL#
  1118. MAX_DATA_LENGTH #MDL#
  1119. INDEX_LENGTH #IL#
  1120. DATA_FREE #DF#
  1121. AUTO_INCREMENT 6
  1122. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1123. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1124. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1125. TABLE_COLLATION utf8_general_ci
  1126. CHECKSUM NULL
  1127. CREATE_OPTIONS
  1128. TABLE_COMMENT Time zones
  1129. TABLE_CATALOG NULL
  1130. TABLE_SCHEMA mysql
  1131. TABLE_NAME time_zone_leap_second
  1132. TABLE_TYPE BASE TABLE
  1133. ENGINE MyISAM
  1134. VERSION 10
  1135. ROW_FORMAT Fixed
  1136. TABLE_ROWS 22
  1137. AVG_ROW_LENGTH #ARL#
  1138. DATA_LENGTH #DL#
  1139. MAX_DATA_LENGTH #MDL#
  1140. INDEX_LENGTH #IL#
  1141. DATA_FREE #DF#
  1142. AUTO_INCREMENT NULL
  1143. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1144. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1145. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1146. TABLE_COLLATION utf8_general_ci
  1147. CHECKSUM NULL
  1148. CREATE_OPTIONS
  1149. TABLE_COMMENT Leap seconds information for time zones
  1150. TABLE_CATALOG NULL
  1151. TABLE_SCHEMA mysql
  1152. TABLE_NAME time_zone_name
  1153. TABLE_TYPE BASE TABLE
  1154. ENGINE MyISAM
  1155. VERSION 10
  1156. ROW_FORMAT Fixed
  1157. TABLE_ROWS 6
  1158. AVG_ROW_LENGTH #ARL#
  1159. DATA_LENGTH #DL#
  1160. MAX_DATA_LENGTH #MDL#
  1161. INDEX_LENGTH #IL#
  1162. DATA_FREE #DF#
  1163. AUTO_INCREMENT NULL
  1164. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1165. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1166. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1167. TABLE_COLLATION utf8_general_ci
  1168. CHECKSUM NULL
  1169. CREATE_OPTIONS
  1170. TABLE_COMMENT Time zone names
  1171. TABLE_CATALOG NULL
  1172. TABLE_SCHEMA mysql
  1173. TABLE_NAME time_zone_transition
  1174. TABLE_TYPE BASE TABLE
  1175. ENGINE MyISAM
  1176. VERSION 10
  1177. ROW_FORMAT Fixed
  1178. TABLE_ROWS 393
  1179. AVG_ROW_LENGTH #ARL#
  1180. DATA_LENGTH #DL#
  1181. MAX_DATA_LENGTH #MDL#
  1182. INDEX_LENGTH #IL#
  1183. DATA_FREE #DF#
  1184. AUTO_INCREMENT NULL
  1185. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1186. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1187. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1188. TABLE_COLLATION utf8_general_ci
  1189. CHECKSUM NULL
  1190. CREATE_OPTIONS
  1191. TABLE_COMMENT Time zone transitions
  1192. TABLE_CATALOG NULL
  1193. TABLE_SCHEMA mysql
  1194. TABLE_NAME time_zone_transition_type
  1195. TABLE_TYPE BASE TABLE
  1196. ENGINE MyISAM
  1197. VERSION 10
  1198. ROW_FORMAT Fixed
  1199. TABLE_ROWS 31
  1200. AVG_ROW_LENGTH #ARL#
  1201. DATA_LENGTH #DL#
  1202. MAX_DATA_LENGTH #MDL#
  1203. INDEX_LENGTH #IL#
  1204. DATA_FREE #DF#
  1205. AUTO_INCREMENT NULL
  1206. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1207. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1208. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1209. TABLE_COLLATION utf8_general_ci
  1210. CHECKSUM NULL
  1211. CREATE_OPTIONS
  1212. TABLE_COMMENT Time zone transition types
  1213. TABLE_CATALOG NULL
  1214. TABLE_SCHEMA test
  1215. TABLE_NAME t1
  1216. TABLE_TYPE BASE TABLE
  1217. ENGINE ndbcluster
  1218. VERSION 10
  1219. ROW_FORMAT Fixed
  1220. TABLE_ROWS 10
  1221. AVG_ROW_LENGTH #ARL#
  1222. DATA_LENGTH #DL#
  1223. MAX_DATA_LENGTH #MDL#
  1224. INDEX_LENGTH #IL#
  1225. DATA_FREE #DF#
  1226. AUTO_INCREMENT NULL
  1227. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1228. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1229. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1230. TABLE_COLLATION latin1_swedish_ci
  1231. CHECKSUM NULL
  1232. CREATE_OPTIONS
  1233. TABLE_COMMENT
  1234. TABLE_CATALOG NULL
  1235. TABLE_SCHEMA test
  1236. TABLE_NAME t10
  1237. TABLE_TYPE BASE TABLE
  1238. ENGINE ndbcluster
  1239. VERSION 10
  1240. ROW_FORMAT Fixed
  1241. TABLE_ROWS 10
  1242. AVG_ROW_LENGTH #ARL#
  1243. DATA_LENGTH #DL#
  1244. MAX_DATA_LENGTH #MDL#
  1245. INDEX_LENGTH #IL#
  1246. DATA_FREE #DF#
  1247. AUTO_INCREMENT NULL
  1248. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1249. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1250. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1251. TABLE_COLLATION latin1_swedish_ci
  1252. CHECKSUM NULL
  1253. CREATE_OPTIONS
  1254. TABLE_COMMENT
  1255. TABLE_CATALOG NULL
  1256. TABLE_SCHEMA test
  1257. TABLE_NAME t11
  1258. TABLE_TYPE BASE TABLE
  1259. ENGINE ndbcluster
  1260. VERSION 10
  1261. ROW_FORMAT Fixed
  1262. TABLE_ROWS 10
  1263. AVG_ROW_LENGTH #ARL#
  1264. DATA_LENGTH #DL#
  1265. MAX_DATA_LENGTH #MDL#
  1266. INDEX_LENGTH #IL#
  1267. DATA_FREE #DF#
  1268. AUTO_INCREMENT NULL
  1269. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1270. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1271. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1272. TABLE_COLLATION latin1_swedish_ci
  1273. CHECKSUM NULL
  1274. CREATE_OPTIONS
  1275. TABLE_COMMENT
  1276. TABLE_CATALOG NULL
  1277. TABLE_SCHEMA test
  1278. TABLE_NAME t2
  1279. TABLE_TYPE BASE TABLE
  1280. ENGINE ndbcluster
  1281. VERSION 10
  1282. ROW_FORMAT Fixed
  1283. TABLE_ROWS 10
  1284. AVG_ROW_LENGTH #ARL#
  1285. DATA_LENGTH #DL#
  1286. MAX_DATA_LENGTH #MDL#
  1287. INDEX_LENGTH #IL#
  1288. DATA_FREE #DF#
  1289. AUTO_INCREMENT NULL
  1290. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1291. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1292. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1293. TABLE_COLLATION latin1_swedish_ci
  1294. CHECKSUM NULL
  1295. CREATE_OPTIONS
  1296. TABLE_COMMENT
  1297. TABLE_CATALOG NULL
  1298. TABLE_SCHEMA test
  1299. TABLE_NAME t3
  1300. TABLE_TYPE BASE TABLE
  1301. ENGINE ndbcluster
  1302. VERSION 10
  1303. ROW_FORMAT Fixed
  1304. TABLE_ROWS 10
  1305. AVG_ROW_LENGTH #ARL#
  1306. DATA_LENGTH #DL#
  1307. MAX_DATA_LENGTH #MDL#
  1308. INDEX_LENGTH #IL#
  1309. DATA_FREE #DF#
  1310. AUTO_INCREMENT NULL
  1311. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1312. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1313. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1314. TABLE_COLLATION latin1_swedish_ci
  1315. CHECKSUM NULL
  1316. CREATE_OPTIONS
  1317. TABLE_COMMENT
  1318. TABLE_CATALOG NULL
  1319. TABLE_SCHEMA test
  1320. TABLE_NAME t4
  1321. TABLE_TYPE BASE TABLE
  1322. ENGINE ndbcluster
  1323. VERSION 10
  1324. ROW_FORMAT Fixed
  1325. TABLE_ROWS 10
  1326. AVG_ROW_LENGTH #ARL#
  1327. DATA_LENGTH #DL#
  1328. MAX_DATA_LENGTH #MDL#
  1329. INDEX_LENGTH #IL#
  1330. DATA_FREE #DF#
  1331. AUTO_INCREMENT NULL
  1332. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1333. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1334. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1335. TABLE_COLLATION latin1_swedish_ci
  1336. CHECKSUM NULL
  1337. CREATE_OPTIONS
  1338. TABLE_COMMENT
  1339. TABLE_CATALOG NULL
  1340. TABLE_SCHEMA test
  1341. TABLE_NAME t7
  1342. TABLE_TYPE BASE TABLE
  1343. ENGINE ndbcluster
  1344. VERSION 10
  1345. ROW_FORMAT Fixed
  1346. TABLE_ROWS 10
  1347. AVG_ROW_LENGTH #ARL#
  1348. DATA_LENGTH #DL#
  1349. MAX_DATA_LENGTH #MDL#
  1350. INDEX_LENGTH #IL#
  1351. DATA_FREE #DF#
  1352. AUTO_INCREMENT NULL
  1353. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1354. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1355. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1356. TABLE_COLLATION latin1_swedish_ci
  1357. CHECKSUM NULL
  1358. CREATE_OPTIONS
  1359. TABLE_COMMENT
  1360. TABLE_CATALOG NULL
  1361. TABLE_SCHEMA test
  1362. TABLE_NAME t8
  1363. TABLE_TYPE BASE TABLE
  1364. ENGINE ndbcluster
  1365. VERSION 10
  1366. ROW_FORMAT Fixed
  1367. TABLE_ROWS 10
  1368. AVG_ROW_LENGTH #ARL#
  1369. DATA_LENGTH #DL#
  1370. MAX_DATA_LENGTH #MDL#
  1371. INDEX_LENGTH #IL#
  1372. DATA_FREE #DF#
  1373. AUTO_INCREMENT NULL
  1374. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1375. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1376. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1377. TABLE_COLLATION latin1_swedish_ci
  1378. CHECKSUM NULL
  1379. CREATE_OPTIONS
  1380. TABLE_COMMENT
  1381. TABLE_CATALOG NULL
  1382. TABLE_SCHEMA test
  1383. TABLE_NAME t9
  1384. TABLE_TYPE BASE TABLE
  1385. ENGINE ndbcluster
  1386. VERSION 10
  1387. ROW_FORMAT Fixed
  1388. TABLE_ROWS 10
  1389. AVG_ROW_LENGTH #ARL#
  1390. DATA_LENGTH #DL#
  1391. MAX_DATA_LENGTH #MDL#
  1392. INDEX_LENGTH #IL#
  1393. DATA_FREE #DF#
  1394. AUTO_INCREMENT NULL
  1395. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1396. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1397. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1398. TABLE_COLLATION latin1_swedish_ci
  1399. CHECKSUM NULL
  1400. CREATE_OPTIONS
  1401. TABLE_COMMENT
  1402. TABLE_CATALOG NULL
  1403. TABLE_SCHEMA test4
  1404. TABLE_NAME t6
  1405. TABLE_TYPE BASE TABLE
  1406. ENGINE ndbcluster
  1407. VERSION 10
  1408. ROW_FORMAT Fixed
  1409. TABLE_ROWS 10
  1410. AVG_ROW_LENGTH #ARL#
  1411. DATA_LENGTH #DL#
  1412. MAX_DATA_LENGTH #MDL#
  1413. INDEX_LENGTH #IL#
  1414. DATA_FREE #DF#
  1415. AUTO_INCREMENT NULL
  1416. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1417. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1418. CHECK_TIME YYYY-MM-DD hh:mm:ss
  1419. TABLE_COLLATION latin1_swedish_ci
  1420. CHECKSUM NULL
  1421. CREATE_OPTIONS
  1422. TABLE_COMMENT
  1423. select s.catalog_name, s.schema_name, s.default_character_set_name,
  1424. t.table_type, t.engine
  1425. from schemata s inner join tables t
  1426. ORDER BY s.schema_name, s.default_character_set_name, table_type, engine;
  1427. catalog_name schema_name default_character_set_name table_type engine
  1428. NULL db_datadict latin1 BASE TABLE CSV
  1429. NULL db_datadict latin1 BASE TABLE CSV
  1430. NULL db_datadict latin1 BASE TABLE MyISAM
  1431. NULL db_datadict latin1 BASE TABLE MyISAM
  1432. NULL db_datadict latin1 BASE TABLE MyISAM
  1433. NULL db_datadict latin1 BASE TABLE MyISAM
  1434. NULL db_datadict latin1 BASE TABLE MyISAM
  1435. NULL db_datadict latin1 BASE TABLE MyISAM
  1436. NULL db_datadict latin1 BASE TABLE MyISAM
  1437. NULL db_datadict latin1 BASE TABLE MyISAM
  1438. NULL db_datadict latin1 BASE TABLE MyISAM
  1439. NULL db_datadict latin1 BASE TABLE MyISAM
  1440. NULL db_datadict latin1 BASE TABLE MyISAM
  1441. NULL db_datadict latin1 BASE TABLE MyISAM
  1442. NULL db_datadict latin1 BASE TABLE MyISAM
  1443. NULL db_datadict latin1 BASE TABLE MyISAM
  1444. NULL db_datadict latin1 BASE TABLE MyISAM
  1445. NULL db_datadict latin1 BASE TABLE MyISAM
  1446. NULL db_datadict latin1 BASE TABLE MyISAM
  1447. NULL db_datadict latin1 BASE TABLE MyISAM
  1448. NULL db_datadict latin1 BASE TABLE MyISAM
  1449. NULL db_datadict latin1 BASE TABLE MyISAM
  1450. NULL db_datadict latin1 BASE TABLE MyISAM
  1451. NULL db_datadict latin1 BASE TABLE MyISAM
  1452. NULL db_datadict latin1 BASE TABLE MyISAM
  1453. NULL db_datadict latin1 BASE TABLE MyISAM
  1454. NULL db_datadict latin1 BASE TABLE MyISAM
  1455. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1456. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1457. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1458. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1459. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1460. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1461. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1462. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1463. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1464. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1465. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1466. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1467. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1468. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1469. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1470. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1471. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1472. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1473. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1474. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1475. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1476. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1477. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1478. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1479. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1480. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1481. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1482. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1483. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1484. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1485. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1486. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1487. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1488. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1489. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1490. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1491. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1492. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1493. NULL db_datadict latin1 VIEW NULL
  1494. NULL db_datadict latin1 VIEW NULL
  1495. NULL db_datadict latin1 VIEW NULL
  1496. NULL information_schema utf8 BASE TABLE CSV
  1497. NULL information_schema utf8 BASE TABLE CSV
  1498. NULL information_schema utf8 BASE TABLE MyISAM
  1499. NULL information_schema utf8 BASE TABLE MyISAM
  1500. NULL information_schema utf8 BASE TABLE MyISAM
  1501. NULL information_schema utf8 BASE TABLE MyISAM
  1502. NULL information_schema utf8 BASE TABLE MyISAM
  1503. NULL information_schema utf8 BASE TABLE MyISAM
  1504. NULL information_schema utf8 BASE TABLE MyISAM
  1505. NULL information_schema utf8 BASE TABLE MyISAM
  1506. NULL information_schema utf8 BASE TABLE MyISAM
  1507. NULL information_schema utf8 BASE TABLE MyISAM
  1508. NULL information_schema utf8 BASE TABLE MyISAM
  1509. NULL information_schema utf8 BASE TABLE MyISAM
  1510. NULL information_schema utf8 BASE TABLE MyISAM
  1511. NULL information_schema utf8 BASE TABLE MyISAM
  1512. NULL information_schema utf8 BASE TABLE MyISAM
  1513. NULL information_schema utf8 BASE TABLE MyISAM
  1514. NULL information_schema utf8 BASE TABLE MyISAM
  1515. NULL information_schema utf8 BASE TABLE MyISAM
  1516. NULL information_schema utf8 BASE TABLE MyISAM
  1517. NULL information_schema utf8 BASE TABLE MyISAM
  1518. NULL information_schema utf8 BASE TABLE MyISAM
  1519. NULL information_schema utf8 BASE TABLE MyISAM
  1520. NULL information_schema utf8 BASE TABLE MyISAM
  1521. NULL information_schema utf8 BASE TABLE MyISAM
  1522. NULL information_schema utf8 BASE TABLE MyISAM
  1523. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1524. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1525. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1526. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1527. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1528. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1529. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1530. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1531. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1532. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1533. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1534. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1535. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1536. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1537. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1538. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1539. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1540. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1541. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1542. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1543. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1544. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1545. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1546. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1547. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1548. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1549. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1550. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1551. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1552. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1553. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1554. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1555. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1556. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1557. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1558. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1559. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1560. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1561. NULL information_schema utf8 VIEW NULL
  1562. NULL information_schema utf8 VIEW NULL
  1563. NULL information_schema utf8 VIEW NULL
  1564. NULL mysql latin1 BASE TABLE CSV
  1565. NULL mysql latin1 BASE TABLE CSV
  1566. NULL mysql latin1 BASE TABLE MyISAM
  1567. NULL mysql latin1 BASE TABLE MyISAM
  1568. NULL mysql latin1 BASE TABLE MyISAM
  1569. NULL mysql latin1 BASE TABLE MyISAM
  1570. NULL mysql latin1 BASE TABLE MyISAM
  1571. NULL mysql latin1 BASE TABLE MyISAM
  1572. NULL mysql latin1 BASE TABLE MyISAM
  1573. NULL mysql latin1 BASE TABLE MyISAM
  1574. NULL mysql latin1 BASE TABLE MyISAM
  1575. NULL mysql latin1 BASE TABLE MyISAM
  1576. NULL mysql latin1 BASE TABLE MyISAM
  1577. NULL mysql latin1 BASE TABLE MyISAM
  1578. NULL mysql latin1 BASE TABLE MyISAM
  1579. NULL mysql latin1 BASE TABLE MyISAM
  1580. NULL mysql latin1 BASE TABLE MyISAM
  1581. NULL mysql latin1 BASE TABLE MyISAM
  1582. NULL mysql latin1 BASE TABLE MyISAM
  1583. NULL mysql latin1 BASE TABLE MyISAM
  1584. NULL mysql latin1 BASE TABLE MyISAM
  1585. NULL mysql latin1 BASE TABLE MyISAM
  1586. NULL mysql latin1 BASE TABLE MyISAM
  1587. NULL mysql latin1 BASE TABLE MyISAM
  1588. NULL mysql latin1 BASE TABLE MyISAM
  1589. NULL mysql latin1 BASE TABLE MyISAM
  1590. NULL mysql latin1 BASE TABLE MyISAM
  1591. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1592. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1593. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1594. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1595. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1596. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1597. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1598. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1599. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1600. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1601. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1602. NULL mysql latin1 SYSTEM VIEW MEMORY
  1603. NULL mysql latin1 SYSTEM VIEW MEMORY
  1604. NULL mysql latin1 SYSTEM VIEW MEMORY
  1605. NULL mysql latin1 SYSTEM VIEW MEMORY
  1606. NULL mysql latin1 SYSTEM VIEW MEMORY
  1607. NULL mysql latin1 SYSTEM VIEW MEMORY
  1608. NULL mysql latin1 SYSTEM VIEW MEMORY
  1609. NULL mysql latin1 SYSTEM VIEW MEMORY
  1610. NULL mysql latin1 SYSTEM VIEW MEMORY
  1611. NULL mysql latin1 SYSTEM VIEW MEMORY
  1612. NULL mysql latin1 SYSTEM VIEW MEMORY
  1613. NULL mysql latin1 SYSTEM VIEW MEMORY
  1614. NULL mysql latin1 SYSTEM VIEW MEMORY
  1615. NULL mysql latin1 SYSTEM VIEW MEMORY
  1616. NULL mysql latin1 SYSTEM VIEW MEMORY
  1617. NULL mysql latin1 SYSTEM VIEW MEMORY
  1618. NULL mysql latin1 SYSTEM VIEW MEMORY
  1619. NULL mysql latin1 SYSTEM VIEW MyISAM
  1620. NULL mysql latin1 SYSTEM VIEW MyISAM
  1621. NULL mysql latin1 SYSTEM VIEW MyISAM
  1622. NULL mysql latin1 SYSTEM VIEW MyISAM
  1623. NULL mysql latin1 SYSTEM VIEW MyISAM
  1624. NULL mysql latin1 SYSTEM VIEW MyISAM
  1625. NULL mysql latin1 SYSTEM VIEW MyISAM
  1626. NULL mysql latin1 SYSTEM VIEW MyISAM
  1627. NULL mysql latin1 SYSTEM VIEW MyISAM
  1628. NULL mysql latin1 SYSTEM VIEW MyISAM
  1629. NULL mysql latin1 VIEW NULL
  1630. NULL mysql latin1 VIEW NULL
  1631. NULL mysql latin1 VIEW NULL
  1632. NULL test latin1 BASE TABLE CSV
  1633. NULL test latin1 BASE TABLE CSV
  1634. NULL test latin1 BASE TABLE MyISAM
  1635. NULL test latin1 BASE TABLE MyISAM
  1636. NULL test latin1 BASE TABLE MyISAM
  1637. NULL test latin1 BASE TABLE MyISAM
  1638. NULL test latin1 BASE TABLE MyISAM
  1639. NULL test latin1 BASE TABLE MyISAM
  1640. NULL test latin1 BASE TABLE MyISAM
  1641. NULL test latin1 BASE TABLE MyISAM
  1642. NULL test latin1 BASE TABLE MyISAM
  1643. NULL test latin1 BASE TABLE MyISAM
  1644. NULL test latin1 BASE TABLE MyISAM
  1645. NULL test latin1 BASE TABLE MyISAM
  1646. NULL test latin1 BASE TABLE MyISAM
  1647. NULL test latin1 BASE TABLE MyISAM
  1648. NULL test latin1 BASE TABLE MyISAM
  1649. NULL test latin1 BASE TABLE MyISAM
  1650. NULL test latin1 BASE TABLE MyISAM
  1651. NULL test latin1 BASE TABLE MyISAM
  1652. NULL test latin1 BASE TABLE MyISAM
  1653. NULL test latin1 BASE TABLE MyISAM
  1654. NULL test latin1 BASE TABLE MyISAM
  1655. NULL test latin1 BASE TABLE MyISAM
  1656. NULL test latin1 BASE TABLE MyISAM
  1657. NULL test latin1 BASE TABLE MyISAM
  1658. NULL test latin1 BASE TABLE MyISAM
  1659. NULL test latin1 BASE TABLE NDBCLUSTER
  1660. NULL test latin1 BASE TABLE NDBCLUSTER
  1661. NULL test latin1 BASE TABLE NDBCLUSTER
  1662. NULL test latin1 BASE TABLE NDBCLUSTER
  1663. NULL test latin1 BASE TABLE NDBCLUSTER
  1664. NULL test latin1 BASE TABLE NDBCLUSTER
  1665. NULL test latin1 BASE TABLE NDBCLUSTER
  1666. NULL test latin1 BASE TABLE NDBCLUSTER
  1667. NULL test latin1 BASE TABLE NDBCLUSTER
  1668. NULL test latin1 BASE TABLE NDBCLUSTER
  1669. NULL test latin1 BASE TABLE NDBCLUSTER
  1670. NULL test latin1 SYSTEM VIEW MEMORY
  1671. NULL test latin1 SYSTEM VIEW MEMORY
  1672. NULL test latin1 SYSTEM VIEW MEMORY
  1673. NULL test latin1 SYSTEM VIEW MEMORY
  1674. NULL test latin1 SYSTEM VIEW MEMORY
  1675. NULL test latin1 SYSTEM VIEW MEMORY
  1676. NULL test latin1 SYSTEM VIEW MEMORY
  1677. NULL test latin1 SYSTEM VIEW MEMORY
  1678. NULL test latin1 SYSTEM VIEW MEMORY
  1679. NULL test latin1 SYSTEM VIEW MEMORY
  1680. NULL test latin1 SYSTEM VIEW MEMORY
  1681. NULL test latin1 SYSTEM VIEW MEMORY
  1682. NULL test latin1 SYSTEM VIEW MEMORY
  1683. NULL test latin1 SYSTEM VIEW MEMORY
  1684. NULL test latin1 SYSTEM VIEW MEMORY
  1685. NULL test latin1 SYSTEM VIEW MEMORY
  1686. NULL test latin1 SYSTEM VIEW MEMORY
  1687. NULL test latin1 SYSTEM VIEW MyISAM
  1688. NULL test latin1 SYSTEM VIEW MyISAM
  1689. NULL test latin1 SYSTEM VIEW MyISAM
  1690. NULL test latin1 SYSTEM VIEW MyISAM
  1691. NULL test latin1 SYSTEM VIEW MyISAM
  1692. NULL test latin1 SYSTEM VIEW MyISAM
  1693. NULL test latin1 SYSTEM VIEW MyISAM
  1694. NULL test latin1 SYSTEM VIEW MyISAM
  1695. NULL test latin1 SYSTEM VIEW MyISAM
  1696. NULL test latin1 SYSTEM VIEW MyISAM
  1697. NULL test latin1 VIEW NULL
  1698. NULL test latin1 VIEW NULL
  1699. NULL test latin1 VIEW NULL
  1700. NULL test1 latin1 BASE TABLE CSV
  1701. NULL test1 latin1 BASE TABLE CSV
  1702. NULL test1 latin1 BASE TABLE MyISAM
  1703. NULL test1 latin1 BASE TABLE MyISAM
  1704. NULL test1 latin1 BASE TABLE MyISAM
  1705. NULL test1 latin1 BASE TABLE MyISAM
  1706. NULL test1 latin1 BASE TABLE MyISAM
  1707. NULL test1 latin1 BASE TABLE MyISAM
  1708. NULL test1 latin1 BASE TABLE MyISAM
  1709. NULL test1 latin1 BASE TABLE MyISAM
  1710. NULL test1 latin1 BASE TABLE MyISAM
  1711. NULL test1 latin1 BASE TABLE MyISAM
  1712. NULL test1 latin1 BASE TABLE MyISAM
  1713. NULL test1 latin1 BASE TABLE MyISAM
  1714. NULL test1 latin1 BASE TABLE MyISAM
  1715. NULL test1 latin1 BASE TABLE MyISAM
  1716. NULL test1 latin1 BASE TABLE MyISAM
  1717. NULL test1 latin1 BASE TABLE MyISAM
  1718. NULL test1 latin1 BASE TABLE MyISAM
  1719. NULL test1 latin1 BASE TABLE MyISAM
  1720. NULL test1 latin1 BASE TABLE MyISAM
  1721. NULL test1 latin1 BASE TABLE MyISAM
  1722. NULL test1 latin1 BASE TABLE MyISAM
  1723. NULL test1 latin1 BASE TABLE MyISAM
  1724. NULL test1 latin1 BASE TABLE MyISAM
  1725. NULL test1 latin1 BASE TABLE MyISAM
  1726. NULL test1 latin1 BASE TABLE MyISAM
  1727. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1728. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1729. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1730. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1731. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1732. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1733. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1734. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1735. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1736. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1737. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1738. NULL test1 latin1 SYSTEM VIEW MEMORY
  1739. NULL test1 latin1 SYSTEM VIEW MEMORY
  1740. NULL test1 latin1 SYSTEM VIEW MEMORY
  1741. NULL test1 latin1 SYSTEM VIEW MEMORY
  1742. NULL test1 latin1 SYSTEM VIEW MEMORY
  1743. NULL test1 latin1 SYSTEM VIEW MEMORY
  1744. NULL test1 latin1 SYSTEM VIEW MEMORY
  1745. NULL test1 latin1 SYSTEM VIEW MEMORY
  1746. NULL test1 latin1 SYSTEM VIEW MEMORY
  1747. NULL test1 latin1 SYSTEM VIEW MEMORY
  1748. NULL test1 latin1 SYSTEM VIEW MEMORY
  1749. NULL test1 latin1 SYSTEM VIEW MEMORY
  1750. NULL test1 latin1 SYSTEM VIEW MEMORY
  1751. NULL test1 latin1 SYSTEM VIEW MEMORY
  1752. NULL test1 latin1 SYSTEM VIEW MEMORY
  1753. NULL test1 latin1 SYSTEM VIEW MEMORY
  1754. NULL test1 latin1 SYSTEM VIEW MEMORY
  1755. NULL test1 latin1 SYSTEM VIEW MyISAM
  1756. NULL test1 latin1 SYSTEM VIEW MyISAM
  1757. NULL test1 latin1 SYSTEM VIEW MyISAM
  1758. NULL test1 latin1 SYSTEM VIEW MyISAM
  1759. NULL test1 latin1 SYSTEM VIEW MyISAM
  1760. NULL test1 latin1 SYSTEM VIEW MyISAM
  1761. NULL test1 latin1 SYSTEM VIEW MyISAM
  1762. NULL test1 latin1 SYSTEM VIEW MyISAM
  1763. NULL test1 latin1 SYSTEM VIEW MyISAM
  1764. NULL test1 latin1 SYSTEM VIEW MyISAM
  1765. NULL test1 latin1 VIEW NULL
  1766. NULL test1 latin1 VIEW NULL
  1767. NULL test1 latin1 VIEW NULL
  1768. NULL test4 latin1 BASE TABLE CSV
  1769. NULL test4 latin1 BASE TABLE CSV
  1770. NULL test4 latin1 BASE TABLE MyISAM
  1771. NULL test4 latin1 BASE TABLE MyISAM
  1772. NULL test4 latin1 BASE TABLE MyISAM
  1773. NULL test4 latin1 BASE TABLE MyISAM
  1774. NULL test4 latin1 BASE TABLE MyISAM
  1775. NULL test4 latin1 BASE TABLE MyISAM
  1776. NULL test4 latin1 BASE TABLE MyISAM
  1777. NULL test4 latin1 BASE TABLE MyISAM
  1778. NULL test4 latin1 BASE TABLE MyISAM
  1779. NULL test4 latin1 BASE TABLE MyISAM
  1780. NULL test4 latin1 BASE TABLE MyISAM
  1781. NULL test4 latin1 BASE TABLE MyISAM
  1782. NULL test4 latin1 BASE TABLE MyISAM
  1783. NULL test4 latin1 BASE TABLE MyISAM
  1784. NULL test4 latin1 BASE TABLE MyISAM
  1785. NULL test4 latin1 BASE TABLE MyISAM
  1786. NULL test4 latin1 BASE TABLE MyISAM
  1787. NULL test4 latin1 BASE TABLE MyISAM
  1788. NULL test4 latin1 BASE TABLE MyISAM
  1789. NULL test4 latin1 BASE TABLE MyISAM
  1790. NULL test4 latin1 BASE TABLE MyISAM
  1791. NULL test4 latin1 BASE TABLE MyISAM
  1792. NULL test4 latin1 BASE TABLE MyISAM
  1793. NULL test4 latin1 BASE TABLE MyISAM
  1794. NULL test4 latin1 BASE TABLE MyISAM
  1795. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1796. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1797. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1798. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1799. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1800. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1801. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1802. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1803. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1804. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1805. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1806. NULL test4 latin1 SYSTEM VIEW MEMORY
  1807. NULL test4 latin1 SYSTEM VIEW MEMORY
  1808. NULL test4 latin1 SYSTEM VIEW MEMORY
  1809. NULL test4 latin1 SYSTEM VIEW MEMORY
  1810. NULL test4 latin1 SYSTEM VIEW MEMORY
  1811. NULL test4 latin1 SYSTEM VIEW MEMORY
  1812. NULL test4 latin1 SYSTEM VIEW MEMORY
  1813. NULL test4 latin1 SYSTEM VIEW MEMORY
  1814. NULL test4 latin1 SYSTEM VIEW MEMORY
  1815. NULL test4 latin1 SYSTEM VIEW MEMORY
  1816. NULL test4 latin1 SYSTEM VIEW MEMORY
  1817. NULL test4 latin1 SYSTEM VIEW MEMORY
  1818. NULL test4 latin1 SYSTEM VIEW MEMORY
  1819. NULL test4 latin1 SYSTEM VIEW MEMORY
  1820. NULL test4 latin1 SYSTEM VIEW MEMORY
  1821. NULL test4 latin1 SYSTEM VIEW MEMORY
  1822. NULL test4 latin1 SYSTEM VIEW MEMORY
  1823. NULL test4 latin1 SYSTEM VIEW MyISAM
  1824. NULL test4 latin1 SYSTEM VIEW MyISAM
  1825. NULL test4 latin1 SYSTEM VIEW MyISAM
  1826. NULL test4 latin1 SYSTEM VIEW MyISAM
  1827. NULL test4 latin1 SYSTEM VIEW MyISAM
  1828. NULL test4 latin1 SYSTEM VIEW MyISAM
  1829. NULL test4 latin1 SYSTEM VIEW MyISAM
  1830. NULL test4 latin1 SYSTEM VIEW MyISAM
  1831. NULL test4 latin1 SYSTEM VIEW MyISAM
  1832. NULL test4 latin1 SYSTEM VIEW MyISAM
  1833. NULL test4 latin1 VIEW NULL
  1834. NULL test4 latin1 VIEW NULL
  1835. NULL test4 latin1 VIEW NULL
  1836. select * from columns;
  1837. 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
  1838. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1839. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1840. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  1841. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  1842. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1843. NULL information_schema COLLATIONS CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1844. NULL information_schema COLLATIONS ID 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(11) select
  1845. NULL information_schema COLLATIONS IS_DEFAULT 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  1846. NULL information_schema COLLATIONS IS_COMPILED 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  1847. NULL information_schema COLLATIONS SORTLEN 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  1848. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1849. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1850. NULL information_schema COLUMNS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  1851. NULL information_schema COLUMNS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1852. NULL information_schema COLUMNS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1853. NULL information_schema COLUMNS COLUMN_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1854. NULL information_schema COLUMNS ORDINAL_POSITION 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1855. NULL information_schema COLUMNS COLUMN_DEFAULT 6 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  1856. NULL information_schema COLUMNS IS_NULLABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  1857. NULL information_schema COLUMNS DATA_TYPE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1858. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1859. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1860. NULL information_schema COLUMNS NUMERIC_PRECISION 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1861. NULL information_schema COLUMNS NUMERIC_SCALE 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1862. NULL information_schema COLUMNS CHARACTER_SET_NAME 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1863. NULL information_schema COLUMNS COLLATION_NAME 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1864. NULL information_schema COLUMNS COLUMN_TYPE 15 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  1865. NULL information_schema COLUMNS COLUMN_KEY 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  1866. NULL information_schema COLUMNS EXTRA 17 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  1867. NULL information_schema COLUMNS PRIVILEGES 18 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  1868. NULL information_schema COLUMNS COLUMN_COMMENT 19 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  1869. NULL information_schema COLUMN_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  1870. NULL information_schema COLUMN_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  1871. NULL information_schema COLUMN_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1872. NULL information_schema COLUMN_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1873. NULL information_schema COLUMN_PRIVILEGES COLUMN_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1874. NULL information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1875. NULL information_schema COLUMN_PRIVILEGES IS_GRANTABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  1876. NULL information_schema ENGINES ENGINE 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1877. NULL information_schema ENGINES SUPPORT 2 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  1878. NULL information_schema ENGINES COMMENT 3 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  1879. NULL information_schema ENGINES TRANSACTIONS 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  1880. NULL information_schema ENGINES XA 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  1881. NULL information_schema ENGINES SAVEPOINTS 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  1882. NULL information_schema EVENTS EVENT_CATALOG 1 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1883. NULL information_schema EVENTS EVENT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1884. NULL information_schema EVENTS EVENT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1885. NULL information_schema EVENTS DEFINER 4 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  1886. NULL information_schema EVENTS TIME_ZONE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1887. NULL information_schema EVENTS EVENT_BODY 6 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  1888. NULL information_schema EVENTS EVENT_DEFINITION 7 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  1889. NULL information_schema EVENTS EVENT_TYPE 8 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  1890. NULL information_schema EVENTS EXECUTE_AT 9 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  1891. NULL information_schema EVENTS INTERVAL_VALUE 10 NULL YES varchar 256 768 NULL NULL utf8 utf8_general_ci varchar(256) select
  1892. NULL information_schema EVENTS INTERVAL_FIELD 11 NULL YES varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  1893. NULL information_schema EVENTS SQL_MODE 12 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  1894. NULL information_schema EVENTS STARTS 13 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  1895. NULL information_schema EVENTS ENDS 14 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  1896. NULL information_schema EVENTS STATUS 15 NO varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  1897. NULL information_schema EVENTS ON_COMPLETION 16 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  1898. NULL information_schema EVENTS CREATED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  1899. NULL information_schema EVENTS LAST_ALTERED 18 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  1900. NULL information_schema EVENTS LAST_EXECUTED 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  1901. NULL information_schema EVENTS EVENT_COMMENT 20 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1902. NULL information_schema EVENTS ORIGINATOR 21 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  1903. NULL information_schema EVENTS CHARACTER_SET_CLIENT 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  1904. NULL information_schema EVENTS COLLATION_CONNECTION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  1905. NULL information_schema EVENTS DATABASE_COLLATION 24 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  1906. NULL information_schema FILES FILE_ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  1907. NULL information_schema FILES FILE_NAME 2 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1908. NULL information_schema FILES FILE_TYPE 3 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  1909. NULL information_schema FILES TABLESPACE_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1910. NULL information_schema FILES TABLE_CATALOG 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1911. NULL information_schema FILES TABLE_SCHEMA 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1912. NULL information_schema FILES TABLE_NAME 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1913. NULL information_schema FILES LOGFILE_GROUP_NAME 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1914. NULL information_schema FILES LOGFILE_GROUP_NUMBER 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  1915. NULL information_schema FILES ENGINE 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1916. NULL information_schema FILES FULLTEXT_KEYS 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1917. NULL information_schema FILES DELETED_ROWS 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  1918. NULL information_schema FILES UPDATE_COUNT 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  1919. NULL information_schema FILES FREE_EXTENTS 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  1920. NULL information_schema FILES TOTAL_EXTENTS 15 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  1921. NULL information_schema FILES EXTENT_SIZE 16 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  1922. NULL information_schema FILES INITIAL_SIZE 17 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1923. NULL information_schema FILES MAXIMUM_SIZE 18 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1924. NULL information_schema FILES AUTOEXTEND_SIZE 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1925. NULL information_schema FILES CREATION_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  1926. NULL information_schema FILES LAST_UPDATE_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  1927. NULL information_schema FILES LAST_ACCESS_TIME 22 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  1928. NULL information_schema FILES RECOVER_TIME 23 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  1929. NULL information_schema FILES TRANSACTION_COUNTER 24 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  1930. NULL information_schema FILES VERSION 25 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1931. NULL information_schema FILES ROW_FORMAT 26 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  1932. NULL information_schema FILES TABLE_ROWS 27 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1933. NULL information_schema FILES AVG_ROW_LENGTH 28 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1934. NULL information_schema FILES DATA_LENGTH 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1935. NULL information_schema FILES MAX_DATA_LENGTH 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1936. NULL information_schema FILES INDEX_LENGTH 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1937. NULL information_schema FILES DATA_FREE 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1938. NULL information_schema FILES CREATE_TIME 33 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  1939. NULL information_schema FILES UPDATE_TIME 34 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  1940. NULL information_schema FILES CHECK_TIME 35 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  1941. NULL information_schema FILES CHECKSUM 36 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1942. NULL information_schema FILES STATUS 37 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  1943. NULL information_schema FILES EXTRA 38 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  1944. NULL information_schema GLOBAL_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1945. NULL information_schema GLOBAL_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  1946. NULL information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1947. NULL information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  1948. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  1949. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1950. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1951. NULL information_schema KEY_COLUMN_USAGE TABLE_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  1952. NULL information_schema KEY_COLUMN_USAGE TABLE_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1953. NULL information_schema KEY_COLUMN_USAGE TABLE_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1954. NULL information_schema KEY_COLUMN_USAGE COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1955. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  1956. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(10) select
  1957. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1958. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1959. NULL information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME 12 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1960. NULL information_schema PARTITIONS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  1961. NULL information_schema PARTITIONS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1962. NULL information_schema PARTITIONS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1963. NULL information_schema PARTITIONS PARTITION_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1964. NULL information_schema PARTITIONS SUBPARTITION_NAME 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1965. NULL information_schema PARTITIONS PARTITION_ORDINAL_POSITION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1966. NULL information_schema PARTITIONS SUBPARTITION_ORDINAL_POSITION 7 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1967. NULL information_schema PARTITIONS PARTITION_METHOD 8 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  1968. NULL information_schema PARTITIONS SUBPARTITION_METHOD 9 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  1969. NULL information_schema PARTITIONS PARTITION_EXPRESSION 10 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  1970. NULL information_schema PARTITIONS SUBPARTITION_EXPRESSION 11 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  1971. NULL information_schema PARTITIONS PARTITION_DESCRIPTION 12 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  1972. NULL information_schema PARTITIONS TABLE_ROWS 13 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1973. NULL information_schema PARTITIONS AVG_ROW_LENGTH 14 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1974. NULL information_schema PARTITIONS DATA_LENGTH 15 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1975. NULL information_schema PARTITIONS MAX_DATA_LENGTH 16 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1976. NULL information_schema PARTITIONS INDEX_LENGTH 17 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1977. NULL information_schema PARTITIONS DATA_FREE 18 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1978. NULL information_schema PARTITIONS CREATE_TIME 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  1979. NULL information_schema PARTITIONS UPDATE_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  1980. NULL information_schema PARTITIONS CHECK_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  1981. NULL information_schema PARTITIONS CHECKSUM 22 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  1982. NULL information_schema PARTITIONS PARTITION_COMMENT 23 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  1983. NULL information_schema PARTITIONS NODEGROUP 24 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  1984. NULL information_schema PARTITIONS TABLESPACE_NAME 25 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1985. NULL information_schema PLUGINS PLUGIN_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1986. NULL information_schema PLUGINS PLUGIN_VERSION 2 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  1987. NULL information_schema PLUGINS PLUGIN_STATUS 3 NO varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  1988. NULL information_schema PLUGINS PLUGIN_TYPE 4 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  1989. NULL information_schema PLUGINS PLUGIN_TYPE_VERSION 5 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  1990. NULL information_schema PLUGINS PLUGIN_LIBRARY 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1991. NULL information_schema PLUGINS PLUGIN_LIBRARY_VERSION 7 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  1992. NULL information_schema PLUGINS PLUGIN_AUTHOR 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1993. NULL information_schema PLUGINS PLUGIN_DESCRIPTION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  1994. NULL information_schema PLUGINS PLUGIN_LICENSE 10 NULL YES varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  1995. NULL information_schema PROCESSLIST ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  1996. NULL information_schema PROCESSLIST USER 2 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  1997. NULL information_schema PROCESSLIST HOST 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1998. NULL information_schema PROCESSLIST DB 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  1999. NULL information_schema PROCESSLIST COMMAND 5 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  2000. NULL information_schema PROCESSLIST TIME 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(7) select
  2001. NULL information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2002. NULL information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2003. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2004. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2005. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2006. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2007. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2008. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2009. NULL information_schema REFERENTIAL_CONSTRAINTS MATCH_OPTION 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2010. NULL information_schema REFERENTIAL_CONSTRAINTS UPDATE_RULE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2011. NULL information_schema REFERENTIAL_CONSTRAINTS DELETE_RULE 9 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2012. NULL information_schema REFERENTIAL_CONSTRAINTS TABLE_NAME 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2013. NULL information_schema REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME 11 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2014. NULL information_schema ROUTINES SPECIFIC_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2015. NULL information_schema ROUTINES ROUTINE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2016. NULL information_schema ROUTINES ROUTINE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2017. NULL information_schema ROUTINES ROUTINE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2018. NULL information_schema ROUTINES ROUTINE_TYPE 5 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  2019. NULL information_schema ROUTINES DTD_IDENTIFIER 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2020. NULL information_schema ROUTINES ROUTINE_BODY 7 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  2021. NULL information_schema ROUTINES ROUTINE_DEFINITION 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2022. NULL information_schema ROUTINES EXTERNAL_NAME 9 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2023. NULL information_schema ROUTINES EXTERNAL_LANGUAGE 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2024. NULL information_schema ROUTINES PARAMETER_STYLE 11 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  2025. NULL information_schema ROUTINES IS_DETERMINISTIC 12 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2026. NULL information_schema ROUTINES SQL_DATA_ACCESS 13 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2027. NULL information_schema ROUTINES SQL_PATH 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2028. NULL information_schema ROUTINES SECURITY_TYPE 15 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  2029. NULL information_schema ROUTINES CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  2030. NULL information_schema ROUTINES LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  2031. NULL information_schema ROUTINES SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2032. NULL information_schema ROUTINES ROUTINE_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2033. NULL information_schema ROUTINES DEFINER 20 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  2034. NULL information_schema ROUTINES CHARACTER_SET_CLIENT 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2035. NULL information_schema ROUTINES COLLATION_CONNECTION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2036. NULL information_schema ROUTINES DATABASE_COLLATION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2037. NULL information_schema SCHEMATA CATALOG_NAME 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2038. NULL information_schema SCHEMATA SCHEMA_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2039. NULL information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2040. NULL information_schema SCHEMATA DEFAULT_COLLATION_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2041. NULL information_schema SCHEMATA SQL_PATH 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2042. NULL information_schema SCHEMA_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  2043. NULL information_schema SCHEMA_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2044. NULL information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2045. NULL information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2046. NULL information_schema SCHEMA_PRIVILEGES IS_GRANTABLE 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2047. NULL information_schema SESSION_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2048. NULL information_schema SESSION_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  2049. NULL information_schema SESSION_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2050. NULL information_schema SESSION_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  2051. NULL information_schema STATISTICS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2052. NULL information_schema STATISTICS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2053. NULL information_schema STATISTICS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2054. NULL information_schema STATISTICS NON_UNIQUE 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(1) select
  2055. NULL information_schema STATISTICS INDEX_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2056. NULL information_schema STATISTICS INDEX_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2057. NULL information_schema STATISTICS SEQ_IN_INDEX 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(2) select
  2058. NULL information_schema STATISTICS COLUMN_NAME 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2059. NULL information_schema STATISTICS COLLATION 9 NULL YES varchar 1 3 NULL NULL utf8 utf8_general_ci varchar(1) select
  2060. NULL information_schema STATISTICS CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2061. NULL information_schema STATISTICS SUB_PART 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(3) select
  2062. NULL information_schema STATISTICS PACKED 12 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  2063. NULL information_schema STATISTICS NULLABLE 13 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2064. NULL information_schema STATISTICS INDEX_TYPE 14 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  2065. NULL information_schema STATISTICS COMMENT 15 NULL YES varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  2066. NULL information_schema TABLES TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2067. NULL information_schema TABLES TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2068. NULL information_schema TABLES TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2069. NULL information_schema TABLES TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2070. NULL information_schema TABLES ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2071. NULL information_schema TABLES VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2072. NULL information_schema TABLES ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  2073. NULL information_schema TABLES TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2074. NULL information_schema TABLES AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2075. NULL information_schema TABLES DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2076. NULL information_schema TABLES MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2077. NULL information_schema TABLES INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2078. NULL information_schema TABLES DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2079. NULL information_schema TABLES AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2080. NULL information_schema TABLES CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2081. NULL information_schema TABLES UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2082. NULL information_schema TABLES CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2083. NULL information_schema TABLES TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2084. NULL information_schema TABLES CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  2085. NULL information_schema TABLES CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  2086. NULL information_schema TABLES TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  2087. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2088. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2089. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2090. NULL information_schema TABLE_CONSTRAINTS TABLE_SCHEMA 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2091. NULL information_schema TABLE_CONSTRAINTS TABLE_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2092. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2093. NULL information_schema TABLE_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  2094. NULL information_schema TABLE_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2095. NULL information_schema TABLE_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2096. NULL information_schema TABLE_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2097. NULL information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2098. NULL information_schema TABLE_PRIVILEGES IS_GRANTABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2099. NULL information_schema TRIGGERS TRIGGER_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2100. NULL information_schema TRIGGERS TRIGGER_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2101. NULL information_schema TRIGGERS TRIGGER_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2102. NULL information_schema TRIGGERS EVENT_MANIPULATION 4 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  2103. NULL information_schema TRIGGERS EVENT_OBJECT_CATALOG 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2104. NULL information_schema TRIGGERS EVENT_OBJECT_SCHEMA 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2105. NULL information_schema TRIGGERS EVENT_OBJECT_TABLE 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2106. NULL information_schema TRIGGERS ACTION_ORDER 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2107. NULL information_schema TRIGGERS ACTION_CONDITION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2108. NULL information_schema TRIGGERS ACTION_STATEMENT 10 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2109. NULL information_schema TRIGGERS ACTION_ORIENTATION 11 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  2110. NULL information_schema TRIGGERS ACTION_TIMING 12 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  2111. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2112. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2113. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW 15 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2114. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2115. NULL information_schema TRIGGERS CREATED 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2116. NULL information_schema TRIGGERS SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2117. NULL information_schema TRIGGERS DEFINER 19 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2118. NULL information_schema TRIGGERS CHARACTER_SET_CLIENT 20 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2119. NULL information_schema TRIGGERS COLLATION_CONNECTION 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2120. NULL information_schema TRIGGERS DATABASE_COLLATION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2121. NULL information_schema USER_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  2122. NULL information_schema USER_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2123. NULL information_schema USER_PRIVILEGES PRIVILEGE_TYPE 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2124. NULL information_schema USER_PRIVILEGES IS_GRANTABLE 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2125. NULL information_schema VIEWS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2126. NULL information_schema VIEWS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2127. NULL information_schema VIEWS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2128. NULL information_schema VIEWS VIEW_DEFINITION 4 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2129. NULL information_schema VIEWS CHECK_OPTION 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  2130. NULL information_schema VIEWS IS_UPDATABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2131. NULL information_schema VIEWS DEFINER 7 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  2132. NULL information_schema VIEWS SECURITY_TYPE 8 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  2133. NULL information_schema VIEWS CHARACTER_SET_CLIENT 9 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2134. NULL information_schema VIEWS COLLATION_CONNECTION 10 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  2135. NULL db_datadict v1 TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select,insert,update,references
  2136. NULL db_datadict v1 TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2137. NULL db_datadict v1 TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2138. NULL db_datadict v1 TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2139. NULL db_datadict v1 ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2140. NULL db_datadict v1 VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2141. NULL db_datadict v1 ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select,insert,update,references
  2142. NULL db_datadict v1 TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2143. NULL db_datadict v1 AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2144. NULL db_datadict v1 DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2145. NULL db_datadict v1 MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2146. NULL db_datadict v1 INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2147. NULL db_datadict v1 DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2148. NULL db_datadict v1 AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2149. NULL db_datadict v1 CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2150. NULL db_datadict v1 UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2151. NULL db_datadict v1 CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2152. NULL db_datadict v1 TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2153. NULL db_datadict v1 CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select,insert,update,references
  2154. NULL db_datadict v1 CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select,insert,update,references
  2155. NULL db_datadict v1 TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select,insert,update,references
  2156. NULL db_datadict vu u 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select,insert,update,references
  2157. NULL db_datadict vu server 2 NO varchar 243 729 NULL NULL utf8 utf8_general_ci varchar(243) select,insert,update,references
  2158. NULL db_datadict vu Server_Clean 3 NO varchar 243 729 NULL NULL utf8 utf8_general_ci varchar(243) select,insert,update,references
  2159. NULL db_datadict vu1 u 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select,insert,update,references
  2160. NULL mysql user Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2161. NULL mysql user User 2 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  2162. NULL mysql user Password 3 NO char 41 41 NULL NULL latin1 latin1_bin char(41) select,insert,update,references
  2163. NULL mysql user Select_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2164. NULL mysql user Insert_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2165. NULL mysql user Update_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2166. NULL mysql user Delete_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2167. NULL mysql user Create_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2168. NULL mysql user Drop_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2169. NULL mysql user Reload_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2170. NULL mysql user Shutdown_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2171. NULL mysql user Process_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2172. NULL mysql user File_priv 13 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2173. NULL mysql user Grant_priv 14 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2174. NULL mysql user References_priv 15 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2175. NULL mysql user Index_priv 16 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2176. NULL mysql user Alter_priv 17 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2177. 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
  2178. NULL mysql user Super_priv 19 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2179. 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
  2180. 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
  2181. NULL mysql user Execute_priv 22 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2182. 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
  2183. 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
  2184. 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
  2185. 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
  2186. 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
  2187. 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
  2188. 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
  2189. NULL mysql user Event_priv 30 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2190. NULL mysql user Trigger_priv 31 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2191. NULL mysql user ssl_type 32 NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('','ANY','X509','SPECIFIED') select,insert,update,references
  2192. NULL mysql user ssl_cipher 33 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2193. NULL mysql user x509_issuer 34 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2194. NULL mysql user x509_subject 35 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2195. NULL mysql user max_questions 36 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  2196. NULL mysql user max_updates 37 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  2197. NULL mysql user max_connections 38 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  2198. NULL mysql user max_user_connections 39 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  2199. NULL mysql columns_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2200. NULL mysql columns_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2201. NULL mysql columns_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  2202. NULL mysql columns_priv Table_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2203. NULL mysql columns_priv Column_name 5 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2204. NULL mysql columns_priv Timestamp 6 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2205. 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
  2206. NULL mysql db Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2207. NULL mysql db Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2208. NULL mysql db User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  2209. NULL mysql db Select_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2210. NULL mysql db Insert_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2211. NULL mysql db Update_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2212. NULL mysql db Delete_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2213. NULL mysql db Create_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2214. NULL mysql db Drop_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2215. NULL mysql db Grant_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2216. NULL mysql db References_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2217. NULL mysql db Index_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2218. NULL mysql db Alter_priv 13 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2219. 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
  2220. 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
  2221. 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
  2222. 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
  2223. 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
  2224. 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
  2225. NULL mysql db Execute_priv 20 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2226. NULL mysql db Event_priv 21 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2227. NULL mysql db Trigger_priv 22 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2228. NULL mysql event db 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2229. NULL mysql event name 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  2230. NULL mysql event body 3 NULL NO longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2231. NULL mysql event definer 4 NO char 77 231 NULL NULL utf8 utf8_bin char(77) select,insert,update,references
  2232. NULL mysql event execute_at 5 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2233. NULL mysql event interval_value 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2234. 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
  2235. NULL mysql event created 8 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2236. NULL mysql event modified 9 0000-00-00 00:00:00 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2237. NULL mysql event last_executed 10 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2238. NULL mysql event starts 11 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2239. NULL mysql event ends 12 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2240. 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
  2241. NULL mysql event on_completion 14 DROP NO enum 8 24 NULL NULL utf8 utf8_general_ci enum('DROP','PRESERVE') select,insert,update,references
  2242. 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
  2243. NULL mysql event comment 16 NO char 64 192 NULL NULL utf8 utf8_bin char(64) select,insert,update,references
  2244. NULL mysql event originator 17 NULL NO int NULL NULL 10 0 NULL NULL int(10) select,insert,update,references
  2245. NULL mysql event time_zone 18 SYSTEM NO char 64 64 NULL NULL latin1 latin1_swedish_ci char(64) select,insert,update,references
  2246. NULL mysql event character_set_client 19 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  2247. NULL mysql event collation_connection 20 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  2248. NULL mysql event db_collation 21 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  2249. NULL mysql event body_utf8 22 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2250. NULL mysql func name 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2251. NULL mysql func ret 2 0 NO tinyint NULL NULL 3 0 NULL NULL tinyint(1) select,insert,update,references
  2252. NULL mysql func dl 3 NO char 128 384 NULL NULL utf8 utf8_bin char(128) select,insert,update,references
  2253. NULL mysql func type 4 NULL NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('function','aggregate') select,insert,update,references
  2254. NULL mysql general_log event_time 1 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2255. NULL mysql general_log user_host 2 NULL YES mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  2256. NULL mysql general_log thread_id 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2257. NULL mysql general_log server_id 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2258. NULL mysql general_log command_type 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2259. NULL mysql general_log argument 6 NULL YES mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  2260. 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
  2261. NULL mysql help_category name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  2262. NULL mysql help_category parent_category_id 3 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  2263. NULL mysql help_category url 4 NULL NO char 128 384 NULL NULL utf8 utf8_general_ci char(128) select,insert,update,references
  2264. 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
  2265. NULL mysql help_keyword name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  2266. 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
  2267. 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
  2268. 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
  2269. NULL mysql help_topic name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  2270. NULL mysql help_topic help_category_id 3 NULL NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  2271. NULL mysql help_topic description 4 NULL NO text 65535 65535 NULL NULL utf8 utf8_general_ci text select,insert,update,references
  2272. NULL mysql help_topic example 5 NULL NO text 65535 65535 NULL NULL utf8 utf8_general_ci text select,insert,update,references
  2273. NULL mysql help_topic url 6 NULL NO char 128 384 NULL NULL utf8 utf8_general_ci char(128) select,insert,update,references
  2274. NULL mysql host Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2275. NULL mysql host Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2276. NULL mysql host Select_priv 3 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2277. NULL mysql host Insert_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2278. NULL mysql host Update_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2279. NULL mysql host Delete_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2280. NULL mysql host Create_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2281. NULL mysql host Drop_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2282. NULL mysql host Grant_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2283. NULL mysql host References_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2284. NULL mysql host Index_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2285. NULL mysql host Alter_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2286. 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
  2287. 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
  2288. 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
  2289. 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
  2290. 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
  2291. 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
  2292. NULL mysql host Execute_priv 19 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2293. NULL mysql host Trigger_priv 20 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2294. NULL mysql ndb_apply_status server_id 1 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  2295. NULL mysql ndb_apply_status epoch 2 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2296. NULL mysql ndb_apply_status log_name 3 NULL NO varchar 255 255 NULL NULL latin1 latin1_bin varchar(255) select,insert,update,references
  2297. NULL mysql ndb_apply_status start_pos 4 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2298. NULL mysql ndb_apply_status end_pos 5 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2299. NULL mysql ndb_binlog_index Position 1 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2300. NULL mysql ndb_binlog_index File 2 NULL NO varchar 255 255 NULL NULL latin1 latin1_swedish_ci varchar(255) select,insert,update,references
  2301. NULL mysql ndb_binlog_index epoch 3 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned PRI select,insert,update,references
  2302. NULL mysql ndb_binlog_index inserts 4 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2303. NULL mysql ndb_binlog_index updates 5 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2304. NULL mysql ndb_binlog_index deletes 6 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2305. NULL mysql ndb_binlog_index schemaops 7 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2306. NULL mysql plugin name 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2307. NULL mysql plugin dl 2 NO char 128 384 NULL NULL utf8 utf8_bin char(128) select,insert,update,references
  2308. NULL mysql proc db 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2309. NULL mysql proc name 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  2310. NULL mysql proc type 3 NULL NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('FUNCTION','PROCEDURE') PRI select,insert,update,references
  2311. NULL mysql proc specific_name 4 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2312. NULL mysql proc language 5 SQL NO enum 3 9 NULL NULL utf8 utf8_general_ci enum('SQL') select,insert,update,references
  2313. 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
  2314. NULL mysql proc is_deterministic 7 NO NO enum 3 9 NULL NULL utf8 utf8_general_ci enum('YES','NO') select,insert,update,references
  2315. NULL mysql proc security_type 8 DEFINER NO enum 7 21 NULL NULL utf8 utf8_general_ci enum('INVOKER','DEFINER') select,insert,update,references
  2316. NULL mysql proc param_list 9 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2317. NULL mysql proc returns 10 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2318. NULL mysql proc body 11 NULL NO longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2319. NULL mysql proc definer 12 NO char 77 231 NULL NULL utf8 utf8_bin char(77) select,insert,update,references
  2320. NULL mysql proc created 13 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2321. NULL mysql proc modified 14 0000-00-00 00:00:00 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2322. 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
  2323. NULL mysql proc comment 16 NO char 64 192 NULL NULL utf8 utf8_bin char(64) select,insert,update,references
  2324. NULL mysql proc character_set_client 17 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  2325. NULL mysql proc collation_connection 18 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  2326. NULL mysql proc db_collation 19 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  2327. NULL mysql proc body_utf8 20 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2328. NULL mysql procs_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2329. NULL mysql procs_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2330. NULL mysql procs_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  2331. NULL mysql procs_priv Routine_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2332. 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
  2333. NULL mysql procs_priv Grantor 6 NO char 77 231 NULL NULL utf8 utf8_bin char(77) MUL select,insert,update,references
  2334. 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
  2335. NULL mysql procs_priv Timestamp 8 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2336. NULL mysql servers Server_name 1 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  2337. NULL mysql servers Host 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2338. NULL mysql servers Db 3 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2339. NULL mysql servers Username 4 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2340. NULL mysql servers Password 5 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2341. NULL mysql servers Port 6 0 NO int NULL NULL 10 0 NULL NULL int(4) select,insert,update,references
  2342. NULL mysql servers Socket 7 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2343. NULL mysql servers Wrapper 8 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2344. NULL mysql servers Owner 9 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2345. NULL mysql slow_log start_time 1 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2346. NULL mysql slow_log user_host 2 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  2347. NULL mysql slow_log query_time 3 NULL NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  2348. NULL mysql slow_log lock_time 4 NULL NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  2349. NULL mysql slow_log rows_sent 5 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2350. NULL mysql slow_log rows_examined 6 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2351. NULL mysql slow_log db 7 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select,insert,update,references
  2352. NULL mysql slow_log last_insert_id 8 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2353. NULL mysql slow_log insert_id 9 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2354. NULL mysql slow_log server_id 10 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2355. NULL mysql slow_log sql_text 11 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  2356. NULL mysql tables_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2357. NULL mysql tables_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2358. NULL mysql tables_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  2359. NULL mysql tables_priv Table_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2360. NULL mysql tables_priv Grantor 5 NO char 77 231 NULL NULL utf8 utf8_bin char(77) MUL select,insert,update,references
  2361. NULL mysql tables_priv Timestamp 6 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2362. 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
  2363. 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
  2364. 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
  2365. 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
  2366. 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
  2367. NULL mysql time_zone_leap_second Correction 2 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2368. 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
  2369. 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
  2370. 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
  2371. NULL mysql time_zone_transition Transition_time 2 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) PRI select,insert,update,references
  2372. 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
  2373. 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
  2374. 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
  2375. NULL mysql time_zone_transition_type Offset 3 0 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2376. 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
  2377. NULL mysql time_zone_transition_type Abbreviation 5 NO char 8 24 NULL NULL utf8 utf8_general_ci char(8) select,insert,update,references
  2378. NULL test t1 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2379. NULL test t1 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2380. NULL test t1 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2381. NULL test t1 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2382. NULL test t1 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2383. NULL test t1 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2384. NULL test t10 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2385. NULL test t10 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2386. NULL test t10 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2387. NULL test t10 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2388. NULL test t10 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2389. NULL test t10 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2390. NULL test t11 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2391. NULL test t11 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2392. NULL test t11 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2393. NULL test t11 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2394. NULL test t11 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2395. NULL test t11 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2396. NULL test t2 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2397. NULL test t2 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2398. NULL test t2 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2399. NULL test t2 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2400. NULL test t2 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2401. NULL test t2 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2402. NULL test t3 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2403. NULL test t3 f2 2 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2404. NULL test t3 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2405. NULL test t4 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2406. NULL test t4 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2407. NULL test t4 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2408. NULL test t4 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2409. NULL test t4 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2410. NULL test t4 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2411. NULL test t7 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2412. NULL test t7 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2413. NULL test t7 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2414. NULL test t7 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2415. NULL test t8 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2416. NULL test t8 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2417. NULL test t8 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2418. NULL test t8 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2419. NULL test t9 f1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2420. NULL test t9 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2421. NULL test t9 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2422. NULL test tb1 f1 1 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  2423. NULL test tb1 f2 2 NULL YES char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  2424. NULL test tb1 f3 3 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  2425. NULL test tb1 f4 4 NULL YES tinytext 127 255 NULL NULL ucs2 ucs2_general_ci tinytext select,insert,update,references
  2426. NULL test tb1 f5 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  2427. NULL test tb1 f6 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  2428. NULL test tb1 f7 7 NULL YES longtext 4294967295 4294967295 NULL NULL latin1 latin1_swedish_ci longtext select,insert,update,references
  2429. NULL test tb1 f8 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  2430. NULL test tb1 f9 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2431. NULL test tb1 f10 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  2432. NULL test tb1 f11 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2433. NULL test tb1 f12 12 NULL YES binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  2434. NULL test tb1 f13 13 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  2435. NULL test tb1 f14 14 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  2436. NULL test tb1 f15 15 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  2437. NULL test tb1 f16 16 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  2438. NULL test tb1 f17 17 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  2439. NULL test tb1 f18 18 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  2440. NULL test tb1 f19 19 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  2441. NULL test tb1 f20 20 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  2442. NULL test tb1 f21 21 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  2443. NULL test tb1 f22 22 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  2444. NULL test tb1 f23 23 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  2445. NULL test tb1 f24 24 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  2446. NULL test tb1 f25 25 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2447. NULL test tb1 f26 26 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  2448. NULL test tb1 f27 27 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  2449. NULL test tb1 f28 28 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  2450. NULL test tb1 f29 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  2451. NULL test tb1 f30 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2452. NULL test tb1 f31 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  2453. NULL test tb1 f32 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  2454. NULL test tb1 f33 33 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2455. NULL test tb1 f34 34 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2456. NULL test tb1 f35 35 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2457. NULL test tb1 f36 36 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2458. NULL test tb1 f37 37 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2459. NULL test tb1 f38 38 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  2460. NULL test tb1 f39 39 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2461. NULL test tb1 f40 40 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  2462. NULL test tb1 f41 41 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2463. NULL test tb1 f42 42 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2464. NULL test tb1 f43 43 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2465. NULL test tb1 f44 44 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2466. NULL test tb1 f45 45 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2467. NULL test tb1 f46 46 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  2468. NULL test tb1 f47 47 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2469. NULL test tb1 f48 48 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  2470. NULL test tb1 f49 49 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2471. NULL test tb1 f50 50 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2472. NULL test tb1 f51 51 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2473. NULL test tb1 f52 52 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2474. NULL test tb1 f53 53 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2475. NULL test tb1 f54 54 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2476. NULL test tb1 f55 55 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2477. NULL test tb1 f56 56 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2478. NULL test tb1 f57 57 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2479. NULL test tb1 f58 58 99 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  2480. NULL test tb2 f59 1 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2481. NULL test tb2 f60 2 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  2482. NULL test tb2 f61 3 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2483. NULL test tb2 f62 4 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2484. NULL test tb2 f63 5 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2485. NULL test tb2 f64 6 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2486. NULL test tb2 f65 7 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2487. NULL test tb2 f66 8 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  2488. NULL test tb2 f67 9 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2489. NULL test tb2 f68 10 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  2490. NULL test tb2 f69 11 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2491. NULL test tb2 f70 12 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2492. NULL test tb2 f71 13 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2493. NULL test tb2 f72 14 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2494. NULL test tb2 f73 15 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  2495. NULL test tb2 f74 16 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  2496. NULL test tb2 f75 17 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2497. NULL test tb2 f76 18 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2498. NULL test tb2 f77 19 7.7 YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  2499. NULL test tb2 f78 20 7.7 YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  2500. NULL test tb2 f79 21 00000000000000000007.7 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2501. NULL test tb2 f80 22 00000000000000000008.8 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2502. NULL test tb2 f81 23 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2503. NULL test tb2 f82 24 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2504. NULL test tb2 f83 25 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2505. NULL test tb2 f84 26 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2506. NULL test tb2 f85 27 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2507. NULL test tb2 f86 28 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2508. NULL test tb2 f87 29 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2509. NULL test tb2 f88 30 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2510. NULL test tb2 f89 31 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2511. NULL test tb2 f90 32 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2512. NULL test tb2 f91 33 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2513. NULL test tb2 f92 34 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2514. NULL test tb2 f93 35 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2515. NULL test tb2 f94 36 8.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  2516. NULL test tb2 f95 37 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2517. NULL test tb2 f96 38 8.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  2518. NULL test tb2 f97 39 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2519. NULL test tb2 f98 40 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2520. NULL test tb2 f99 41 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2521. NULL test tb2 f100 42 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2522. NULL test tb2 f101 43 2000-01-01 NO date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2523. NULL test tb2 f102 44 00:00:20 NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  2524. NULL test tb2 f103 45 0002-02-02 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2525. NULL test tb2 f104 46 2000-12-31 23:59:59 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2526. NULL test tb2 f105 47 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  2527. NULL test tb2 f106 48 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  2528. NULL test tb2 f107 49 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  2529. NULL test tb2 f108 50 1enum NO enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  2530. NULL test tb2 f109 51 1set NO set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  2531. NULL test tb2 f110 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  2532. NULL test tb2 f111 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  2533. NULL test tb2 f112 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  2534. NULL test tb2 f113 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  2535. NULL test tb2 f114 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  2536. NULL test tb2 f115 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  2537. NULL test tb2 f116 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  2538. NULL test tb2 f117 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  2539. NULL test tb3 f118 1 a NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  2540. NULL test tb3 f119 2  NO char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  2541. NULL test tb3 f120 3  NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  2542. NULL test tb3 f121 4 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  2543. NULL test tb3 f122 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  2544. NULL test tb3 f123 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  2545. NULL test tb3 f124 7 NULL YES longtext 2147483647 4294967295 NULL NULL ucs2 ucs2_general_ci longtext select,insert,update,references
  2546. NULL test tb3 f125 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  2547. NULL test tb3 f126 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2548. NULL test tb3 f127 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  2549. NULL test tb3 f128 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2550. NULL test tb3 f129 12  NO binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  2551. NULL test tb3 f130 13 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  2552. NULL test tb3 f131 14 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  2553. NULL test tb3 f132 15 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  2554. NULL test tb3 f133 16 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  2555. NULL test tb3 f134 17 999 NO smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  2556. NULL test tb3 f135 18 999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  2557. NULL test tb3 f136 19 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  2558. NULL test tb3 f137 20 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  2559. NULL test tb3 f138 21 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  2560. NULL test tb3 f139 22 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  2561. NULL test tb3 f140 23 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  2562. NULL test tb3 f141 24 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  2563. NULL test tb3 f142 25 99999 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2564. NULL test tb3 f143 26 99999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  2565. NULL test tb3 f144 27 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  2566. NULL test tb3 f145 28 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  2567. NULL test tb3 f146 29 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  2568. NULL test tb3 f147 30 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2569. NULL test tb3 f148 31 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  2570. NULL test tb3 f149 32 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  2571. NULL test tb3 f150 33 1000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2572. NULL test tb3 f151 34 999 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2573. NULL test tb3 f152 35 0000001000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2574. NULL test tb3 f153 36 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2575. NULL test tb3 f154 37 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2576. NULL test tb3 f155 38 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  2577. NULL test tb3 f156 39 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2578. NULL test tb3 f157 40 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  2579. NULL test tb3 f158 41 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2580. NULL test tb3 f159 42 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2581. NULL test tb3 f160 43 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2582. NULL test tb3 f161 44 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2583. NULL test tb3 f162 45 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2584. NULL test tb3 f163 46 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  2585. NULL test tb3 f164 47 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2586. NULL test tb3 f165 48 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  2587. NULL test tb3 f166 49 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2588. NULL test tb3 f167 50 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2589. NULL test tb3 f168 51 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2590. NULL test tb3 f169 52 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2591. NULL test tb3 f170 53 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2592. NULL test tb3 f171 54 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2593. NULL test tb3 f172 55 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2594. NULL test tb3 f173 56 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2595. NULL test tb3 f174 57 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2596. NULL test tb3 f175 58 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  2597. NULL test tb4 f176 1 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2598. NULL test tb4 f177 2 9 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  2599. NULL test tb4 f178 3 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2600. NULL test tb4 f179 4 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2601. NULL test tb4 f180 5 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2602. NULL test tb4 f181 6 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2603. NULL test tb4 f182 7 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2604. NULL test tb4 f183 8 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  2605. NULL test tb4 f184 9 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2606. NULL test tb4 f185 10 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  2607. NULL test tb4 f186 11 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2608. NULL test tb4 f187 12 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2609. NULL test tb4 f188 13 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2610. NULL test tb4 f189 14 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2611. NULL test tb4 f190 15 88.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  2612. NULL test tb4 f191 16 88.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  2613. NULL test tb4 f192 17 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2614. NULL test tb4 f193 18 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2615. NULL test tb4 f194 19 55.5 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  2616. NULL test tb4 f195 20 55.5 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  2617. NULL test tb4 f196 21 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2618. NULL test tb4 f197 22 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2619. NULL test tb4 f198 23 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2620. NULL test tb4 f199 24 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2621. NULL test tb4 f200 25 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2622. NULL test tb4 f201 26 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2623. NULL test tb4 f202 27 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2624. NULL test tb4 f203 28 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2625. NULL test tb4 f204 29 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2626. NULL test tb4 f205 30 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2627. NULL test tb4 f206 31 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2628. NULL test tb4 f207 32 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2629. NULL test tb4 f208 33 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2630. NULL test tb4 f209 34 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2631. NULL test tb4 f210 35 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2632. NULL test tb4 f211 36 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  2633. NULL test tb4 f212 37 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2634. NULL test tb4 f213 38 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  2635. NULL test tb4 f214 39 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2636. NULL test tb4 f215 40 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2637. NULL test tb4 f216 41 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2638. NULL test tb4 f217 42 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2639. NULL test tb4 f218 43 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2640. NULL test tb4 f219 44 NULL YES time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  2641. NULL test tb4 f220 45 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2642. NULL test tb4 f221 46 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2643. NULL test tb4 f222 47 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  2644. NULL test tb4 f223 48 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  2645. NULL test tb4 f224 49 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  2646. NULL test tb4 f225 50 NULL YES enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  2647. NULL test tb4 f226 51 NULL YES set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  2648. NULL test tb4 f227 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  2649. NULL test tb4 f228 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  2650. NULL test tb4 f229 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  2651. NULL test tb4 f230 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  2652. NULL test tb4 f231 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  2653. NULL test tb4 f232 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  2654. NULL test tb4 f233 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  2655. NULL test tb4 f234 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  2656. NULL test tb4 f235 60 NULL YES char 255 510 NULL NULL ucs2 ucs2_general_ci char(255) select,insert,update,references
  2657. NULL test tb4 f236 61 NULL YES char 60 60 NULL NULL latin1 latin1_swedish_ci char(60) select,insert,update,references
  2658. NULL test tb4 f237 62 NULL YES char 255 255 NULL NULL latin1 latin1_bin char(255) select,insert,update,references
  2659. NULL test tb4 f238 63 NULL YES varchar 0 0 NULL NULL latin1 latin1_bin varchar(0) select,insert,update,references
  2660. NULL test tb4 f239 64 NULL YES varbinary 1000 1000 NULL NULL NULL NULL varbinary(1000) select,insert,update,references
  2661. NULL test tb4 f240 65 NULL YES varchar 120 240 NULL NULL ucs2 ucs2_general_ci varchar(120) select,insert,update,references
  2662. NULL test tb4 f241 66 NULL YES char 100 200 NULL NULL ucs2 ucs2_general_ci char(100) select,insert,update,references
  2663. NULL test tb4 f242 67 NULL YES bit NULL NULL 30 NULL NULL NULL bit(30) select,insert,update,references
  2664. NULL test4 t6 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2665. NULL test4 t6 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2666. NULL test4 t6 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2667. NULL test4 t6 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2668. NULL test4 t6 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2669. NULL test4 t6 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2670. select * from character_sets;
  2671. CHARACTER_SET_NAME DEFAULT_COLLATE_NAME DESCRIPTION MAXLEN
  2672. big5 big5_chinese_ci Big5 Traditional Chinese 2
  2673. dec8 dec8_swedish_ci DEC West European 1
  2674. cp850 cp850_general_ci DOS West European 1
  2675. hp8 hp8_english_ci HP West European 1
  2676. koi8r koi8r_general_ci KOI8-R Relcom Russian 1
  2677. latin1 latin1_swedish_ci cp1252 West European 1
  2678. latin2 latin2_general_ci ISO 8859-2 Central European 1
  2679. swe7 swe7_swedish_ci 7bit Swedish 1
  2680. ascii ascii_general_ci US ASCII 1
  2681. ujis ujis_japanese_ci EUC-JP Japanese 3
  2682. sjis sjis_japanese_ci Shift-JIS Japanese 2
  2683. hebrew hebrew_general_ci ISO 8859-8 Hebrew 1
  2684. tis620 tis620_thai_ci TIS620 Thai 1
  2685. euckr euckr_korean_ci EUC-KR Korean 2
  2686. koi8u koi8u_general_ci KOI8-U Ukrainian 1
  2687. gb2312 gb2312_chinese_ci GB2312 Simplified Chinese 2
  2688. greek greek_general_ci ISO 8859-7 Greek 1
  2689. cp1250 cp1250_general_ci Windows Central European 1
  2690. gbk gbk_chinese_ci GBK Simplified Chinese 2
  2691. latin5 latin5_turkish_ci ISO 8859-9 Turkish 1
  2692. armscii8 armscii8_general_ci ARMSCII-8 Armenian 1
  2693. utf8 utf8_general_ci UTF-8 Unicode 3
  2694. ucs2 ucs2_general_ci UCS-2 Unicode 2
  2695. cp866 cp866_general_ci DOS Russian 1
  2696. keybcs2 keybcs2_general_ci DOS Kamenicky Czech-Slovak 1
  2697. macce macce_general_ci Mac Central European 1
  2698. macroman macroman_general_ci Mac West European 1
  2699. cp852 cp852_general_ci DOS Central European 1
  2700. latin7 latin7_general_ci ISO 8859-13 Baltic 1
  2701. cp1251 cp1251_general_ci Windows Cyrillic 1
  2702. cp1256 cp1256_general_ci Windows Arabic 1
  2703. cp1257 cp1257_general_ci Windows Baltic 1
  2704. binary binary Binary pseudo charset 1
  2705. geostd8 geostd8_general_ci GEOSTD8 Georgian 1
  2706. cp932 cp932_japanese_ci SJIS for Windows Japanese 2
  2707. eucjpms eucjpms_japanese_ci UJIS for Windows Japanese 3
  2708. select sum(id) from collations;
  2709. sum(id)
  2710. 11094
  2711. select collation_name, character_set_name into @x,@y
  2712. from collation_character_set_applicability limit 1;
  2713. select @x, @y;
  2714. @x @y
  2715. big5_chinese_ci big5
  2716. select * from routines;
  2717. 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
  2718. sp_1 NULL db_datadict sp_1 PROCEDURE NULL SQL BEGIN
  2719. SELECT * FROM db_datadict.v1;
  2720. 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
  2721. select count(*) from routines;
  2722. count(*)
  2723. 1
  2724. select * from statistics
  2725. where not (table_schema = 'mysql' and table_name like 'help_%');
  2726. 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
  2727. NULL mysql user 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  2728. NULL mysql user 0 mysql PRIMARY 2 User A 3 NULL NULL BTREE
  2729. NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  2730. NULL mysql columns_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  2731. NULL mysql columns_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  2732. NULL mysql columns_priv 0 mysql PRIMARY 4 Table_name A NULL NULL NULL BTREE
  2733. NULL mysql columns_priv 0 mysql PRIMARY 5 Column_name A 0 NULL NULL BTREE
  2734. NULL mysql db 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  2735. NULL mysql db 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  2736. NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
  2737. NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
  2738. NULL mysql event 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
  2739. NULL mysql event 0 mysql PRIMARY 2 name A 0 NULL NULL BTREE
  2740. NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
  2741. NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  2742. NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
  2743. NULL mysql ndb_apply_status 0 mysql PRIMARY 1 server_id NULL 0 NULL NULL HASH
  2744. NULL mysql ndb_binlog_index 0 mysql PRIMARY 1 epoch A 0 NULL NULL BTREE
  2745. NULL mysql plugin 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
  2746. NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
  2747. NULL mysql proc 0 mysql PRIMARY 2 name A NULL NULL NULL BTREE
  2748. NULL mysql proc 0 mysql PRIMARY 3 type A 1 NULL NULL BTREE
  2749. NULL mysql procs_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  2750. NULL mysql procs_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  2751. NULL mysql procs_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  2752. NULL mysql procs_priv 0 mysql PRIMARY 4 Routine_name A NULL NULL NULL BTREE
  2753. NULL mysql procs_priv 0 mysql PRIMARY 5 Routine_type A 0 NULL NULL BTREE
  2754. NULL mysql procs_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
  2755. NULL mysql servers 0 mysql PRIMARY 1 Server_name A 0 NULL NULL BTREE
  2756. NULL mysql tables_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  2757. NULL mysql tables_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  2758. NULL mysql tables_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  2759. NULL mysql tables_priv 0 mysql PRIMARY 4 Table_name A 0 NULL NULL BTREE
  2760. NULL mysql tables_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
  2761. NULL mysql time_zone 0 mysql PRIMARY 1 Time_zone_id A 5 NULL NULL BTREE
  2762. NULL mysql time_zone_leap_second 0 mysql PRIMARY 1 Transition_time A 22 NULL NULL BTREE
  2763. NULL mysql time_zone_name 0 mysql PRIMARY 1 Name A 6 NULL NULL BTREE
  2764. NULL mysql time_zone_transition 0 mysql PRIMARY 1 Time_zone_id A NULL NULL NULL BTREE
  2765. NULL mysql time_zone_transition 0 mysql PRIMARY 2 Transition_time A 393 NULL NULL BTREE
  2766. NULL mysql time_zone_transition_type 0 mysql PRIMARY 1 Time_zone_id A NULL NULL NULL BTREE
  2767. NULL mysql time_zone_transition_type 0 mysql PRIMARY 2 Transition_type_id A 31 NULL NULL BTREE
  2768. select * from views;
  2769. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE CHARACTER_SET_CLIENT COLLATION_CONNECTION
  2770. NULL db_datadict v1 SELECT * FROM information_schema.tables NONE NO root@localhost DEFINER latin1 latin1_swedish_ci
  2771. NULL db_datadict vu SELECT DISTINCT u, NONE NO root@localhost DEFINER latin1 latin1_swedish_ci
  2772. NULL db_datadict vu1 SELECT grantee AS u NONE NO root@localhost DEFINER latin1 latin1_swedish_ci
  2773. select * from user_privileges order by grantee, privilege_type;
  2774. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  2775. 'root'@'127.0.0.1' NULL ALTER YES
  2776. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  2777. 'root'@'127.0.0.1' NULL CREATE YES
  2778. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  2779. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  2780. 'root'@'127.0.0.1' NULL CREATE USER YES
  2781. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  2782. 'root'@'127.0.0.1' NULL DELETE YES
  2783. 'root'@'127.0.0.1' NULL DROP YES
  2784. 'root'@'127.0.0.1' NULL EVENT YES
  2785. 'root'@'127.0.0.1' NULL EXECUTE YES
  2786. 'root'@'127.0.0.1' NULL FILE YES
  2787. 'root'@'127.0.0.1' NULL INDEX YES
  2788. 'root'@'127.0.0.1' NULL INSERT YES
  2789. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  2790. 'root'@'127.0.0.1' NULL PROCESS YES
  2791. 'root'@'127.0.0.1' NULL REFERENCES YES
  2792. 'root'@'127.0.0.1' NULL RELOAD YES
  2793. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  2794. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  2795. 'root'@'127.0.0.1' NULL SELECT YES
  2796. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  2797. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  2798. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  2799. 'root'@'127.0.0.1' NULL SUPER YES
  2800. 'root'@'127.0.0.1' NULL TRIGGER YES
  2801. 'root'@'127.0.0.1' NULL UPDATE YES
  2802. 'root'@'<SERVER_NAME>' NULL ALTER YES
  2803. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  2804. 'root'@'<SERVER_NAME>' NULL CREATE YES
  2805. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  2806. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  2807. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  2808. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  2809. 'root'@'<SERVER_NAME>' NULL DELETE YES
  2810. 'root'@'<SERVER_NAME>' NULL DROP YES
  2811. 'root'@'<SERVER_NAME>' NULL EVENT YES
  2812. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  2813. 'root'@'<SERVER_NAME>' NULL FILE YES
  2814. 'root'@'<SERVER_NAME>' NULL INDEX YES
  2815. 'root'@'<SERVER_NAME>' NULL INSERT YES
  2816. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  2817. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  2818. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  2819. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  2820. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  2821. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  2822. 'root'@'<SERVER_NAME>' NULL SELECT YES
  2823. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  2824. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  2825. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  2826. 'root'@'<SERVER_NAME>' NULL SUPER YES
  2827. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  2828. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  2829. 'root'@'localhost' NULL ALTER YES
  2830. 'root'@'localhost' NULL ALTER ROUTINE YES
  2831. 'root'@'localhost' NULL CREATE YES
  2832. 'root'@'localhost' NULL CREATE ROUTINE YES
  2833. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  2834. 'root'@'localhost' NULL CREATE USER YES
  2835. 'root'@'localhost' NULL CREATE VIEW YES
  2836. 'root'@'localhost' NULL DELETE YES
  2837. 'root'@'localhost' NULL DROP YES
  2838. 'root'@'localhost' NULL EVENT YES
  2839. 'root'@'localhost' NULL EXECUTE YES
  2840. 'root'@'localhost' NULL FILE YES
  2841. 'root'@'localhost' NULL INDEX YES
  2842. 'root'@'localhost' NULL INSERT YES
  2843. 'root'@'localhost' NULL LOCK TABLES YES
  2844. 'root'@'localhost' NULL PROCESS YES
  2845. 'root'@'localhost' NULL REFERENCES YES
  2846. 'root'@'localhost' NULL RELOAD YES
  2847. 'root'@'localhost' NULL REPLICATION CLIENT YES
  2848. 'root'@'localhost' NULL REPLICATION SLAVE YES
  2849. 'root'@'localhost' NULL SELECT YES
  2850. 'root'@'localhost' NULL SHOW DATABASES YES
  2851. 'root'@'localhost' NULL SHOW VIEW YES
  2852. 'root'@'localhost' NULL SHUTDOWN YES
  2853. 'root'@'localhost' NULL SUPER YES
  2854. 'root'@'localhost' NULL TRIGGER YES
  2855. 'root'@'localhost' NULL UPDATE YES
  2856. select * from schema_privileges;
  2857. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  2858. ''@'%' NULL test SELECT NO
  2859. ''@'%' NULL test INSERT NO
  2860. ''@'%' NULL test UPDATE NO
  2861. ''@'%' NULL test DELETE NO
  2862. ''@'%' NULL test CREATE NO
  2863. ''@'%' NULL test DROP NO
  2864. ''@'%' NULL test REFERENCES NO
  2865. ''@'%' NULL test INDEX NO
  2866. ''@'%' NULL test ALTER NO
  2867. ''@'%' NULL test CREATE TEMPORARY TABLES NO
  2868. ''@'%' NULL test LOCK TABLES NO
  2869. ''@'%' NULL test CREATE VIEW NO
  2870. ''@'%' NULL test SHOW VIEW NO
  2871. ''@'%' NULL test CREATE ROUTINE NO
  2872. ''@'%' NULL test EVENT NO
  2873. ''@'%' NULL test TRIGGER NO
  2874. ''@'%' NULL test\_% SELECT NO
  2875. ''@'%' NULL test\_% INSERT NO
  2876. ''@'%' NULL test\_% UPDATE NO
  2877. ''@'%' NULL test\_% DELETE NO
  2878. ''@'%' NULL test\_% CREATE NO
  2879. ''@'%' NULL test\_% DROP NO
  2880. ''@'%' NULL test\_% REFERENCES NO
  2881. ''@'%' NULL test\_% INDEX NO
  2882. ''@'%' NULL test\_% ALTER NO
  2883. ''@'%' NULL test\_% CREATE TEMPORARY TABLES NO
  2884. ''@'%' NULL test\_% LOCK TABLES NO
  2885. ''@'%' NULL test\_% CREATE VIEW NO
  2886. ''@'%' NULL test\_% SHOW VIEW NO
  2887. ''@'%' NULL test\_% CREATE ROUTINE NO
  2888. ''@'%' NULL test\_% EVENT NO
  2889. ''@'%' NULL test\_% TRIGGER NO
  2890. select * from table_privileges;
  2891. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  2892. select * from column_privileges;
  2893. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  2894. select * from table_constraints;
  2895. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  2896. NULL mysql PRIMARY mysql user PRIMARY KEY
  2897. NULL mysql PRIMARY mysql columns_priv PRIMARY KEY
  2898. NULL mysql PRIMARY mysql db PRIMARY KEY
  2899. NULL mysql PRIMARY mysql event PRIMARY KEY
  2900. NULL mysql PRIMARY mysql func PRIMARY KEY
  2901. NULL mysql PRIMARY mysql help_category PRIMARY KEY
  2902. NULL mysql name mysql help_category UNIQUE
  2903. NULL mysql PRIMARY mysql help_keyword PRIMARY KEY
  2904. NULL mysql name mysql help_keyword UNIQUE
  2905. NULL mysql PRIMARY mysql help_relation PRIMARY KEY
  2906. NULL mysql PRIMARY mysql help_topic PRIMARY KEY
  2907. NULL mysql name mysql help_topic UNIQUE
  2908. NULL mysql PRIMARY mysql host PRIMARY KEY
  2909. NULL mysql PRIMARY mysql ndb_apply_status PRIMARY KEY
  2910. NULL mysql PRIMARY mysql ndb_binlog_index PRIMARY KEY
  2911. NULL mysql PRIMARY mysql plugin PRIMARY KEY
  2912. NULL mysql PRIMARY mysql proc PRIMARY KEY
  2913. NULL mysql PRIMARY mysql procs_priv PRIMARY KEY
  2914. NULL mysql PRIMARY mysql servers PRIMARY KEY
  2915. NULL mysql PRIMARY mysql tables_priv PRIMARY KEY
  2916. NULL mysql PRIMARY mysql time_zone PRIMARY KEY
  2917. NULL mysql PRIMARY mysql time_zone_leap_second PRIMARY KEY
  2918. NULL mysql PRIMARY mysql time_zone_name PRIMARY KEY
  2919. NULL mysql PRIMARY mysql time_zone_transition PRIMARY KEY
  2920. NULL mysql PRIMARY mysql time_zone_transition_type PRIMARY KEY
  2921. select * from key_column_usage;
  2922. 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
  2923. NULL mysql PRIMARY NULL mysql user Host 1 NULL NULL NULL NULL
  2924. NULL mysql PRIMARY NULL mysql user User 2 NULL NULL NULL NULL
  2925. NULL mysql PRIMARY NULL mysql columns_priv Host 1 NULL NULL NULL NULL
  2926. NULL mysql PRIMARY NULL mysql columns_priv Db 2 NULL NULL NULL NULL
  2927. NULL mysql PRIMARY NULL mysql columns_priv User 3 NULL NULL NULL NULL
  2928. NULL mysql PRIMARY NULL mysql columns_priv Table_name 4 NULL NULL NULL NULL
  2929. NULL mysql PRIMARY NULL mysql columns_priv Column_name 5 NULL NULL NULL NULL
  2930. NULL mysql PRIMARY NULL mysql db Host 1 NULL NULL NULL NULL
  2931. NULL mysql PRIMARY NULL mysql db Db 2 NULL NULL NULL NULL
  2932. NULL mysql PRIMARY NULL mysql db User 3 NULL NULL NULL NULL
  2933. NULL mysql PRIMARY NULL mysql event db 1 NULL NULL NULL NULL
  2934. NULL mysql PRIMARY NULL mysql event name 2 NULL NULL NULL NULL
  2935. NULL mysql PRIMARY NULL mysql func name 1 NULL NULL NULL NULL
  2936. NULL mysql PRIMARY NULL mysql help_category help_category_id 1 NULL NULL NULL NULL
  2937. NULL mysql name NULL mysql help_category name 1 NULL NULL NULL NULL
  2938. NULL mysql PRIMARY NULL mysql help_keyword help_keyword_id 1 NULL NULL NULL NULL
  2939. NULL mysql name NULL mysql help_keyword name 1 NULL NULL NULL NULL
  2940. NULL mysql PRIMARY NULL mysql help_relation help_keyword_id 1 NULL NULL NULL NULL
  2941. NULL mysql PRIMARY NULL mysql help_relation help_topic_id 2 NULL NULL NULL NULL
  2942. NULL mysql PRIMARY NULL mysql help_topic help_topic_id 1 NULL NULL NULL NULL
  2943. NULL mysql name NULL mysql help_topic name 1 NULL NULL NULL NULL
  2944. NULL mysql PRIMARY NULL mysql host Host 1 NULL NULL NULL NULL
  2945. NULL mysql PRIMARY NULL mysql host Db 2 NULL NULL NULL NULL
  2946. NULL mysql PRIMARY NULL mysql ndb_apply_status server_id 1 NULL NULL NULL NULL
  2947. NULL mysql PRIMARY NULL mysql ndb_binlog_index epoch 1 NULL NULL NULL NULL
  2948. NULL mysql PRIMARY NULL mysql plugin name 1 NULL NULL NULL NULL
  2949. NULL mysql PRIMARY NULL mysql proc db 1 NULL NULL NULL NULL
  2950. NULL mysql PRIMARY NULL mysql proc name 2 NULL NULL NULL NULL
  2951. NULL mysql PRIMARY NULL mysql proc type 3 NULL NULL NULL NULL
  2952. NULL mysql PRIMARY NULL mysql procs_priv Host 1 NULL NULL NULL NULL
  2953. NULL mysql PRIMARY NULL mysql procs_priv Db 2 NULL NULL NULL NULL
  2954. NULL mysql PRIMARY NULL mysql procs_priv User 3 NULL NULL NULL NULL
  2955. NULL mysql PRIMARY NULL mysql procs_priv Routine_name 4 NULL NULL NULL NULL
  2956. NULL mysql PRIMARY NULL mysql procs_priv Routine_type 5 NULL NULL NULL NULL
  2957. NULL mysql PRIMARY NULL mysql servers Server_name 1 NULL NULL NULL NULL
  2958. NULL mysql PRIMARY NULL mysql tables_priv Host 1 NULL NULL NULL NULL
  2959. NULL mysql PRIMARY NULL mysql tables_priv Db 2 NULL NULL NULL NULL
  2960. NULL mysql PRIMARY NULL mysql tables_priv User 3 NULL NULL NULL NULL
  2961. NULL mysql PRIMARY NULL mysql tables_priv Table_name 4 NULL NULL NULL NULL
  2962. NULL mysql PRIMARY NULL mysql time_zone Time_zone_id 1 NULL NULL NULL NULL
  2963. NULL mysql PRIMARY NULL mysql time_zone_leap_second Transition_time 1 NULL NULL NULL NULL
  2964. NULL mysql PRIMARY NULL mysql time_zone_name Name 1 NULL NULL NULL NULL
  2965. NULL mysql PRIMARY NULL mysql time_zone_transition Time_zone_id 1 NULL NULL NULL NULL
  2966. NULL mysql PRIMARY NULL mysql time_zone_transition Transition_time 2 NULL NULL NULL NULL
  2967. NULL mysql PRIMARY NULL mysql time_zone_transition_type Time_zone_id 1 NULL NULL NULL NULL
  2968. NULL mysql PRIMARY NULL mysql time_zone_transition_type Transition_type_id 2 NULL NULL NULL NULL
  2969. select count(*) as max_recs from key_column_usage;
  2970. max_recs
  2971. 46
  2972. select max(cardinality) from statistics
  2973. where not (table_schema = 'mysql' and table_name like 'help_%');
  2974. max(cardinality)
  2975. 393
  2976. select concat("View '",
  2977. table_name, "' is associated with the database '", table_schema, "'.")
  2978. AS "Who is Who for the Views"
  2979. from views;
  2980. Who is Who for the Views
  2981. View 'v1' is associated with the database 'db_datadict'.
  2982. View 'vu' is associated with the database 'db_datadict'.
  2983. View 'vu1' is associated with the database 'db_datadict'.
  2984. select concat("Table or view '", table_name,
  2985. "' is associated with the database '", table_schema, "'.") as "Who is Who"
  2986. from tables;
  2987. Who is Who
  2988. Table or view 'CHARACTER_SETS' is associated with the database 'information_schema'.
  2989. Table or view 'COLLATIONS' is associated with the database 'information_schema'.
  2990. Table or view 'COLLATION_CHARACTER_SET_APPLICABILITY' is associated with the database 'information_schema'.
  2991. Table or view 'COLUMNS' is associated with the database 'information_schema'.
  2992. Table or view 'COLUMN_PRIVILEGES' is associated with the database 'information_schema'.
  2993. Table or view 'ENGINES' is associated with the database 'information_schema'.
  2994. Table or view 'EVENTS' is associated with the database 'information_schema'.
  2995. Table or view 'FILES' is associated with the database 'information_schema'.
  2996. Table or view 'GLOBAL_STATUS' is associated with the database 'information_schema'.
  2997. Table or view 'GLOBAL_VARIABLES' is associated with the database 'information_schema'.
  2998. Table or view 'KEY_COLUMN_USAGE' is associated with the database 'information_schema'.
  2999. Table or view 'PARTITIONS' is associated with the database 'information_schema'.
  3000. Table or view 'PLUGINS' is associated with the database 'information_schema'.
  3001. Table or view 'PROCESSLIST' is associated with the database 'information_schema'.
  3002. Table or view 'REFERENTIAL_CONSTRAINTS' is associated with the database 'information_schema'.
  3003. Table or view 'ROUTINES' is associated with the database 'information_schema'.
  3004. Table or view 'SCHEMATA' is associated with the database 'information_schema'.
  3005. Table or view 'SCHEMA_PRIVILEGES' is associated with the database 'information_schema'.
  3006. Table or view 'SESSION_STATUS' is associated with the database 'information_schema'.
  3007. Table or view 'SESSION_VARIABLES' is associated with the database 'information_schema'.
  3008. Table or view 'STATISTICS' is associated with the database 'information_schema'.
  3009. Table or view 'TABLES' is associated with the database 'information_schema'.
  3010. Table or view 'TABLE_CONSTRAINTS' is associated with the database 'information_schema'.
  3011. Table or view 'TABLE_PRIVILEGES' is associated with the database 'information_schema'.
  3012. Table or view 'TRIGGERS' is associated with the database 'information_schema'.
  3013. Table or view 'USER_PRIVILEGES' is associated with the database 'information_schema'.
  3014. Table or view 'VIEWS' is associated with the database 'information_schema'.
  3015. Table or view 'v1' is associated with the database 'db_datadict'.
  3016. Table or view 'vu' is associated with the database 'db_datadict'.
  3017. Table or view 'vu1' is associated with the database 'db_datadict'.
  3018. Table or view 'user' is associated with the database 'mysql'.
  3019. Table or view 'columns_priv' is associated with the database 'mysql'.
  3020. Table or view 'db' is associated with the database 'mysql'.
  3021. Table or view 'event' is associated with the database 'mysql'.
  3022. Table or view 'func' is associated with the database 'mysql'.
  3023. Table or view 'general_log' is associated with the database 'mysql'.
  3024. Table or view 'help_category' is associated with the database 'mysql'.
  3025. Table or view 'help_keyword' is associated with the database 'mysql'.
  3026. Table or view 'help_relation' is associated with the database 'mysql'.
  3027. Table or view 'help_topic' is associated with the database 'mysql'.
  3028. Table or view 'host' is associated with the database 'mysql'.
  3029. Table or view 'ndb_apply_status' is associated with the database 'mysql'.
  3030. Table or view 'ndb_binlog_index' is associated with the database 'mysql'.
  3031. Table or view 'plugin' is associated with the database 'mysql'.
  3032. Table or view 'proc' is associated with the database 'mysql'.
  3033. Table or view 'procs_priv' is associated with the database 'mysql'.
  3034. Table or view 'servers' is associated with the database 'mysql'.
  3035. Table or view 'slow_log' is associated with the database 'mysql'.
  3036. Table or view 'tables_priv' is associated with the database 'mysql'.
  3037. Table or view 'time_zone' is associated with the database 'mysql'.
  3038. Table or view 'time_zone_leap_second' is associated with the database 'mysql'.
  3039. Table or view 'time_zone_name' is associated with the database 'mysql'.
  3040. Table or view 'time_zone_transition' is associated with the database 'mysql'.
  3041. Table or view 'time_zone_transition_type' is associated with the database 'mysql'.
  3042. Table or view 't1' is associated with the database 'test'.
  3043. Table or view 't10' is associated with the database 'test'.
  3044. Table or view 't11' is associated with the database 'test'.
  3045. Table or view 't2' is associated with the database 'test'.
  3046. Table or view 't3' is associated with the database 'test'.
  3047. Table or view 't4' is associated with the database 'test'.
  3048. Table or view 't7' is associated with the database 'test'.
  3049. Table or view 't8' is associated with the database 'test'.
  3050. Table or view 't9' is associated with the database 'test'.
  3051. Table or view 'tb1' is associated with the database 'test'.
  3052. Table or view 'tb2' is associated with the database 'test'.
  3053. Table or view 'tb3' is associated with the database 'test'.
  3054. Table or view 'tb4' is associated with the database 'test'.
  3055. Table or view 't6' is associated with the database 'test4'.
  3056. select grantee as "user's having select privilege",
  3057. substring( grantee, length(SUBSTRING_INDEX(grantee,_utf8'@',1))+2 )
  3058. from user_privileges where privilege_type = 'select'
  3059. order by grantee;
  3060. user's having select privilege substring( grantee, length(SUBSTRING_INDEX(grantee,_utf8'@',1))+2 )
  3061. 'root'@'127.0.0.1' '127.0.0.1'
  3062. 'root'@'<SERVER_NAME>' '<SERVER_NAME>'
  3063. 'root'@'localhost' 'localhost'
  3064. select all table_schema from schema_privileges limit 0,5;
  3065. table_schema
  3066. test
  3067. test
  3068. test
  3069. test
  3070. test
  3071. select distinct(privilege_type) from table_privileges;
  3072. privilege_type
  3073. select * from column_privileges
  3074. group by table_schema having table_schema = 'db_datadict';
  3075. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  3076. select * from table_constraints limit 0,5;
  3077. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  3078. NULL mysql PRIMARY mysql user PRIMARY KEY
  3079. NULL mysql PRIMARY mysql columns_priv PRIMARY KEY
  3080. NULL mysql PRIMARY mysql db PRIMARY KEY
  3081. NULL mysql PRIMARY mysql event PRIMARY KEY
  3082. NULL mysql PRIMARY mysql func PRIMARY KEY
  3083. select count(*) as max_recs from key_column_usage limit 0,5;
  3084. max_recs
  3085. 46
  3086. select information_schema.tables.table_name as "table name",
  3087. count(distinct(column_name)) as "no of columns in the table"
  3088. from information_schema.tables left outer join information_schema.columns on
  3089. information_schema.tables.table_name = information_schema.columns.table_name
  3090. group by information_schema.tables.table_name;
  3091. table name no of columns in the table
  3092. CHARACTER_SETS 4
  3093. COLLATIONS 6
  3094. COLLATION_CHARACTER_SET_APPLICABILITY 2
  3095. COLUMNS 19
  3096. columns_priv 7
  3097. COLUMN_PRIVILEGES 7
  3098. db 22
  3099. ENGINES 6
  3100. event 22
  3101. EVENTS 24
  3102. FILES 38
  3103. func 4
  3104. general_log 6
  3105. GLOBAL_STATUS 2
  3106. GLOBAL_VARIABLES 2
  3107. help_category 4
  3108. help_keyword 2
  3109. help_relation 2
  3110. help_topic 6
  3111. host 20
  3112. KEY_COLUMN_USAGE 12
  3113. ndb_apply_status 5
  3114. ndb_binlog_index 7
  3115. PARTITIONS 25
  3116. plugin 2
  3117. PLUGINS 10
  3118. proc 20
  3119. PROCESSLIST 8
  3120. procs_priv 8
  3121. REFERENTIAL_CONSTRAINTS 11
  3122. ROUTINES 23
  3123. SCHEMATA 5
  3124. SCHEMA_PRIVILEGES 5
  3125. servers 9
  3126. SESSION_STATUS 2
  3127. SESSION_VARIABLES 2
  3128. slow_log 11
  3129. STATISTICS 15
  3130. t1 6
  3131. t10 6
  3132. t11 6
  3133. t2 6
  3134. t3 3
  3135. t4 6
  3136. t6 6
  3137. t7 4
  3138. t8 4
  3139. t9 3
  3140. TABLES 21
  3141. tables_priv 8
  3142. TABLE_CONSTRAINTS 6
  3143. TABLE_PRIVILEGES 6
  3144. tb1 58
  3145. tb2 59
  3146. tb3 58
  3147. tb4 67
  3148. time_zone 2
  3149. time_zone_leap_second 2
  3150. time_zone_name 2
  3151. time_zone_transition 3
  3152. time_zone_transition_type 5
  3153. TRIGGERS 22
  3154. user 39
  3155. USER_PRIVILEGES 4
  3156. v1 21
  3157. VIEWS 10
  3158. vu 3
  3159. vu1 1
  3160. root: simple select to check all - and never forget some - tables
  3161. -----------------------------------------------------------------
  3162. SELECT * FROM schemata LIMIT 1;
  3163. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  3164. NULL information_schema utf8 utf8_general_ci NULL
  3165. SELECT * FROM tables LIMIT 1;
  3166. 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
  3167. 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#
  3168. SELECT * FROM columns LIMIT 1;
  3169. 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
  3170. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  3171. SELECT * FROM character_sets LIMIT 1;
  3172. CHARACTER_SET_NAME DEFAULT_COLLATE_NAME DESCRIPTION MAXLEN
  3173. big5 big5_chinese_ci Big5 Traditional Chinese 2
  3174. SELECT * FROM collations LIMIT 1;
  3175. COLLATION_NAME CHARACTER_SET_NAME ID IS_DEFAULT IS_COMPILED SORTLEN
  3176. big5_chinese_ci big5 1 Yes Yes 1
  3177. SELECT * FROM collation_character_set_applicability LIMIT 1;
  3178. COLLATION_NAME CHARACTER_SET_NAME
  3179. big5_chinese_ci big5
  3180. SELECT * FROM routines LIMIT 1;
  3181. 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
  3182. sp_1 NULL db_datadict sp_1 PROCEDURE NULL SQL BEGIN
  3183. SELECT * FROM db_datadict.v1;
  3184. END NULL NULL SQL NO CONTAINS SQL NULL DEFINER <Created> <Last_Altered> root@localhost latin1 latin1_swedish_ci latin1_swedish_ci
  3185. SELECT * FROM statistics LIMIT 1;
  3186. 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
  3187. NULL mysql user 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  3188. SELECT * FROM views LIMIT 1;
  3189. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE CHARACTER_SET_CLIENT COLLATION_CONNECTION
  3190. NULL db_datadict v1 SELECT * FROM information_schema.tables NONE NO root@localhost DEFINER latin1 latin1_swedish_ci
  3191. SELECT * FROM user_privileges LIMIT 1;
  3192. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  3193. 'root'@'localhost' NULL SELECT YES
  3194. SELECT * FROM schema_privileges LIMIT 1;
  3195. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  3196. ''@'%' NULL test SELECT NO
  3197. SELECT * FROM table_privileges LIMIT 1;
  3198. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  3199. SELECT * FROM column_privileges LIMIT 1;
  3200. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  3201. SELECT * FROM table_constraints LIMIT 1;
  3202. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  3203. NULL mysql PRIMARY mysql user PRIMARY KEY
  3204. SELECT * FROM key_column_usage LIMIT 1;
  3205. 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
  3206. NULL mysql PRIMARY NULL mysql user Host 1 NULL NULL NULL NULL
  3207. SELECT * FROM triggers LIMIT 1;
  3208. 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
  3209. SELECT * FROM parameters LIMIT 1;
  3210. ERROR 42S02: Unknown table 'parameters' in information_schema
  3211. SELECT * FROM referential_constraints LIMIT 1;
  3212. 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
  3213. use db_datadict;
  3214. select * from schemata;
  3215. ERROR 42S02: Table 'db_datadict.schemata' doesn't exist
  3216. select * from tables;
  3217. ERROR 42S02: Table 'db_datadict.tables' doesn't exist
  3218. select s.catalog_name, s.schema_name, s.default_character_set_name,
  3219. t.table_type, t.engine
  3220. from schemata s inner join tables t
  3221. ORDER BY s.catalog_name, s.schema_name, s.default_character_set_name;
  3222. ERROR 42S02: Table 'db_datadict.schemata' doesn't exist
  3223. select * from columns limit 0, 5;
  3224. ERROR 42S02: Table 'db_datadict.columns' doesn't exist
  3225. select * from character_sets limit 0, 5;
  3226. ERROR 42S02: Table 'db_datadict.character_sets' doesn't exist
  3227. select * from collations limit 0, 5;
  3228. ERROR 42S02: Table 'db_datadict.collations' doesn't exist
  3229. select * from collation_character_set_applicability limit 0, 5;
  3230. ERROR 42S02: Table 'db_datadict.collation_character_set_applicability' doesn't exist
  3231. select * from routines limit 0, 5;
  3232. ERROR 42S02: Table 'db_datadict.routines' doesn't exist
  3233. select * from statistics limit 0, 5;
  3234. ERROR 42S02: Table 'db_datadict.statistics' doesn't exist
  3235. select * from views limit 0, 5;
  3236. ERROR 42S02: Table 'db_datadict.views' doesn't exist
  3237. select * from user_privileges limit 0, 5;
  3238. ERROR 42S02: Table 'db_datadict.user_privileges' doesn't exist
  3239. select * from schema_privileges limit 0, 5;
  3240. ERROR 42S02: Table 'db_datadict.schema_privileges' doesn't exist
  3241. select * from table_privileges limit 0, 5;
  3242. ERROR 42S02: Table 'db_datadict.table_privileges' doesn't exist
  3243. select * from column_privileges limit 0, 5;
  3244. ERROR 42S02: Table 'db_datadict.column_privileges' doesn't exist
  3245. select * from table_constraints limit 0, 5;
  3246. ERROR 42S02: Table 'db_datadict.table_constraints' doesn't exist
  3247. select * from key_column_usage limit 0, 5;
  3248. ERROR 42S02: Table 'db_datadict.key_column_usage' doesn't exist
  3249. will fail due to missing database name
  3250. --------------------------------------
  3251. known error 1146:
  3252. -----------------
  3253. SELECT * FROM schemata ;
  3254. ERROR 42S02: Table 'db_datadict.schemata' doesn't exist
  3255. SELECT * FROM tables ;
  3256. ERROR 42S02: Table 'db_datadict.tables' doesn't exist
  3257. SELECT * FROM columns ;
  3258. ERROR 42S02: Table 'db_datadict.columns' doesn't exist
  3259. SELECT * FROM character_sets ;
  3260. ERROR 42S02: Table 'db_datadict.character_sets' doesn't exist
  3261. SELECT * FROM collations ;
  3262. ERROR 42S02: Table 'db_datadict.collations' doesn't exist
  3263. SELECT * FROM collation_character_set_applicability ;
  3264. ERROR 42S02: Table 'db_datadict.collation_character_set_applicability' doesn't exist
  3265. SELECT * FROM routines ;
  3266. ERROR 42S02: Table 'db_datadict.routines' doesn't exist
  3267. SELECT * FROM statistics ;
  3268. ERROR 42S02: Table 'db_datadict.statistics' doesn't exist
  3269. SELECT * FROM views ;
  3270. ERROR 42S02: Table 'db_datadict.views' doesn't exist
  3271. SELECT * FROM user_privileges ;
  3272. ERROR 42S02: Table 'db_datadict.user_privileges' doesn't exist
  3273. SELECT * FROM schema_privileges ;
  3274. ERROR 42S02: Table 'db_datadict.schema_privileges' doesn't exist
  3275. SELECT * FROM table_privileges ;
  3276. ERROR 42S02: Table 'db_datadict.table_privileges' doesn't exist
  3277. SELECT * FROM column_privileges ;
  3278. ERROR 42S02: Table 'db_datadict.column_privileges' doesn't exist
  3279. SELECT * FROM table_constraints ;
  3280. ERROR 42S02: Table 'db_datadict.table_constraints' doesn't exist
  3281. SELECT * FROM key_column_usage ;
  3282. ERROR 42S02: Table 'db_datadict.key_column_usage' doesn't exist
  3283. SELECT * FROM triggers ;
  3284. ERROR 42S02: Table 'db_datadict.triggers' doesn't exist
  3285. select * from information_schema.schemata ORDER BY 2 DESC;
  3286. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  3287. NULL test4 latin1 latin1_swedish_ci NULL
  3288. NULL test1 latin1 latin1_swedish_ci NULL
  3289. NULL test latin1 latin1_swedish_ci NULL
  3290. NULL mysql latin1 latin1_swedish_ci NULL
  3291. NULL information_schema utf8 utf8_general_ci NULL
  3292. NULL db_datadict latin1 latin1_swedish_ci NULL
  3293. SELECT * FROM information_schema.tables
  3294. WHERE table_schema = 'information_schema';
  3295. TABLE_CATALOG NULL
  3296. TABLE_SCHEMA information_schema
  3297. TABLE_NAME CHARACTER_SETS
  3298. TABLE_TYPE SYSTEM VIEW
  3299. ENGINE MEMORY
  3300. VERSION 10
  3301. ROW_FORMAT Fixed
  3302. TABLE_ROWS NULL
  3303. AVG_ROW_LENGTH #ARL#
  3304. DATA_LENGTH #DL#
  3305. MAX_DATA_LENGTH #MDL#
  3306. INDEX_LENGTH #IL#
  3307. DATA_FREE #DF#
  3308. AUTO_INCREMENT NULL
  3309. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3310. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3311. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3312. TABLE_COLLATION utf8_general_ci
  3313. CHECKSUM NULL
  3314. CREATE_OPTIONS #CO#
  3315. TABLE_COMMENT
  3316. TABLE_CATALOG NULL
  3317. TABLE_SCHEMA information_schema
  3318. TABLE_NAME COLLATIONS
  3319. TABLE_TYPE SYSTEM VIEW
  3320. ENGINE MEMORY
  3321. VERSION 10
  3322. ROW_FORMAT Fixed
  3323. TABLE_ROWS NULL
  3324. AVG_ROW_LENGTH #ARL#
  3325. DATA_LENGTH #DL#
  3326. MAX_DATA_LENGTH #MDL#
  3327. INDEX_LENGTH #IL#
  3328. DATA_FREE #DF#
  3329. AUTO_INCREMENT NULL
  3330. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3331. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3332. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3333. TABLE_COLLATION utf8_general_ci
  3334. CHECKSUM NULL
  3335. CREATE_OPTIONS #CO#
  3336. TABLE_COMMENT
  3337. TABLE_CATALOG NULL
  3338. TABLE_SCHEMA information_schema
  3339. TABLE_NAME COLLATION_CHARACTER_SET_APPLICABILITY
  3340. TABLE_TYPE SYSTEM VIEW
  3341. ENGINE MEMORY
  3342. VERSION 10
  3343. ROW_FORMAT Fixed
  3344. TABLE_ROWS NULL
  3345. AVG_ROW_LENGTH #ARL#
  3346. DATA_LENGTH #DL#
  3347. MAX_DATA_LENGTH #MDL#
  3348. INDEX_LENGTH #IL#
  3349. DATA_FREE #DF#
  3350. AUTO_INCREMENT NULL
  3351. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3352. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3353. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3354. TABLE_COLLATION utf8_general_ci
  3355. CHECKSUM NULL
  3356. CREATE_OPTIONS #CO#
  3357. TABLE_COMMENT
  3358. TABLE_CATALOG NULL
  3359. TABLE_SCHEMA information_schema
  3360. TABLE_NAME COLUMNS
  3361. TABLE_TYPE SYSTEM VIEW
  3362. ENGINE MyISAM
  3363. VERSION 10
  3364. ROW_FORMAT Dynamic
  3365. TABLE_ROWS NULL
  3366. AVG_ROW_LENGTH #ARL#
  3367. DATA_LENGTH #DL#
  3368. MAX_DATA_LENGTH #MDL#
  3369. INDEX_LENGTH #IL#
  3370. DATA_FREE #DF#
  3371. AUTO_INCREMENT NULL
  3372. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3373. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3374. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3375. TABLE_COLLATION utf8_general_ci
  3376. CHECKSUM NULL
  3377. CREATE_OPTIONS #CO#
  3378. TABLE_COMMENT
  3379. TABLE_CATALOG NULL
  3380. TABLE_SCHEMA information_schema
  3381. TABLE_NAME COLUMN_PRIVILEGES
  3382. TABLE_TYPE SYSTEM VIEW
  3383. ENGINE MEMORY
  3384. VERSION 10
  3385. ROW_FORMAT Fixed
  3386. TABLE_ROWS NULL
  3387. AVG_ROW_LENGTH #ARL#
  3388. DATA_LENGTH #DL#
  3389. MAX_DATA_LENGTH #MDL#
  3390. INDEX_LENGTH #IL#
  3391. DATA_FREE #DF#
  3392. AUTO_INCREMENT NULL
  3393. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3394. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3395. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3396. TABLE_COLLATION utf8_general_ci
  3397. CHECKSUM NULL
  3398. CREATE_OPTIONS #CO#
  3399. TABLE_COMMENT
  3400. TABLE_CATALOG NULL
  3401. TABLE_SCHEMA information_schema
  3402. TABLE_NAME ENGINES
  3403. TABLE_TYPE SYSTEM VIEW
  3404. ENGINE MEMORY
  3405. VERSION 10
  3406. ROW_FORMAT Fixed
  3407. TABLE_ROWS NULL
  3408. AVG_ROW_LENGTH #ARL#
  3409. DATA_LENGTH #DL#
  3410. MAX_DATA_LENGTH #MDL#
  3411. INDEX_LENGTH #IL#
  3412. DATA_FREE #DF#
  3413. AUTO_INCREMENT NULL
  3414. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3415. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3416. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3417. TABLE_COLLATION utf8_general_ci
  3418. CHECKSUM NULL
  3419. CREATE_OPTIONS #CO#
  3420. TABLE_COMMENT
  3421. TABLE_CATALOG NULL
  3422. TABLE_SCHEMA information_schema
  3423. TABLE_NAME EVENTS
  3424. TABLE_TYPE SYSTEM VIEW
  3425. ENGINE MyISAM
  3426. VERSION 10
  3427. ROW_FORMAT Dynamic
  3428. TABLE_ROWS NULL
  3429. AVG_ROW_LENGTH #ARL#
  3430. DATA_LENGTH #DL#
  3431. MAX_DATA_LENGTH #MDL#
  3432. INDEX_LENGTH #IL#
  3433. DATA_FREE #DF#
  3434. AUTO_INCREMENT NULL
  3435. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3436. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3437. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3438. TABLE_COLLATION utf8_general_ci
  3439. CHECKSUM NULL
  3440. CREATE_OPTIONS #CO#
  3441. TABLE_COMMENT
  3442. TABLE_CATALOG NULL
  3443. TABLE_SCHEMA information_schema
  3444. TABLE_NAME FILES
  3445. TABLE_TYPE SYSTEM VIEW
  3446. ENGINE MEMORY
  3447. VERSION 10
  3448. ROW_FORMAT Fixed
  3449. TABLE_ROWS NULL
  3450. AVG_ROW_LENGTH #ARL#
  3451. DATA_LENGTH #DL#
  3452. MAX_DATA_LENGTH #MDL#
  3453. INDEX_LENGTH #IL#
  3454. DATA_FREE #DF#
  3455. AUTO_INCREMENT NULL
  3456. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3457. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3458. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3459. TABLE_COLLATION utf8_general_ci
  3460. CHECKSUM NULL
  3461. CREATE_OPTIONS #CO#
  3462. TABLE_COMMENT
  3463. TABLE_CATALOG NULL
  3464. TABLE_SCHEMA information_schema
  3465. TABLE_NAME GLOBAL_STATUS
  3466. TABLE_TYPE SYSTEM VIEW
  3467. ENGINE MEMORY
  3468. VERSION 10
  3469. ROW_FORMAT Fixed
  3470. TABLE_ROWS NULL
  3471. AVG_ROW_LENGTH #ARL#
  3472. DATA_LENGTH #DL#
  3473. MAX_DATA_LENGTH #MDL#
  3474. INDEX_LENGTH #IL#
  3475. DATA_FREE #DF#
  3476. AUTO_INCREMENT NULL
  3477. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3478. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3479. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3480. TABLE_COLLATION utf8_general_ci
  3481. CHECKSUM NULL
  3482. CREATE_OPTIONS #CO#
  3483. TABLE_COMMENT
  3484. TABLE_CATALOG NULL
  3485. TABLE_SCHEMA information_schema
  3486. TABLE_NAME GLOBAL_VARIABLES
  3487. TABLE_TYPE SYSTEM VIEW
  3488. ENGINE MEMORY
  3489. VERSION 10
  3490. ROW_FORMAT Fixed
  3491. TABLE_ROWS NULL
  3492. AVG_ROW_LENGTH #ARL#
  3493. DATA_LENGTH #DL#
  3494. MAX_DATA_LENGTH #MDL#
  3495. INDEX_LENGTH #IL#
  3496. DATA_FREE #DF#
  3497. AUTO_INCREMENT NULL
  3498. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3499. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3500. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3501. TABLE_COLLATION utf8_general_ci
  3502. CHECKSUM NULL
  3503. CREATE_OPTIONS #CO#
  3504. TABLE_COMMENT
  3505. TABLE_CATALOG NULL
  3506. TABLE_SCHEMA information_schema
  3507. TABLE_NAME KEY_COLUMN_USAGE
  3508. TABLE_TYPE SYSTEM VIEW
  3509. ENGINE MEMORY
  3510. VERSION 10
  3511. ROW_FORMAT Fixed
  3512. TABLE_ROWS NULL
  3513. AVG_ROW_LENGTH #ARL#
  3514. DATA_LENGTH #DL#
  3515. MAX_DATA_LENGTH #MDL#
  3516. INDEX_LENGTH #IL#
  3517. DATA_FREE #DF#
  3518. AUTO_INCREMENT NULL
  3519. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3520. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3521. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3522. TABLE_COLLATION utf8_general_ci
  3523. CHECKSUM NULL
  3524. CREATE_OPTIONS #CO#
  3525. TABLE_COMMENT
  3526. TABLE_CATALOG NULL
  3527. TABLE_SCHEMA information_schema
  3528. TABLE_NAME PARTITIONS
  3529. TABLE_TYPE SYSTEM VIEW
  3530. ENGINE MyISAM
  3531. VERSION 10
  3532. ROW_FORMAT Dynamic
  3533. TABLE_ROWS NULL
  3534. AVG_ROW_LENGTH #ARL#
  3535. DATA_LENGTH #DL#
  3536. MAX_DATA_LENGTH #MDL#
  3537. INDEX_LENGTH #IL#
  3538. DATA_FREE #DF#
  3539. AUTO_INCREMENT NULL
  3540. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3541. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3542. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3543. TABLE_COLLATION utf8_general_ci
  3544. CHECKSUM NULL
  3545. CREATE_OPTIONS #CO#
  3546. TABLE_COMMENT
  3547. TABLE_CATALOG NULL
  3548. TABLE_SCHEMA information_schema
  3549. TABLE_NAME PLUGINS
  3550. TABLE_TYPE SYSTEM VIEW
  3551. ENGINE MyISAM
  3552. VERSION 10
  3553. ROW_FORMAT Dynamic
  3554. TABLE_ROWS NULL
  3555. AVG_ROW_LENGTH #ARL#
  3556. DATA_LENGTH #DL#
  3557. MAX_DATA_LENGTH #MDL#
  3558. INDEX_LENGTH #IL#
  3559. DATA_FREE #DF#
  3560. AUTO_INCREMENT NULL
  3561. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3562. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3563. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3564. TABLE_COLLATION utf8_general_ci
  3565. CHECKSUM NULL
  3566. CREATE_OPTIONS #CO#
  3567. TABLE_COMMENT
  3568. TABLE_CATALOG NULL
  3569. TABLE_SCHEMA information_schema
  3570. TABLE_NAME PROCESSLIST
  3571. TABLE_TYPE SYSTEM VIEW
  3572. ENGINE MyISAM
  3573. VERSION 10
  3574. ROW_FORMAT Dynamic
  3575. TABLE_ROWS NULL
  3576. AVG_ROW_LENGTH #ARL#
  3577. DATA_LENGTH #DL#
  3578. MAX_DATA_LENGTH #MDL#
  3579. INDEX_LENGTH #IL#
  3580. DATA_FREE #DF#
  3581. AUTO_INCREMENT NULL
  3582. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3583. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3584. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3585. TABLE_COLLATION utf8_general_ci
  3586. CHECKSUM NULL
  3587. CREATE_OPTIONS #CO#
  3588. TABLE_COMMENT
  3589. TABLE_CATALOG NULL
  3590. TABLE_SCHEMA information_schema
  3591. TABLE_NAME REFERENTIAL_CONSTRAINTS
  3592. TABLE_TYPE SYSTEM VIEW
  3593. ENGINE MEMORY
  3594. VERSION 10
  3595. ROW_FORMAT Fixed
  3596. TABLE_ROWS NULL
  3597. AVG_ROW_LENGTH #ARL#
  3598. DATA_LENGTH #DL#
  3599. MAX_DATA_LENGTH #MDL#
  3600. INDEX_LENGTH #IL#
  3601. DATA_FREE #DF#
  3602. AUTO_INCREMENT NULL
  3603. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3604. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3605. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3606. TABLE_COLLATION utf8_general_ci
  3607. CHECKSUM NULL
  3608. CREATE_OPTIONS #CO#
  3609. TABLE_COMMENT
  3610. TABLE_CATALOG NULL
  3611. TABLE_SCHEMA information_schema
  3612. TABLE_NAME ROUTINES
  3613. TABLE_TYPE SYSTEM VIEW
  3614. ENGINE MyISAM
  3615. VERSION 10
  3616. ROW_FORMAT Dynamic
  3617. TABLE_ROWS NULL
  3618. AVG_ROW_LENGTH #ARL#
  3619. DATA_LENGTH #DL#
  3620. MAX_DATA_LENGTH #MDL#
  3621. INDEX_LENGTH #IL#
  3622. DATA_FREE #DF#
  3623. AUTO_INCREMENT NULL
  3624. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3625. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3626. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3627. TABLE_COLLATION utf8_general_ci
  3628. CHECKSUM NULL
  3629. CREATE_OPTIONS #CO#
  3630. TABLE_COMMENT
  3631. TABLE_CATALOG NULL
  3632. TABLE_SCHEMA information_schema
  3633. TABLE_NAME SCHEMATA
  3634. TABLE_TYPE SYSTEM VIEW
  3635. ENGINE MEMORY
  3636. VERSION 10
  3637. ROW_FORMAT Fixed
  3638. TABLE_ROWS NULL
  3639. AVG_ROW_LENGTH #ARL#
  3640. DATA_LENGTH #DL#
  3641. MAX_DATA_LENGTH #MDL#
  3642. INDEX_LENGTH #IL#
  3643. DATA_FREE #DF#
  3644. AUTO_INCREMENT NULL
  3645. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3646. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3647. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3648. TABLE_COLLATION utf8_general_ci
  3649. CHECKSUM NULL
  3650. CREATE_OPTIONS #CO#
  3651. TABLE_COMMENT
  3652. TABLE_CATALOG NULL
  3653. TABLE_SCHEMA information_schema
  3654. TABLE_NAME SCHEMA_PRIVILEGES
  3655. TABLE_TYPE SYSTEM VIEW
  3656. ENGINE MEMORY
  3657. VERSION 10
  3658. ROW_FORMAT Fixed
  3659. TABLE_ROWS NULL
  3660. AVG_ROW_LENGTH #ARL#
  3661. DATA_LENGTH #DL#
  3662. MAX_DATA_LENGTH #MDL#
  3663. INDEX_LENGTH #IL#
  3664. DATA_FREE #DF#
  3665. AUTO_INCREMENT NULL
  3666. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3667. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3668. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3669. TABLE_COLLATION utf8_general_ci
  3670. CHECKSUM NULL
  3671. CREATE_OPTIONS #CO#
  3672. TABLE_COMMENT
  3673. TABLE_CATALOG NULL
  3674. TABLE_SCHEMA information_schema
  3675. TABLE_NAME SESSION_STATUS
  3676. TABLE_TYPE SYSTEM VIEW
  3677. ENGINE MEMORY
  3678. VERSION 10
  3679. ROW_FORMAT Fixed
  3680. TABLE_ROWS NULL
  3681. AVG_ROW_LENGTH #ARL#
  3682. DATA_LENGTH #DL#
  3683. MAX_DATA_LENGTH #MDL#
  3684. INDEX_LENGTH #IL#
  3685. DATA_FREE #DF#
  3686. AUTO_INCREMENT NULL
  3687. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3688. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3689. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3690. TABLE_COLLATION utf8_general_ci
  3691. CHECKSUM NULL
  3692. CREATE_OPTIONS #CO#
  3693. TABLE_COMMENT
  3694. TABLE_CATALOG NULL
  3695. TABLE_SCHEMA information_schema
  3696. TABLE_NAME SESSION_VARIABLES
  3697. TABLE_TYPE SYSTEM VIEW
  3698. ENGINE MEMORY
  3699. VERSION 10
  3700. ROW_FORMAT Fixed
  3701. TABLE_ROWS NULL
  3702. AVG_ROW_LENGTH #ARL#
  3703. DATA_LENGTH #DL#
  3704. MAX_DATA_LENGTH #MDL#
  3705. INDEX_LENGTH #IL#
  3706. DATA_FREE #DF#
  3707. AUTO_INCREMENT NULL
  3708. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3709. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3710. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3711. TABLE_COLLATION utf8_general_ci
  3712. CHECKSUM NULL
  3713. CREATE_OPTIONS #CO#
  3714. TABLE_COMMENT
  3715. TABLE_CATALOG NULL
  3716. TABLE_SCHEMA information_schema
  3717. TABLE_NAME STATISTICS
  3718. TABLE_TYPE SYSTEM VIEW
  3719. ENGINE MEMORY
  3720. VERSION 10
  3721. ROW_FORMAT Fixed
  3722. TABLE_ROWS NULL
  3723. AVG_ROW_LENGTH #ARL#
  3724. DATA_LENGTH #DL#
  3725. MAX_DATA_LENGTH #MDL#
  3726. INDEX_LENGTH #IL#
  3727. DATA_FREE #DF#
  3728. AUTO_INCREMENT NULL
  3729. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3730. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3731. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3732. TABLE_COLLATION utf8_general_ci
  3733. CHECKSUM NULL
  3734. CREATE_OPTIONS #CO#
  3735. TABLE_COMMENT
  3736. TABLE_CATALOG NULL
  3737. TABLE_SCHEMA information_schema
  3738. TABLE_NAME TABLES
  3739. TABLE_TYPE SYSTEM VIEW
  3740. ENGINE MEMORY
  3741. VERSION 10
  3742. ROW_FORMAT Fixed
  3743. TABLE_ROWS NULL
  3744. AVG_ROW_LENGTH #ARL#
  3745. DATA_LENGTH #DL#
  3746. MAX_DATA_LENGTH #MDL#
  3747. INDEX_LENGTH #IL#
  3748. DATA_FREE #DF#
  3749. AUTO_INCREMENT NULL
  3750. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3751. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3752. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3753. TABLE_COLLATION utf8_general_ci
  3754. CHECKSUM NULL
  3755. CREATE_OPTIONS #CO#
  3756. TABLE_COMMENT
  3757. TABLE_CATALOG NULL
  3758. TABLE_SCHEMA information_schema
  3759. TABLE_NAME TABLE_CONSTRAINTS
  3760. TABLE_TYPE SYSTEM VIEW
  3761. ENGINE MEMORY
  3762. VERSION 10
  3763. ROW_FORMAT Fixed
  3764. TABLE_ROWS NULL
  3765. AVG_ROW_LENGTH #ARL#
  3766. DATA_LENGTH #DL#
  3767. MAX_DATA_LENGTH #MDL#
  3768. INDEX_LENGTH #IL#
  3769. DATA_FREE #DF#
  3770. AUTO_INCREMENT NULL
  3771. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3772. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3773. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3774. TABLE_COLLATION utf8_general_ci
  3775. CHECKSUM NULL
  3776. CREATE_OPTIONS #CO#
  3777. TABLE_COMMENT
  3778. TABLE_CATALOG NULL
  3779. TABLE_SCHEMA information_schema
  3780. TABLE_NAME TABLE_PRIVILEGES
  3781. TABLE_TYPE SYSTEM VIEW
  3782. ENGINE MEMORY
  3783. VERSION 10
  3784. ROW_FORMAT Fixed
  3785. TABLE_ROWS NULL
  3786. AVG_ROW_LENGTH #ARL#
  3787. DATA_LENGTH #DL#
  3788. MAX_DATA_LENGTH #MDL#
  3789. INDEX_LENGTH #IL#
  3790. DATA_FREE #DF#
  3791. AUTO_INCREMENT NULL
  3792. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3793. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3794. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3795. TABLE_COLLATION utf8_general_ci
  3796. CHECKSUM NULL
  3797. CREATE_OPTIONS #CO#
  3798. TABLE_COMMENT
  3799. TABLE_CATALOG NULL
  3800. TABLE_SCHEMA information_schema
  3801. TABLE_NAME TRIGGERS
  3802. TABLE_TYPE SYSTEM VIEW
  3803. ENGINE MyISAM
  3804. VERSION 10
  3805. ROW_FORMAT Dynamic
  3806. TABLE_ROWS NULL
  3807. AVG_ROW_LENGTH #ARL#
  3808. DATA_LENGTH #DL#
  3809. MAX_DATA_LENGTH #MDL#
  3810. INDEX_LENGTH #IL#
  3811. DATA_FREE #DF#
  3812. AUTO_INCREMENT NULL
  3813. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3814. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3815. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3816. TABLE_COLLATION utf8_general_ci
  3817. CHECKSUM NULL
  3818. CREATE_OPTIONS #CO#
  3819. TABLE_COMMENT
  3820. TABLE_CATALOG NULL
  3821. TABLE_SCHEMA information_schema
  3822. TABLE_NAME USER_PRIVILEGES
  3823. TABLE_TYPE SYSTEM VIEW
  3824. ENGINE MEMORY
  3825. VERSION 10
  3826. ROW_FORMAT Fixed
  3827. TABLE_ROWS NULL
  3828. AVG_ROW_LENGTH #ARL#
  3829. DATA_LENGTH #DL#
  3830. MAX_DATA_LENGTH #MDL#
  3831. INDEX_LENGTH #IL#
  3832. DATA_FREE #DF#
  3833. AUTO_INCREMENT NULL
  3834. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3835. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3836. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3837. TABLE_COLLATION utf8_general_ci
  3838. CHECKSUM NULL
  3839. CREATE_OPTIONS #CO#
  3840. TABLE_COMMENT
  3841. TABLE_CATALOG NULL
  3842. TABLE_SCHEMA information_schema
  3843. TABLE_NAME VIEWS
  3844. TABLE_TYPE SYSTEM VIEW
  3845. ENGINE MyISAM
  3846. VERSION 10
  3847. ROW_FORMAT Dynamic
  3848. TABLE_ROWS NULL
  3849. AVG_ROW_LENGTH #ARL#
  3850. DATA_LENGTH #DL#
  3851. MAX_DATA_LENGTH #MDL#
  3852. INDEX_LENGTH #IL#
  3853. DATA_FREE #DF#
  3854. AUTO_INCREMENT NULL
  3855. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3856. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3857. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3858. TABLE_COLLATION utf8_general_ci
  3859. CHECKSUM NULL
  3860. CREATE_OPTIONS #CO#
  3861. TABLE_COMMENT
  3862. SELECT * FROM information_schema.tables
  3863. WHERE NOT( table_schema = 'information_schema')
  3864. AND NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
  3865. TABLE_CATALOG NULL
  3866. TABLE_SCHEMA db_datadict
  3867. TABLE_NAME v1
  3868. TABLE_TYPE VIEW
  3869. ENGINE NULL
  3870. VERSION NULL
  3871. ROW_FORMAT NULL
  3872. TABLE_ROWS NULL
  3873. AVG_ROW_LENGTH #ARL#
  3874. DATA_LENGTH #DL#
  3875. MAX_DATA_LENGTH #MDL#
  3876. INDEX_LENGTH #IL#
  3877. DATA_FREE #DF#
  3878. AUTO_INCREMENT NULL
  3879. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3880. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3881. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3882. TABLE_COLLATION NULL
  3883. CHECKSUM NULL
  3884. CREATE_OPTIONS NULL
  3885. TABLE_COMMENT VIEW
  3886. TABLE_CATALOG NULL
  3887. TABLE_SCHEMA db_datadict
  3888. TABLE_NAME vu
  3889. TABLE_TYPE VIEW
  3890. ENGINE NULL
  3891. VERSION NULL
  3892. ROW_FORMAT NULL
  3893. TABLE_ROWS NULL
  3894. AVG_ROW_LENGTH #ARL#
  3895. DATA_LENGTH #DL#
  3896. MAX_DATA_LENGTH #MDL#
  3897. INDEX_LENGTH #IL#
  3898. DATA_FREE #DF#
  3899. AUTO_INCREMENT NULL
  3900. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3901. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3902. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3903. TABLE_COLLATION NULL
  3904. CHECKSUM NULL
  3905. CREATE_OPTIONS NULL
  3906. TABLE_COMMENT VIEW
  3907. TABLE_CATALOG NULL
  3908. TABLE_SCHEMA db_datadict
  3909. TABLE_NAME vu1
  3910. TABLE_TYPE VIEW
  3911. ENGINE NULL
  3912. VERSION NULL
  3913. ROW_FORMAT NULL
  3914. TABLE_ROWS NULL
  3915. AVG_ROW_LENGTH #ARL#
  3916. DATA_LENGTH #DL#
  3917. MAX_DATA_LENGTH #MDL#
  3918. INDEX_LENGTH #IL#
  3919. DATA_FREE #DF#
  3920. AUTO_INCREMENT NULL
  3921. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3922. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3923. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3924. TABLE_COLLATION NULL
  3925. CHECKSUM NULL
  3926. CREATE_OPTIONS NULL
  3927. TABLE_COMMENT VIEW
  3928. TABLE_CATALOG NULL
  3929. TABLE_SCHEMA mysql
  3930. TABLE_NAME user
  3931. TABLE_TYPE BASE TABLE
  3932. ENGINE MyISAM
  3933. VERSION 10
  3934. ROW_FORMAT Dynamic
  3935. TABLE_ROWS 3
  3936. AVG_ROW_LENGTH #ARL#
  3937. DATA_LENGTH #DL#
  3938. MAX_DATA_LENGTH #MDL#
  3939. INDEX_LENGTH #IL#
  3940. DATA_FREE #DF#
  3941. AUTO_INCREMENT NULL
  3942. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3943. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3944. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3945. TABLE_COLLATION utf8_bin
  3946. CHECKSUM NULL
  3947. CREATE_OPTIONS
  3948. TABLE_COMMENT Users and global privileges
  3949. TABLE_CATALOG NULL
  3950. TABLE_SCHEMA mysql
  3951. TABLE_NAME columns_priv
  3952. TABLE_TYPE BASE TABLE
  3953. ENGINE MyISAM
  3954. VERSION 10
  3955. ROW_FORMAT Fixed
  3956. TABLE_ROWS 0
  3957. AVG_ROW_LENGTH #ARL#
  3958. DATA_LENGTH #DL#
  3959. MAX_DATA_LENGTH #MDL#
  3960. INDEX_LENGTH #IL#
  3961. DATA_FREE #DF#
  3962. AUTO_INCREMENT NULL
  3963. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3964. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3965. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3966. TABLE_COLLATION utf8_bin
  3967. CHECKSUM NULL
  3968. CREATE_OPTIONS
  3969. TABLE_COMMENT Column privileges
  3970. TABLE_CATALOG NULL
  3971. TABLE_SCHEMA mysql
  3972. TABLE_NAME db
  3973. TABLE_TYPE BASE TABLE
  3974. ENGINE MyISAM
  3975. VERSION 10
  3976. ROW_FORMAT Fixed
  3977. TABLE_ROWS 2
  3978. AVG_ROW_LENGTH #ARL#
  3979. DATA_LENGTH #DL#
  3980. MAX_DATA_LENGTH #MDL#
  3981. INDEX_LENGTH #IL#
  3982. DATA_FREE #DF#
  3983. AUTO_INCREMENT NULL
  3984. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3985. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3986. CHECK_TIME YYYY-MM-DD hh:mm:ss
  3987. TABLE_COLLATION utf8_bin
  3988. CHECKSUM NULL
  3989. CREATE_OPTIONS
  3990. TABLE_COMMENT Database privileges
  3991. TABLE_CATALOG NULL
  3992. TABLE_SCHEMA mysql
  3993. TABLE_NAME event
  3994. TABLE_TYPE BASE TABLE
  3995. ENGINE MyISAM
  3996. VERSION 10
  3997. ROW_FORMAT Dynamic
  3998. TABLE_ROWS 0
  3999. AVG_ROW_LENGTH #ARL#
  4000. DATA_LENGTH #DL#
  4001. MAX_DATA_LENGTH #MDL#
  4002. INDEX_LENGTH #IL#
  4003. DATA_FREE #DF#
  4004. AUTO_INCREMENT NULL
  4005. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4006. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4007. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4008. TABLE_COLLATION utf8_general_ci
  4009. CHECKSUM NULL
  4010. CREATE_OPTIONS
  4011. TABLE_COMMENT Events
  4012. TABLE_CATALOG NULL
  4013. TABLE_SCHEMA mysql
  4014. TABLE_NAME func
  4015. TABLE_TYPE BASE TABLE
  4016. ENGINE MyISAM
  4017. VERSION 10
  4018. ROW_FORMAT Fixed
  4019. TABLE_ROWS 0
  4020. AVG_ROW_LENGTH #ARL#
  4021. DATA_LENGTH #DL#
  4022. MAX_DATA_LENGTH #MDL#
  4023. INDEX_LENGTH #IL#
  4024. DATA_FREE #DF#
  4025. AUTO_INCREMENT NULL
  4026. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4027. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4028. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4029. TABLE_COLLATION utf8_bin
  4030. CHECKSUM NULL
  4031. CREATE_OPTIONS
  4032. TABLE_COMMENT User defined functions
  4033. TABLE_CATALOG NULL
  4034. TABLE_SCHEMA mysql
  4035. TABLE_NAME general_log
  4036. TABLE_TYPE BASE TABLE
  4037. ENGINE CSV
  4038. VERSION 10
  4039. ROW_FORMAT Dynamic
  4040. TABLE_ROWS 1
  4041. AVG_ROW_LENGTH #ARL#
  4042. DATA_LENGTH #DL#
  4043. MAX_DATA_LENGTH #MDL#
  4044. INDEX_LENGTH #IL#
  4045. DATA_FREE #DF#
  4046. AUTO_INCREMENT NULL
  4047. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4048. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4049. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4050. TABLE_COLLATION utf8_general_ci
  4051. CHECKSUM NULL
  4052. CREATE_OPTIONS
  4053. TABLE_COMMENT General log
  4054. TABLE_CATALOG NULL
  4055. TABLE_SCHEMA mysql
  4056. TABLE_NAME host
  4057. TABLE_TYPE BASE TABLE
  4058. ENGINE MyISAM
  4059. VERSION 10
  4060. ROW_FORMAT Fixed
  4061. TABLE_ROWS 0
  4062. AVG_ROW_LENGTH #ARL#
  4063. DATA_LENGTH #DL#
  4064. MAX_DATA_LENGTH #MDL#
  4065. INDEX_LENGTH #IL#
  4066. DATA_FREE #DF#
  4067. AUTO_INCREMENT NULL
  4068. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4069. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4070. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4071. TABLE_COLLATION utf8_bin
  4072. CHECKSUM NULL
  4073. CREATE_OPTIONS
  4074. TABLE_COMMENT Host privileges; Merged with database privileges
  4075. TABLE_CATALOG NULL
  4076. TABLE_SCHEMA mysql
  4077. TABLE_NAME ndb_apply_status
  4078. TABLE_TYPE BASE TABLE
  4079. ENGINE ndbcluster
  4080. VERSION 10
  4081. ROW_FORMAT Dynamic
  4082. TABLE_ROWS 0
  4083. AVG_ROW_LENGTH #ARL#
  4084. DATA_LENGTH #DL#
  4085. MAX_DATA_LENGTH #MDL#
  4086. INDEX_LENGTH #IL#
  4087. DATA_FREE #DF#
  4088. AUTO_INCREMENT NULL
  4089. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4090. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4091. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4092. TABLE_COLLATION latin1_swedish_ci
  4093. CHECKSUM NULL
  4094. CREATE_OPTIONS
  4095. TABLE_COMMENT
  4096. TABLE_CATALOG NULL
  4097. TABLE_SCHEMA mysql
  4098. TABLE_NAME ndb_binlog_index
  4099. TABLE_TYPE BASE TABLE
  4100. ENGINE MyISAM
  4101. VERSION 10
  4102. ROW_FORMAT Dynamic
  4103. TABLE_ROWS 0
  4104. AVG_ROW_LENGTH #ARL#
  4105. DATA_LENGTH #DL#
  4106. MAX_DATA_LENGTH #MDL#
  4107. INDEX_LENGTH #IL#
  4108. DATA_FREE #DF#
  4109. AUTO_INCREMENT NULL
  4110. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4111. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4112. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4113. TABLE_COLLATION latin1_swedish_ci
  4114. CHECKSUM NULL
  4115. CREATE_OPTIONS
  4116. TABLE_COMMENT
  4117. TABLE_CATALOG NULL
  4118. TABLE_SCHEMA mysql
  4119. TABLE_NAME plugin
  4120. TABLE_TYPE BASE TABLE
  4121. ENGINE MyISAM
  4122. VERSION 10
  4123. ROW_FORMAT Fixed
  4124. TABLE_ROWS 0
  4125. AVG_ROW_LENGTH #ARL#
  4126. DATA_LENGTH #DL#
  4127. MAX_DATA_LENGTH #MDL#
  4128. INDEX_LENGTH #IL#
  4129. DATA_FREE #DF#
  4130. AUTO_INCREMENT NULL
  4131. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4132. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4133. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4134. TABLE_COLLATION utf8_bin
  4135. CHECKSUM NULL
  4136. CREATE_OPTIONS
  4137. TABLE_COMMENT MySQL plugins
  4138. TABLE_CATALOG NULL
  4139. TABLE_SCHEMA mysql
  4140. TABLE_NAME proc
  4141. TABLE_TYPE BASE TABLE
  4142. ENGINE MyISAM
  4143. VERSION 10
  4144. ROW_FORMAT Dynamic
  4145. TABLE_ROWS 1
  4146. AVG_ROW_LENGTH #ARL#
  4147. DATA_LENGTH #DL#
  4148. MAX_DATA_LENGTH #MDL#
  4149. INDEX_LENGTH #IL#
  4150. DATA_FREE #DF#
  4151. AUTO_INCREMENT NULL
  4152. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4153. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4154. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4155. TABLE_COLLATION utf8_general_ci
  4156. CHECKSUM NULL
  4157. CREATE_OPTIONS
  4158. TABLE_COMMENT Stored Procedures
  4159. TABLE_CATALOG NULL
  4160. TABLE_SCHEMA mysql
  4161. TABLE_NAME procs_priv
  4162. TABLE_TYPE BASE TABLE
  4163. ENGINE MyISAM
  4164. VERSION 10
  4165. ROW_FORMAT Fixed
  4166. TABLE_ROWS 0
  4167. AVG_ROW_LENGTH #ARL#
  4168. DATA_LENGTH #DL#
  4169. MAX_DATA_LENGTH #MDL#
  4170. INDEX_LENGTH #IL#
  4171. DATA_FREE #DF#
  4172. AUTO_INCREMENT NULL
  4173. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4174. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4175. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4176. TABLE_COLLATION utf8_bin
  4177. CHECKSUM NULL
  4178. CREATE_OPTIONS
  4179. TABLE_COMMENT Procedure privileges
  4180. TABLE_CATALOG NULL
  4181. TABLE_SCHEMA mysql
  4182. TABLE_NAME servers
  4183. TABLE_TYPE BASE TABLE
  4184. ENGINE MyISAM
  4185. VERSION 10
  4186. ROW_FORMAT Fixed
  4187. TABLE_ROWS 0
  4188. AVG_ROW_LENGTH #ARL#
  4189. DATA_LENGTH #DL#
  4190. MAX_DATA_LENGTH #MDL#
  4191. INDEX_LENGTH #IL#
  4192. DATA_FREE #DF#
  4193. AUTO_INCREMENT NULL
  4194. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4195. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4196. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4197. TABLE_COLLATION utf8_general_ci
  4198. CHECKSUM NULL
  4199. CREATE_OPTIONS
  4200. TABLE_COMMENT MySQL Foreign Servers table
  4201. TABLE_CATALOG NULL
  4202. TABLE_SCHEMA mysql
  4203. TABLE_NAME slow_log
  4204. TABLE_TYPE BASE TABLE
  4205. ENGINE CSV
  4206. VERSION 10
  4207. ROW_FORMAT Dynamic
  4208. TABLE_ROWS 2
  4209. AVG_ROW_LENGTH #ARL#
  4210. DATA_LENGTH #DL#
  4211. MAX_DATA_LENGTH #MDL#
  4212. INDEX_LENGTH #IL#
  4213. DATA_FREE #DF#
  4214. AUTO_INCREMENT NULL
  4215. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4216. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4217. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4218. TABLE_COLLATION utf8_general_ci
  4219. CHECKSUM NULL
  4220. CREATE_OPTIONS
  4221. TABLE_COMMENT Slow log
  4222. TABLE_CATALOG NULL
  4223. TABLE_SCHEMA mysql
  4224. TABLE_NAME tables_priv
  4225. TABLE_TYPE BASE TABLE
  4226. ENGINE MyISAM
  4227. VERSION 10
  4228. ROW_FORMAT Fixed
  4229. TABLE_ROWS 0
  4230. AVG_ROW_LENGTH #ARL#
  4231. DATA_LENGTH #DL#
  4232. MAX_DATA_LENGTH #MDL#
  4233. INDEX_LENGTH #IL#
  4234. DATA_FREE #DF#
  4235. AUTO_INCREMENT NULL
  4236. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4237. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4238. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4239. TABLE_COLLATION utf8_bin
  4240. CHECKSUM NULL
  4241. CREATE_OPTIONS
  4242. TABLE_COMMENT Table privileges
  4243. TABLE_CATALOG NULL
  4244. TABLE_SCHEMA mysql
  4245. TABLE_NAME time_zone
  4246. TABLE_TYPE BASE TABLE
  4247. ENGINE MyISAM
  4248. VERSION 10
  4249. ROW_FORMAT Fixed
  4250. TABLE_ROWS 5
  4251. AVG_ROW_LENGTH #ARL#
  4252. DATA_LENGTH #DL#
  4253. MAX_DATA_LENGTH #MDL#
  4254. INDEX_LENGTH #IL#
  4255. DATA_FREE #DF#
  4256. AUTO_INCREMENT 6
  4257. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4258. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4259. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4260. TABLE_COLLATION utf8_general_ci
  4261. CHECKSUM NULL
  4262. CREATE_OPTIONS
  4263. TABLE_COMMENT Time zones
  4264. TABLE_CATALOG NULL
  4265. TABLE_SCHEMA mysql
  4266. TABLE_NAME time_zone_leap_second
  4267. TABLE_TYPE BASE TABLE
  4268. ENGINE MyISAM
  4269. VERSION 10
  4270. ROW_FORMAT Fixed
  4271. TABLE_ROWS 22
  4272. AVG_ROW_LENGTH #ARL#
  4273. DATA_LENGTH #DL#
  4274. MAX_DATA_LENGTH #MDL#
  4275. INDEX_LENGTH #IL#
  4276. DATA_FREE #DF#
  4277. AUTO_INCREMENT NULL
  4278. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4279. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4280. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4281. TABLE_COLLATION utf8_general_ci
  4282. CHECKSUM NULL
  4283. CREATE_OPTIONS
  4284. TABLE_COMMENT Leap seconds information for time zones
  4285. TABLE_CATALOG NULL
  4286. TABLE_SCHEMA mysql
  4287. TABLE_NAME time_zone_name
  4288. TABLE_TYPE BASE TABLE
  4289. ENGINE MyISAM
  4290. VERSION 10
  4291. ROW_FORMAT Fixed
  4292. TABLE_ROWS 6
  4293. AVG_ROW_LENGTH #ARL#
  4294. DATA_LENGTH #DL#
  4295. MAX_DATA_LENGTH #MDL#
  4296. INDEX_LENGTH #IL#
  4297. DATA_FREE #DF#
  4298. AUTO_INCREMENT NULL
  4299. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4300. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4301. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4302. TABLE_COLLATION utf8_general_ci
  4303. CHECKSUM NULL
  4304. CREATE_OPTIONS
  4305. TABLE_COMMENT Time zone names
  4306. TABLE_CATALOG NULL
  4307. TABLE_SCHEMA mysql
  4308. TABLE_NAME time_zone_transition
  4309. TABLE_TYPE BASE TABLE
  4310. ENGINE MyISAM
  4311. VERSION 10
  4312. ROW_FORMAT Fixed
  4313. TABLE_ROWS 393
  4314. AVG_ROW_LENGTH #ARL#
  4315. DATA_LENGTH #DL#
  4316. MAX_DATA_LENGTH #MDL#
  4317. INDEX_LENGTH #IL#
  4318. DATA_FREE #DF#
  4319. AUTO_INCREMENT NULL
  4320. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4321. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4322. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4323. TABLE_COLLATION utf8_general_ci
  4324. CHECKSUM NULL
  4325. CREATE_OPTIONS
  4326. TABLE_COMMENT Time zone transitions
  4327. TABLE_CATALOG NULL
  4328. TABLE_SCHEMA mysql
  4329. TABLE_NAME time_zone_transition_type
  4330. TABLE_TYPE BASE TABLE
  4331. ENGINE MyISAM
  4332. VERSION 10
  4333. ROW_FORMAT Fixed
  4334. TABLE_ROWS 31
  4335. AVG_ROW_LENGTH #ARL#
  4336. DATA_LENGTH #DL#
  4337. MAX_DATA_LENGTH #MDL#
  4338. INDEX_LENGTH #IL#
  4339. DATA_FREE #DF#
  4340. AUTO_INCREMENT NULL
  4341. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4342. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4343. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4344. TABLE_COLLATION utf8_general_ci
  4345. CHECKSUM NULL
  4346. CREATE_OPTIONS
  4347. TABLE_COMMENT Time zone transition types
  4348. TABLE_CATALOG NULL
  4349. TABLE_SCHEMA test
  4350. TABLE_NAME t1
  4351. TABLE_TYPE BASE TABLE
  4352. ENGINE ndbcluster
  4353. VERSION 10
  4354. ROW_FORMAT Fixed
  4355. TABLE_ROWS 10
  4356. AVG_ROW_LENGTH #ARL#
  4357. DATA_LENGTH #DL#
  4358. MAX_DATA_LENGTH #MDL#
  4359. INDEX_LENGTH #IL#
  4360. DATA_FREE #DF#
  4361. AUTO_INCREMENT NULL
  4362. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4363. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4364. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4365. TABLE_COLLATION latin1_swedish_ci
  4366. CHECKSUM NULL
  4367. CREATE_OPTIONS
  4368. TABLE_COMMENT
  4369. TABLE_CATALOG NULL
  4370. TABLE_SCHEMA test
  4371. TABLE_NAME t10
  4372. TABLE_TYPE BASE TABLE
  4373. ENGINE ndbcluster
  4374. VERSION 10
  4375. ROW_FORMAT Fixed
  4376. TABLE_ROWS 10
  4377. AVG_ROW_LENGTH #ARL#
  4378. DATA_LENGTH #DL#
  4379. MAX_DATA_LENGTH #MDL#
  4380. INDEX_LENGTH #IL#
  4381. DATA_FREE #DF#
  4382. AUTO_INCREMENT NULL
  4383. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4384. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4385. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4386. TABLE_COLLATION latin1_swedish_ci
  4387. CHECKSUM NULL
  4388. CREATE_OPTIONS
  4389. TABLE_COMMENT
  4390. TABLE_CATALOG NULL
  4391. TABLE_SCHEMA test
  4392. TABLE_NAME t11
  4393. TABLE_TYPE BASE TABLE
  4394. ENGINE ndbcluster
  4395. VERSION 10
  4396. ROW_FORMAT Fixed
  4397. TABLE_ROWS 10
  4398. AVG_ROW_LENGTH #ARL#
  4399. DATA_LENGTH #DL#
  4400. MAX_DATA_LENGTH #MDL#
  4401. INDEX_LENGTH #IL#
  4402. DATA_FREE #DF#
  4403. AUTO_INCREMENT NULL
  4404. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4405. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4406. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4407. TABLE_COLLATION latin1_swedish_ci
  4408. CHECKSUM NULL
  4409. CREATE_OPTIONS
  4410. TABLE_COMMENT
  4411. TABLE_CATALOG NULL
  4412. TABLE_SCHEMA test
  4413. TABLE_NAME t2
  4414. TABLE_TYPE BASE TABLE
  4415. ENGINE ndbcluster
  4416. VERSION 10
  4417. ROW_FORMAT Fixed
  4418. TABLE_ROWS 10
  4419. AVG_ROW_LENGTH #ARL#
  4420. DATA_LENGTH #DL#
  4421. MAX_DATA_LENGTH #MDL#
  4422. INDEX_LENGTH #IL#
  4423. DATA_FREE #DF#
  4424. AUTO_INCREMENT NULL
  4425. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4426. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4427. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4428. TABLE_COLLATION latin1_swedish_ci
  4429. CHECKSUM NULL
  4430. CREATE_OPTIONS
  4431. TABLE_COMMENT
  4432. TABLE_CATALOG NULL
  4433. TABLE_SCHEMA test
  4434. TABLE_NAME t3
  4435. TABLE_TYPE BASE TABLE
  4436. ENGINE ndbcluster
  4437. VERSION 10
  4438. ROW_FORMAT Fixed
  4439. TABLE_ROWS 10
  4440. AVG_ROW_LENGTH #ARL#
  4441. DATA_LENGTH #DL#
  4442. MAX_DATA_LENGTH #MDL#
  4443. INDEX_LENGTH #IL#
  4444. DATA_FREE #DF#
  4445. AUTO_INCREMENT NULL
  4446. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4447. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4448. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4449. TABLE_COLLATION latin1_swedish_ci
  4450. CHECKSUM NULL
  4451. CREATE_OPTIONS
  4452. TABLE_COMMENT
  4453. TABLE_CATALOG NULL
  4454. TABLE_SCHEMA test
  4455. TABLE_NAME t4
  4456. TABLE_TYPE BASE TABLE
  4457. ENGINE ndbcluster
  4458. VERSION 10
  4459. ROW_FORMAT Fixed
  4460. TABLE_ROWS 10
  4461. AVG_ROW_LENGTH #ARL#
  4462. DATA_LENGTH #DL#
  4463. MAX_DATA_LENGTH #MDL#
  4464. INDEX_LENGTH #IL#
  4465. DATA_FREE #DF#
  4466. AUTO_INCREMENT NULL
  4467. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4468. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4469. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4470. TABLE_COLLATION latin1_swedish_ci
  4471. CHECKSUM NULL
  4472. CREATE_OPTIONS
  4473. TABLE_COMMENT
  4474. TABLE_CATALOG NULL
  4475. TABLE_SCHEMA test
  4476. TABLE_NAME t7
  4477. TABLE_TYPE BASE TABLE
  4478. ENGINE ndbcluster
  4479. VERSION 10
  4480. ROW_FORMAT Fixed
  4481. TABLE_ROWS 10
  4482. AVG_ROW_LENGTH #ARL#
  4483. DATA_LENGTH #DL#
  4484. MAX_DATA_LENGTH #MDL#
  4485. INDEX_LENGTH #IL#
  4486. DATA_FREE #DF#
  4487. AUTO_INCREMENT NULL
  4488. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4489. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4490. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4491. TABLE_COLLATION latin1_swedish_ci
  4492. CHECKSUM NULL
  4493. CREATE_OPTIONS
  4494. TABLE_COMMENT
  4495. TABLE_CATALOG NULL
  4496. TABLE_SCHEMA test
  4497. TABLE_NAME t8
  4498. TABLE_TYPE BASE TABLE
  4499. ENGINE ndbcluster
  4500. VERSION 10
  4501. ROW_FORMAT Fixed
  4502. TABLE_ROWS 10
  4503. AVG_ROW_LENGTH #ARL#
  4504. DATA_LENGTH #DL#
  4505. MAX_DATA_LENGTH #MDL#
  4506. INDEX_LENGTH #IL#
  4507. DATA_FREE #DF#
  4508. AUTO_INCREMENT NULL
  4509. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4510. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4511. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4512. TABLE_COLLATION latin1_swedish_ci
  4513. CHECKSUM NULL
  4514. CREATE_OPTIONS
  4515. TABLE_COMMENT
  4516. TABLE_CATALOG NULL
  4517. TABLE_SCHEMA test
  4518. TABLE_NAME t9
  4519. TABLE_TYPE BASE TABLE
  4520. ENGINE ndbcluster
  4521. VERSION 10
  4522. ROW_FORMAT Fixed
  4523. TABLE_ROWS 10
  4524. AVG_ROW_LENGTH #ARL#
  4525. DATA_LENGTH #DL#
  4526. MAX_DATA_LENGTH #MDL#
  4527. INDEX_LENGTH #IL#
  4528. DATA_FREE #DF#
  4529. AUTO_INCREMENT NULL
  4530. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4531. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4532. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4533. TABLE_COLLATION latin1_swedish_ci
  4534. CHECKSUM NULL
  4535. CREATE_OPTIONS
  4536. TABLE_COMMENT
  4537. TABLE_CATALOG NULL
  4538. TABLE_SCHEMA test
  4539. TABLE_NAME tb1
  4540. TABLE_TYPE BASE TABLE
  4541. ENGINE MyISAM
  4542. VERSION 10
  4543. ROW_FORMAT Dynamic
  4544. TABLE_ROWS 10
  4545. AVG_ROW_LENGTH #ARL#
  4546. DATA_LENGTH #DL#
  4547. MAX_DATA_LENGTH #MDL#
  4548. INDEX_LENGTH #IL#
  4549. DATA_FREE #DF#
  4550. AUTO_INCREMENT NULL
  4551. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4552. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4553. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4554. TABLE_COLLATION latin1_swedish_ci
  4555. CHECKSUM NULL
  4556. CREATE_OPTIONS
  4557. TABLE_COMMENT
  4558. TABLE_CATALOG NULL
  4559. TABLE_SCHEMA test
  4560. TABLE_NAME tb2
  4561. TABLE_TYPE BASE TABLE
  4562. ENGINE MyISAM
  4563. VERSION 10
  4564. ROW_FORMAT Dynamic
  4565. TABLE_ROWS 54
  4566. AVG_ROW_LENGTH #ARL#
  4567. DATA_LENGTH #DL#
  4568. MAX_DATA_LENGTH #MDL#
  4569. INDEX_LENGTH #IL#
  4570. DATA_FREE #DF#
  4571. AUTO_INCREMENT NULL
  4572. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4573. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4574. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4575. TABLE_COLLATION latin1_swedish_ci
  4576. CHECKSUM NULL
  4577. CREATE_OPTIONS
  4578. TABLE_COMMENT
  4579. TABLE_CATALOG NULL
  4580. TABLE_SCHEMA test
  4581. TABLE_NAME tb3
  4582. TABLE_TYPE BASE TABLE
  4583. ENGINE MyISAM
  4584. VERSION 10
  4585. ROW_FORMAT Dynamic
  4586. TABLE_ROWS 11
  4587. AVG_ROW_LENGTH #ARL#
  4588. DATA_LENGTH #DL#
  4589. MAX_DATA_LENGTH #MDL#
  4590. INDEX_LENGTH #IL#
  4591. DATA_FREE #DF#
  4592. AUTO_INCREMENT NULL
  4593. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4594. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4595. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4596. TABLE_COLLATION latin1_swedish_ci
  4597. CHECKSUM NULL
  4598. CREATE_OPTIONS
  4599. TABLE_COMMENT
  4600. TABLE_CATALOG NULL
  4601. TABLE_SCHEMA test
  4602. TABLE_NAME tb4
  4603. TABLE_TYPE BASE TABLE
  4604. ENGINE MyISAM
  4605. VERSION 10
  4606. ROW_FORMAT Dynamic
  4607. TABLE_ROWS 10
  4608. AVG_ROW_LENGTH #ARL#
  4609. DATA_LENGTH #DL#
  4610. MAX_DATA_LENGTH #MDL#
  4611. INDEX_LENGTH #IL#
  4612. DATA_FREE #DF#
  4613. AUTO_INCREMENT NULL
  4614. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4615. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4616. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4617. TABLE_COLLATION latin1_swedish_ci
  4618. CHECKSUM NULL
  4619. CREATE_OPTIONS
  4620. TABLE_COMMENT
  4621. TABLE_CATALOG NULL
  4622. TABLE_SCHEMA test4
  4623. TABLE_NAME t6
  4624. TABLE_TYPE BASE TABLE
  4625. ENGINE ndbcluster
  4626. VERSION 10
  4627. ROW_FORMAT Fixed
  4628. TABLE_ROWS 10
  4629. AVG_ROW_LENGTH #ARL#
  4630. DATA_LENGTH #DL#
  4631. MAX_DATA_LENGTH #MDL#
  4632. INDEX_LENGTH #IL#
  4633. DATA_FREE #DF#
  4634. AUTO_INCREMENT NULL
  4635. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4636. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4637. CHECK_TIME YYYY-MM-DD hh:mm:ss
  4638. TABLE_COLLATION latin1_swedish_ci
  4639. CHECKSUM NULL
  4640. CREATE_OPTIONS
  4641. TABLE_COMMENT
  4642. select s.catalog_name, s.schema_name, s.default_character_set_name,
  4643. t.table_type, t.engine
  4644. from information_schema.schemata s inner join information_schema.tables t
  4645. ORDER BY s.schema_name, s.default_character_set_name, table_type, engine;
  4646. catalog_name schema_name default_character_set_name table_type engine
  4647. NULL db_datadict latin1 BASE TABLE CSV
  4648. NULL db_datadict latin1 BASE TABLE CSV
  4649. NULL db_datadict latin1 BASE TABLE MyISAM
  4650. NULL db_datadict latin1 BASE TABLE MyISAM
  4651. NULL db_datadict latin1 BASE TABLE MyISAM
  4652. NULL db_datadict latin1 BASE TABLE MyISAM
  4653. NULL db_datadict latin1 BASE TABLE MyISAM
  4654. NULL db_datadict latin1 BASE TABLE MyISAM
  4655. NULL db_datadict latin1 BASE TABLE MyISAM
  4656. NULL db_datadict latin1 BASE TABLE MyISAM
  4657. NULL db_datadict latin1 BASE TABLE MyISAM
  4658. NULL db_datadict latin1 BASE TABLE MyISAM
  4659. NULL db_datadict latin1 BASE TABLE MyISAM
  4660. NULL db_datadict latin1 BASE TABLE MyISAM
  4661. NULL db_datadict latin1 BASE TABLE MyISAM
  4662. NULL db_datadict latin1 BASE TABLE MyISAM
  4663. NULL db_datadict latin1 BASE TABLE MyISAM
  4664. NULL db_datadict latin1 BASE TABLE MyISAM
  4665. NULL db_datadict latin1 BASE TABLE MyISAM
  4666. NULL db_datadict latin1 BASE TABLE MyISAM
  4667. NULL db_datadict latin1 BASE TABLE MyISAM
  4668. NULL db_datadict latin1 BASE TABLE MyISAM
  4669. NULL db_datadict latin1 BASE TABLE MyISAM
  4670. NULL db_datadict latin1 BASE TABLE MyISAM
  4671. NULL db_datadict latin1 BASE TABLE MyISAM
  4672. NULL db_datadict latin1 BASE TABLE MyISAM
  4673. NULL db_datadict latin1 BASE TABLE MyISAM
  4674. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4675. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4676. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4677. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4678. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4679. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4680. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4681. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4682. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4683. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4684. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4685. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4686. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4687. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4688. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4689. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4690. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4691. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4692. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4693. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4694. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4695. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4696. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4697. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4698. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4699. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4700. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4701. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4702. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4703. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4704. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4705. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4706. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4707. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4708. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4709. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4710. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4711. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4712. NULL db_datadict latin1 VIEW NULL
  4713. NULL db_datadict latin1 VIEW NULL
  4714. NULL db_datadict latin1 VIEW NULL
  4715. NULL information_schema utf8 BASE TABLE CSV
  4716. NULL information_schema utf8 BASE TABLE CSV
  4717. NULL information_schema utf8 BASE TABLE MyISAM
  4718. NULL information_schema utf8 BASE TABLE MyISAM
  4719. NULL information_schema utf8 BASE TABLE MyISAM
  4720. NULL information_schema utf8 BASE TABLE MyISAM
  4721. NULL information_schema utf8 BASE TABLE MyISAM
  4722. NULL information_schema utf8 BASE TABLE MyISAM
  4723. NULL information_schema utf8 BASE TABLE MyISAM
  4724. NULL information_schema utf8 BASE TABLE MyISAM
  4725. NULL information_schema utf8 BASE TABLE MyISAM
  4726. NULL information_schema utf8 BASE TABLE MyISAM
  4727. NULL information_schema utf8 BASE TABLE MyISAM
  4728. NULL information_schema utf8 BASE TABLE MyISAM
  4729. NULL information_schema utf8 BASE TABLE MyISAM
  4730. NULL information_schema utf8 BASE TABLE MyISAM
  4731. NULL information_schema utf8 BASE TABLE MyISAM
  4732. NULL information_schema utf8 BASE TABLE MyISAM
  4733. NULL information_schema utf8 BASE TABLE MyISAM
  4734. NULL information_schema utf8 BASE TABLE MyISAM
  4735. NULL information_schema utf8 BASE TABLE MyISAM
  4736. NULL information_schema utf8 BASE TABLE MyISAM
  4737. NULL information_schema utf8 BASE TABLE MyISAM
  4738. NULL information_schema utf8 BASE TABLE MyISAM
  4739. NULL information_schema utf8 BASE TABLE MyISAM
  4740. NULL information_schema utf8 BASE TABLE MyISAM
  4741. NULL information_schema utf8 BASE TABLE MyISAM
  4742. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4743. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4744. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4745. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4746. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4747. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4748. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4749. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4750. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4751. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4752. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4753. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4754. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4755. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4756. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4757. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4758. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4759. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4760. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4761. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4762. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4763. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4764. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4765. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4766. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4767. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4768. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4769. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4770. NULL information_schema utf8 SYSTEM VIEW MyISAM
  4771. NULL information_schema utf8 SYSTEM VIEW MyISAM
  4772. NULL information_schema utf8 SYSTEM VIEW MyISAM
  4773. NULL information_schema utf8 SYSTEM VIEW MyISAM
  4774. NULL information_schema utf8 SYSTEM VIEW MyISAM
  4775. NULL information_schema utf8 SYSTEM VIEW MyISAM
  4776. NULL information_schema utf8 SYSTEM VIEW MyISAM
  4777. NULL information_schema utf8 SYSTEM VIEW MyISAM
  4778. NULL information_schema utf8 SYSTEM VIEW MyISAM
  4779. NULL information_schema utf8 SYSTEM VIEW MyISAM
  4780. NULL information_schema utf8 VIEW NULL
  4781. NULL information_schema utf8 VIEW NULL
  4782. NULL information_schema utf8 VIEW NULL
  4783. NULL mysql latin1 BASE TABLE CSV
  4784. NULL mysql latin1 BASE TABLE CSV
  4785. NULL mysql latin1 BASE TABLE MyISAM
  4786. NULL mysql latin1 BASE TABLE MyISAM
  4787. NULL mysql latin1 BASE TABLE MyISAM
  4788. NULL mysql latin1 BASE TABLE MyISAM
  4789. NULL mysql latin1 BASE TABLE MyISAM
  4790. NULL mysql latin1 BASE TABLE MyISAM
  4791. NULL mysql latin1 BASE TABLE MyISAM
  4792. NULL mysql latin1 BASE TABLE MyISAM
  4793. NULL mysql latin1 BASE TABLE MyISAM
  4794. NULL mysql latin1 BASE TABLE MyISAM
  4795. NULL mysql latin1 BASE TABLE MyISAM
  4796. NULL mysql latin1 BASE TABLE MyISAM
  4797. NULL mysql latin1 BASE TABLE MyISAM
  4798. NULL mysql latin1 BASE TABLE MyISAM
  4799. NULL mysql latin1 BASE TABLE MyISAM
  4800. NULL mysql latin1 BASE TABLE MyISAM
  4801. NULL mysql latin1 BASE TABLE MyISAM
  4802. NULL mysql latin1 BASE TABLE MyISAM
  4803. NULL mysql latin1 BASE TABLE MyISAM
  4804. NULL mysql latin1 BASE TABLE MyISAM
  4805. NULL mysql latin1 BASE TABLE MyISAM
  4806. NULL mysql latin1 BASE TABLE MyISAM
  4807. NULL mysql latin1 BASE TABLE MyISAM
  4808. NULL mysql latin1 BASE TABLE MyISAM
  4809. NULL mysql latin1 BASE TABLE MyISAM
  4810. NULL mysql latin1 BASE TABLE NDBCLUSTER
  4811. NULL mysql latin1 BASE TABLE NDBCLUSTER
  4812. NULL mysql latin1 BASE TABLE NDBCLUSTER
  4813. NULL mysql latin1 BASE TABLE NDBCLUSTER
  4814. NULL mysql latin1 BASE TABLE NDBCLUSTER
  4815. NULL mysql latin1 BASE TABLE NDBCLUSTER
  4816. NULL mysql latin1 BASE TABLE NDBCLUSTER
  4817. NULL mysql latin1 BASE TABLE NDBCLUSTER
  4818. NULL mysql latin1 BASE TABLE NDBCLUSTER
  4819. NULL mysql latin1 BASE TABLE NDBCLUSTER
  4820. NULL mysql latin1 BASE TABLE NDBCLUSTER
  4821. NULL mysql latin1 SYSTEM VIEW MEMORY
  4822. NULL mysql latin1 SYSTEM VIEW MEMORY
  4823. NULL mysql latin1 SYSTEM VIEW MEMORY
  4824. NULL mysql latin1 SYSTEM VIEW MEMORY
  4825. NULL mysql latin1 SYSTEM VIEW MEMORY
  4826. NULL mysql latin1 SYSTEM VIEW MEMORY
  4827. NULL mysql latin1 SYSTEM VIEW MEMORY
  4828. NULL mysql latin1 SYSTEM VIEW MEMORY
  4829. NULL mysql latin1 SYSTEM VIEW MEMORY
  4830. NULL mysql latin1 SYSTEM VIEW MEMORY
  4831. NULL mysql latin1 SYSTEM VIEW MEMORY
  4832. NULL mysql latin1 SYSTEM VIEW MEMORY
  4833. NULL mysql latin1 SYSTEM VIEW MEMORY
  4834. NULL mysql latin1 SYSTEM VIEW MEMORY
  4835. NULL mysql latin1 SYSTEM VIEW MEMORY
  4836. NULL mysql latin1 SYSTEM VIEW MEMORY
  4837. NULL mysql latin1 SYSTEM VIEW MEMORY
  4838. NULL mysql latin1 SYSTEM VIEW MyISAM
  4839. NULL mysql latin1 SYSTEM VIEW MyISAM
  4840. NULL mysql latin1 SYSTEM VIEW MyISAM
  4841. NULL mysql latin1 SYSTEM VIEW MyISAM
  4842. NULL mysql latin1 SYSTEM VIEW MyISAM
  4843. NULL mysql latin1 SYSTEM VIEW MyISAM
  4844. NULL mysql latin1 SYSTEM VIEW MyISAM
  4845. NULL mysql latin1 SYSTEM VIEW MyISAM
  4846. NULL mysql latin1 SYSTEM VIEW MyISAM
  4847. NULL mysql latin1 SYSTEM VIEW MyISAM
  4848. NULL mysql latin1 VIEW NULL
  4849. NULL mysql latin1 VIEW NULL
  4850. NULL mysql latin1 VIEW NULL
  4851. NULL test latin1 BASE TABLE CSV
  4852. NULL test latin1 BASE TABLE CSV
  4853. NULL test latin1 BASE TABLE MyISAM
  4854. NULL test latin1 BASE TABLE MyISAM
  4855. NULL test latin1 BASE TABLE MyISAM
  4856. NULL test latin1 BASE TABLE MyISAM
  4857. NULL test latin1 BASE TABLE MyISAM
  4858. NULL test latin1 BASE TABLE MyISAM
  4859. NULL test latin1 BASE TABLE MyISAM
  4860. NULL test latin1 BASE TABLE MyISAM
  4861. NULL test latin1 BASE TABLE MyISAM
  4862. NULL test latin1 BASE TABLE MyISAM
  4863. NULL test latin1 BASE TABLE MyISAM
  4864. NULL test latin1 BASE TABLE MyISAM
  4865. NULL test latin1 BASE TABLE MyISAM
  4866. NULL test latin1 BASE TABLE MyISAM
  4867. NULL test latin1 BASE TABLE MyISAM
  4868. NULL test latin1 BASE TABLE MyISAM
  4869. NULL test latin1 BASE TABLE MyISAM
  4870. NULL test latin1 BASE TABLE MyISAM
  4871. NULL test latin1 BASE TABLE MyISAM
  4872. NULL test latin1 BASE TABLE MyISAM
  4873. NULL test latin1 BASE TABLE MyISAM
  4874. NULL test latin1 BASE TABLE MyISAM
  4875. NULL test latin1 BASE TABLE MyISAM
  4876. NULL test latin1 BASE TABLE MyISAM
  4877. NULL test latin1 BASE TABLE MyISAM
  4878. NULL test latin1 BASE TABLE NDBCLUSTER
  4879. NULL test latin1 BASE TABLE NDBCLUSTER
  4880. NULL test latin1 BASE TABLE NDBCLUSTER
  4881. NULL test latin1 BASE TABLE NDBCLUSTER
  4882. NULL test latin1 BASE TABLE NDBCLUSTER
  4883. NULL test latin1 BASE TABLE NDBCLUSTER
  4884. NULL test latin1 BASE TABLE NDBCLUSTER
  4885. NULL test latin1 BASE TABLE NDBCLUSTER
  4886. NULL test latin1 BASE TABLE NDBCLUSTER
  4887. NULL test latin1 BASE TABLE NDBCLUSTER
  4888. NULL test latin1 BASE TABLE NDBCLUSTER
  4889. NULL test latin1 SYSTEM VIEW MEMORY
  4890. NULL test latin1 SYSTEM VIEW MEMORY
  4891. NULL test latin1 SYSTEM VIEW MEMORY
  4892. NULL test latin1 SYSTEM VIEW MEMORY
  4893. NULL test latin1 SYSTEM VIEW MEMORY
  4894. NULL test latin1 SYSTEM VIEW MEMORY
  4895. NULL test latin1 SYSTEM VIEW MEMORY
  4896. NULL test latin1 SYSTEM VIEW MEMORY
  4897. NULL test latin1 SYSTEM VIEW MEMORY
  4898. NULL test latin1 SYSTEM VIEW MEMORY
  4899. NULL test latin1 SYSTEM VIEW MEMORY
  4900. NULL test latin1 SYSTEM VIEW MEMORY
  4901. NULL test latin1 SYSTEM VIEW MEMORY
  4902. NULL test latin1 SYSTEM VIEW MEMORY
  4903. NULL test latin1 SYSTEM VIEW MEMORY
  4904. NULL test latin1 SYSTEM VIEW MEMORY
  4905. NULL test latin1 SYSTEM VIEW MEMORY
  4906. NULL test latin1 SYSTEM VIEW MyISAM
  4907. NULL test latin1 SYSTEM VIEW MyISAM
  4908. NULL test latin1 SYSTEM VIEW MyISAM
  4909. NULL test latin1 SYSTEM VIEW MyISAM
  4910. NULL test latin1 SYSTEM VIEW MyISAM
  4911. NULL test latin1 SYSTEM VIEW MyISAM
  4912. NULL test latin1 SYSTEM VIEW MyISAM
  4913. NULL test latin1 SYSTEM VIEW MyISAM
  4914. NULL test latin1 SYSTEM VIEW MyISAM
  4915. NULL test latin1 SYSTEM VIEW MyISAM
  4916. NULL test latin1 VIEW NULL
  4917. NULL test latin1 VIEW NULL
  4918. NULL test latin1 VIEW NULL
  4919. NULL test1 latin1 BASE TABLE CSV
  4920. NULL test1 latin1 BASE TABLE CSV
  4921. NULL test1 latin1 BASE TABLE MyISAM
  4922. NULL test1 latin1 BASE TABLE MyISAM
  4923. NULL test1 latin1 BASE TABLE MyISAM
  4924. NULL test1 latin1 BASE TABLE MyISAM
  4925. NULL test1 latin1 BASE TABLE MyISAM
  4926. NULL test1 latin1 BASE TABLE MyISAM
  4927. NULL test1 latin1 BASE TABLE MyISAM
  4928. NULL test1 latin1 BASE TABLE MyISAM
  4929. NULL test1 latin1 BASE TABLE MyISAM
  4930. NULL test1 latin1 BASE TABLE MyISAM
  4931. NULL test1 latin1 BASE TABLE MyISAM
  4932. NULL test1 latin1 BASE TABLE MyISAM
  4933. NULL test1 latin1 BASE TABLE MyISAM
  4934. NULL test1 latin1 BASE TABLE MyISAM
  4935. NULL test1 latin1 BASE TABLE MyISAM
  4936. NULL test1 latin1 BASE TABLE MyISAM
  4937. NULL test1 latin1 BASE TABLE MyISAM
  4938. NULL test1 latin1 BASE TABLE MyISAM
  4939. NULL test1 latin1 BASE TABLE MyISAM
  4940. NULL test1 latin1 BASE TABLE MyISAM
  4941. NULL test1 latin1 BASE TABLE MyISAM
  4942. NULL test1 latin1 BASE TABLE MyISAM
  4943. NULL test1 latin1 BASE TABLE MyISAM
  4944. NULL test1 latin1 BASE TABLE MyISAM
  4945. NULL test1 latin1 BASE TABLE MyISAM
  4946. NULL test1 latin1 BASE TABLE NDBCLUSTER
  4947. NULL test1 latin1 BASE TABLE NDBCLUSTER
  4948. NULL test1 latin1 BASE TABLE NDBCLUSTER
  4949. NULL test1 latin1 BASE TABLE NDBCLUSTER
  4950. NULL test1 latin1 BASE TABLE NDBCLUSTER
  4951. NULL test1 latin1 BASE TABLE NDBCLUSTER
  4952. NULL test1 latin1 BASE TABLE NDBCLUSTER
  4953. NULL test1 latin1 BASE TABLE NDBCLUSTER
  4954. NULL test1 latin1 BASE TABLE NDBCLUSTER
  4955. NULL test1 latin1 BASE TABLE NDBCLUSTER
  4956. NULL test1 latin1 BASE TABLE NDBCLUSTER
  4957. NULL test1 latin1 SYSTEM VIEW MEMORY
  4958. NULL test1 latin1 SYSTEM VIEW MEMORY
  4959. NULL test1 latin1 SYSTEM VIEW MEMORY
  4960. NULL test1 latin1 SYSTEM VIEW MEMORY
  4961. NULL test1 latin1 SYSTEM VIEW MEMORY
  4962. NULL test1 latin1 SYSTEM VIEW MEMORY
  4963. NULL test1 latin1 SYSTEM VIEW MEMORY
  4964. NULL test1 latin1 SYSTEM VIEW MEMORY
  4965. NULL test1 latin1 SYSTEM VIEW MEMORY
  4966. NULL test1 latin1 SYSTEM VIEW MEMORY
  4967. NULL test1 latin1 SYSTEM VIEW MEMORY
  4968. NULL test1 latin1 SYSTEM VIEW MEMORY
  4969. NULL test1 latin1 SYSTEM VIEW MEMORY
  4970. NULL test1 latin1 SYSTEM VIEW MEMORY
  4971. NULL test1 latin1 SYSTEM VIEW MEMORY
  4972. NULL test1 latin1 SYSTEM VIEW MEMORY
  4973. NULL test1 latin1 SYSTEM VIEW MEMORY
  4974. NULL test1 latin1 SYSTEM VIEW MyISAM
  4975. NULL test1 latin1 SYSTEM VIEW MyISAM
  4976. NULL test1 latin1 SYSTEM VIEW MyISAM
  4977. NULL test1 latin1 SYSTEM VIEW MyISAM
  4978. NULL test1 latin1 SYSTEM VIEW MyISAM
  4979. NULL test1 latin1 SYSTEM VIEW MyISAM
  4980. NULL test1 latin1 SYSTEM VIEW MyISAM
  4981. NULL test1 latin1 SYSTEM VIEW MyISAM
  4982. NULL test1 latin1 SYSTEM VIEW MyISAM
  4983. NULL test1 latin1 SYSTEM VIEW MyISAM
  4984. NULL test1 latin1 VIEW NULL
  4985. NULL test1 latin1 VIEW NULL
  4986. NULL test1 latin1 VIEW NULL
  4987. NULL test4 latin1 BASE TABLE CSV
  4988. NULL test4 latin1 BASE TABLE CSV
  4989. NULL test4 latin1 BASE TABLE MyISAM
  4990. NULL test4 latin1 BASE TABLE MyISAM
  4991. NULL test4 latin1 BASE TABLE MyISAM
  4992. NULL test4 latin1 BASE TABLE MyISAM
  4993. NULL test4 latin1 BASE TABLE MyISAM
  4994. NULL test4 latin1 BASE TABLE MyISAM
  4995. NULL test4 latin1 BASE TABLE MyISAM
  4996. NULL test4 latin1 BASE TABLE MyISAM
  4997. NULL test4 latin1 BASE TABLE MyISAM
  4998. NULL test4 latin1 BASE TABLE MyISAM
  4999. NULL test4 latin1 BASE TABLE MyISAM
  5000. NULL test4 latin1 BASE TABLE MyISAM
  5001. NULL test4 latin1 BASE TABLE MyISAM
  5002. NULL test4 latin1 BASE TABLE MyISAM
  5003. NULL test4 latin1 BASE TABLE MyISAM
  5004. NULL test4 latin1 BASE TABLE MyISAM
  5005. NULL test4 latin1 BASE TABLE MyISAM
  5006. NULL test4 latin1 BASE TABLE MyISAM
  5007. NULL test4 latin1 BASE TABLE MyISAM
  5008. NULL test4 latin1 BASE TABLE MyISAM
  5009. NULL test4 latin1 BASE TABLE MyISAM
  5010. NULL test4 latin1 BASE TABLE MyISAM
  5011. NULL test4 latin1 BASE TABLE MyISAM
  5012. NULL test4 latin1 BASE TABLE MyISAM
  5013. NULL test4 latin1 BASE TABLE MyISAM
  5014. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5015. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5016. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5017. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5018. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5019. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5020. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5021. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5022. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5023. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5024. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5025. NULL test4 latin1 SYSTEM VIEW MEMORY
  5026. NULL test4 latin1 SYSTEM VIEW MEMORY
  5027. NULL test4 latin1 SYSTEM VIEW MEMORY
  5028. NULL test4 latin1 SYSTEM VIEW MEMORY
  5029. NULL test4 latin1 SYSTEM VIEW MEMORY
  5030. NULL test4 latin1 SYSTEM VIEW MEMORY
  5031. NULL test4 latin1 SYSTEM VIEW MEMORY
  5032. NULL test4 latin1 SYSTEM VIEW MEMORY
  5033. NULL test4 latin1 SYSTEM VIEW MEMORY
  5034. NULL test4 latin1 SYSTEM VIEW MEMORY
  5035. NULL test4 latin1 SYSTEM VIEW MEMORY
  5036. NULL test4 latin1 SYSTEM VIEW MEMORY
  5037. NULL test4 latin1 SYSTEM VIEW MEMORY
  5038. NULL test4 latin1 SYSTEM VIEW MEMORY
  5039. NULL test4 latin1 SYSTEM VIEW MEMORY
  5040. NULL test4 latin1 SYSTEM VIEW MEMORY
  5041. NULL test4 latin1 SYSTEM VIEW MEMORY
  5042. NULL test4 latin1 SYSTEM VIEW MyISAM
  5043. NULL test4 latin1 SYSTEM VIEW MyISAM
  5044. NULL test4 latin1 SYSTEM VIEW MyISAM
  5045. NULL test4 latin1 SYSTEM VIEW MyISAM
  5046. NULL test4 latin1 SYSTEM VIEW MyISAM
  5047. NULL test4 latin1 SYSTEM VIEW MyISAM
  5048. NULL test4 latin1 SYSTEM VIEW MyISAM
  5049. NULL test4 latin1 SYSTEM VIEW MyISAM
  5050. NULL test4 latin1 SYSTEM VIEW MyISAM
  5051. NULL test4 latin1 SYSTEM VIEW MyISAM
  5052. NULL test4 latin1 VIEW NULL
  5053. NULL test4 latin1 VIEW NULL
  5054. NULL test4 latin1 VIEW NULL
  5055. select * from information_schema.columns limit 0, 5;
  5056. 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
  5057. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  5058. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  5059. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  5060. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  5061. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  5062. select * from information_schema.character_sets limit 0, 5;
  5063. CHARACTER_SET_NAME DEFAULT_COLLATE_NAME DESCRIPTION MAXLEN
  5064. big5 big5_chinese_ci Big5 Traditional Chinese 2
  5065. dec8 dec8_swedish_ci DEC West European 1
  5066. cp850 cp850_general_ci DOS West European 1
  5067. hp8 hp8_english_ci HP West European 1
  5068. koi8r koi8r_general_ci KOI8-R Relcom Russian 1
  5069. select * from information_schema.collations limit 0, 5;
  5070. COLLATION_NAME CHARACTER_SET_NAME ID IS_DEFAULT IS_COMPILED SORTLEN
  5071. big5_chinese_ci big5 1 Yes Yes 1
  5072. big5_bin big5 84 Yes 1
  5073. dec8_swedish_ci dec8 3 Yes 0
  5074. dec8_bin dec8 69 0
  5075. cp850_general_ci cp850 4 Yes 0
  5076. select * from information_schema.collation_character_set_applicability limit 0, 5;
  5077. COLLATION_NAME CHARACTER_SET_NAME
  5078. big5_chinese_ci big5
  5079. big5_bin big5
  5080. dec8_swedish_ci dec8
  5081. dec8_bin dec8
  5082. cp850_general_ci cp850
  5083. select * from information_schema.routines limit 0, 5;
  5084. 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
  5085. sp_1 NULL db_datadict sp_1 PROCEDURE NULL SQL BEGIN
  5086. SELECT * FROM db_datadict.v1;
  5087. 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
  5088. select * from information_schema.statistics limit 0, 5;
  5089. 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
  5090. NULL mysql user 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  5091. NULL mysql user 0 mysql PRIMARY 2 User A 3 NULL NULL BTREE
  5092. NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  5093. NULL mysql columns_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  5094. NULL mysql columns_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  5095. select * from information_schema.views limit 0, 5;
  5096. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE CHARACTER_SET_CLIENT COLLATION_CONNECTION
  5097. NULL db_datadict v1 SELECT * FROM information_schema.tables NONE NO root@localhost DEFINER latin1 latin1_swedish_ci
  5098. NULL db_datadict vu SELECT DISTINCT u, NONE NO root@localhost DEFINER latin1 latin1_swedish_ci
  5099. NULL db_datadict vu1 SELECT grantee AS u NONE NO root@localhost DEFINER latin1 latin1_swedish_ci
  5100. select * from information_schema.user_privileges limit 0, 5;
  5101. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  5102. 'root'@'localhost' NULL SELECT YES
  5103. 'root'@'localhost' NULL INSERT YES
  5104. 'root'@'localhost' NULL UPDATE YES
  5105. 'root'@'localhost' NULL DELETE YES
  5106. 'root'@'localhost' NULL CREATE YES
  5107. select * from information_schema.schema_privileges limit 0, 5;
  5108. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  5109. ''@'%' NULL test SELECT NO
  5110. ''@'%' NULL test INSERT NO
  5111. ''@'%' NULL test UPDATE NO
  5112. ''@'%' NULL test DELETE NO
  5113. ''@'%' NULL test CREATE NO
  5114. select * from information_schema.table_privileges limit 0, 5;
  5115. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  5116. select * from information_schema.column_privileges limit 0, 5;
  5117. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  5118. select * from information_schema.table_constraints limit 0, 5;
  5119. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  5120. NULL mysql PRIMARY mysql user PRIMARY KEY
  5121. NULL mysql PRIMARY mysql columns_priv PRIMARY KEY
  5122. NULL mysql PRIMARY mysql db PRIMARY KEY
  5123. NULL mysql PRIMARY mysql event PRIMARY KEY
  5124. NULL mysql PRIMARY mysql func PRIMARY KEY
  5125. select * from information_schema.key_column_usage limit 0, 5;
  5126. 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
  5127. NULL mysql PRIMARY NULL mysql user Host 1 NULL NULL NULL NULL
  5128. NULL mysql PRIMARY NULL mysql user User 2 NULL NULL NULL NULL
  5129. NULL mysql PRIMARY NULL mysql columns_priv Host 1 NULL NULL NULL NULL
  5130. NULL mysql PRIMARY NULL mysql columns_priv Db 2 NULL NULL NULL NULL
  5131. NULL mysql PRIMARY NULL mysql columns_priv User 3 NULL NULL NULL NULL
  5132. select count(*) as max_recs from information_schema.key_column_usage limit 0, 5;
  5133. max_recs
  5134. 46
  5135. root: check with db name
  5136. ------------------------
  5137. SELECT COUNT(*) FROM information_schema. schemata ;
  5138. COUNT(*)
  5139. 6
  5140. SELECT COUNT(*) FROM information_schema. tables ;
  5141. COUNT(*)
  5142. 64
  5143. SELECT COUNT(*) FROM information_schema. columns ;
  5144. COUNT(*)
  5145. 590
  5146. SELECT COUNT(*) FROM information_schema. character_sets ;
  5147. COUNT(*)
  5148. 36
  5149. SELECT COUNT(*) FROM information_schema. collations ;
  5150. COUNT(*)
  5151. 128
  5152. SELECT COUNT(*) FROM information_schema. collation_character_set_applicability ;
  5153. COUNT(*)
  5154. 129
  5155. SELECT COUNT(*) FROM information_schema. routines ;
  5156. COUNT(*)
  5157. 1
  5158. SELECT COUNT(*) FROM information_schema. statistics ;
  5159. COUNT(*)
  5160. 49
  5161. SELECT COUNT(*) FROM information_schema. views ;
  5162. COUNT(*)
  5163. 3
  5164. SELECT COUNT(*) FROM information_schema. user_privileges ;
  5165. COUNT(*)
  5166. 81
  5167. SELECT COUNT(*) FROM information_schema. schema_privileges ;
  5168. COUNT(*)
  5169. 32
  5170. SELECT COUNT(*) FROM information_schema. table_privileges ;
  5171. COUNT(*)
  5172. 0
  5173. SELECT COUNT(*) FROM information_schema. column_privileges ;
  5174. COUNT(*)
  5175. 0
  5176. SELECT COUNT(*) FROM information_schema. table_constraints ;
  5177. COUNT(*)
  5178. 25
  5179. SELECT COUNT(*) FROM information_schema. key_column_usage ;
  5180. COUNT(*)
  5181. 46
  5182. SELECT COUNT(*) FROM information_schema. triggers ;
  5183. COUNT(*)
  5184. 0
  5185. SELECT COUNT(*) FROM information_schema. parameters ;
  5186. ERROR 42S02: Unknown table 'parameters' in information_schema
  5187. SELECT COUNT(*) FROM information_schema. referential_constraints ;
  5188. COUNT(*)
  5189. 0
  5190. USE db_datadict;
  5191. DROP VIEW v1, vu1, vu;
  5192. DROP PROCEDURE db_datadict.sp_1;
  5193. USE information_schema;
  5194. Testcase 3.2.1.2:
  5195. --------------------------------------------------------------------------------
  5196. select catalog_name, schema_name, default_character_set_name
  5197. from schemata where schema_name like '%s%';
  5198. catalog_name schema_name default_character_set_name
  5199. NULL information_schema utf8
  5200. NULL mysql latin1
  5201. NULL test latin1
  5202. NULL test1 latin1
  5203. NULL test4 latin1
  5204. select count(*) as tot_tabs from tables;
  5205. tot_tabs
  5206. 61
  5207. select count(*) as the_cols from columns;
  5208. the_cols
  5209. 565
  5210. select max(maxlen) as the_max from character_sets;
  5211. the_max
  5212. 3
  5213. select * from collations order by id asc limit 0, 5;
  5214. COLLATION_NAME CHARACTER_SET_NAME ID IS_DEFAULT IS_COMPILED SORTLEN
  5215. big5_chinese_ci big5 1 Yes Yes 1
  5216. latin2_czech_cs latin2 2 Yes 4
  5217. dec8_swedish_ci dec8 3 Yes 0
  5218. cp850_general_ci cp850 4 Yes 0
  5219. latin1_german1_ci latin1 5 Yes 1
  5220. select * from collation_character_set_applicability
  5221. order by character_set_name desc, collation_name limit 0, 5;
  5222. COLLATION_NAME CHARACTER_SET_NAME
  5223. utf8_bin utf8
  5224. utf8_czech_ci utf8
  5225. utf8_danish_ci utf8
  5226. utf8_esperanto_ci utf8
  5227. utf8_estonian_ci utf8
  5228. select routine_definition from routines;
  5229. routine_definition
  5230. select * from statistics where table_name not like 'help_%'
  5231. group by index_name asc limit 0, 5;
  5232. 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
  5233. NULL mysql procs_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
  5234. NULL mysql user 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  5235. NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
  5236. select concat(table_schema, ', ', table_name, ', ', view_definition) view_info
  5237. from views;
  5238. view_info
  5239. select concat(table_schema, ', ', table_name) "Table_info"
  5240. from tables ORDER BY 1;
  5241. Table_info
  5242. information_schema, CHARACTER_SETS
  5243. information_schema, COLLATIONS
  5244. information_schema, COLLATION_CHARACTER_SET_APPLICABILITY
  5245. information_schema, COLUMNS
  5246. information_schema, COLUMN_PRIVILEGES
  5247. information_schema, ENGINES
  5248. information_schema, EVENTS
  5249. information_schema, FILES
  5250. information_schema, GLOBAL_STATUS
  5251. information_schema, GLOBAL_VARIABLES
  5252. information_schema, KEY_COLUMN_USAGE
  5253. information_schema, PARTITIONS
  5254. information_schema, PLUGINS
  5255. information_schema, PROCESSLIST
  5256. information_schema, REFERENTIAL_CONSTRAINTS
  5257. information_schema, ROUTINES
  5258. information_schema, SCHEMATA
  5259. information_schema, SCHEMA_PRIVILEGES
  5260. information_schema, SESSION_STATUS
  5261. information_schema, SESSION_VARIABLES
  5262. information_schema, STATISTICS
  5263. information_schema, TABLES
  5264. information_schema, TABLE_CONSTRAINTS
  5265. information_schema, TABLE_PRIVILEGES
  5266. information_schema, TRIGGERS
  5267. information_schema, USER_PRIVILEGES
  5268. information_schema, VIEWS
  5269. mysql, columns_priv
  5270. mysql, db
  5271. mysql, event
  5272. mysql, func
  5273. mysql, general_log
  5274. mysql, help_category
  5275. mysql, help_keyword
  5276. mysql, help_relation
  5277. mysql, help_topic
  5278. mysql, host
  5279. mysql, ndb_apply_status
  5280. mysql, ndb_binlog_index
  5281. mysql, plugin
  5282. mysql, proc
  5283. mysql, procs_priv
  5284. mysql, servers
  5285. mysql, slow_log
  5286. mysql, tables_priv
  5287. mysql, time_zone
  5288. mysql, time_zone_leap_second
  5289. mysql, time_zone_name
  5290. mysql, time_zone_transition
  5291. mysql, time_zone_transition_type
  5292. mysql, user
  5293. test, t1
  5294. test, t10
  5295. test, t11
  5296. test, t2
  5297. test, t3
  5298. test, t4
  5299. test, t7
  5300. test, t8
  5301. test, t9
  5302. test, tb1
  5303. test, tb2
  5304. test, tb3
  5305. test, tb4
  5306. test4, t6
  5307. select distinct grantee from user_privileges order by grantee, privilege_type;
  5308. grantee
  5309. 'root'@'127.0.0.1'
  5310. 'root'@'<SERVER_NAME>'
  5311. 'root'@'localhost'
  5312. select * from schema_privileges where table_catalog is null limit 0, 5;
  5313. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  5314. ''@'%' NULL test SELECT NO
  5315. ''@'%' NULL test INSERT NO
  5316. ''@'%' NULL test UPDATE NO
  5317. ''@'%' NULL test DELETE NO
  5318. ''@'%' NULL test CREATE NO
  5319. select * from table_privileges where grantee like '%r%' limit 0, 5;
  5320. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  5321. select * from column_privileges where table_catalog is not null limit 0, 5;
  5322. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  5323. select HIGH_PRIORITY * from table_constraints
  5324. group by constraint_name desc limit 0, 5;
  5325. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  5326. NULL mysql PRIMARY mysql user PRIMARY KEY
  5327. NULL mysql name mysql help_category UNIQUE
  5328. select sum(ordinal_position) from key_column_usage;
  5329. sum(ordinal_position)
  5330. 84
  5331. select * from schemata limit 0,5;
  5332. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  5333. NULL information_schema utf8 utf8_general_ci NULL
  5334. NULL db_datadict latin1 latin1_swedish_ci NULL
  5335. NULL mysql latin1 latin1_swedish_ci NULL
  5336. NULL test latin1 latin1_swedish_ci NULL
  5337. NULL test1 latin1 latin1_swedish_ci NULL
  5338. select * from schemata limit 0,5;
  5339. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  5340. NULL information_schema utf8 utf8_general_ci NULL
  5341. NULL db_datadict latin1 latin1_swedish_ci NULL
  5342. NULL mysql latin1 latin1_swedish_ci NULL
  5343. NULL test latin1 latin1_swedish_ci NULL
  5344. NULL test1 latin1 latin1_swedish_ci NULL
  5345. select distinct grantee from user_privileges;
  5346. grantee
  5347. 'root'@'127.0.0.1'
  5348. 'root'@'<SERVER_NAME>'
  5349. 'root'@'localhost'
  5350. select all grantee from user_privileges order by grantee, privilege_type;
  5351. grantee
  5352. 'root'@'127.0.0.1'
  5353. 'root'@'127.0.0.1'
  5354. 'root'@'127.0.0.1'
  5355. 'root'@'127.0.0.1'
  5356. 'root'@'127.0.0.1'
  5357. 'root'@'127.0.0.1'
  5358. 'root'@'127.0.0.1'
  5359. 'root'@'127.0.0.1'
  5360. 'root'@'127.0.0.1'
  5361. 'root'@'127.0.0.1'
  5362. 'root'@'127.0.0.1'
  5363. 'root'@'127.0.0.1'
  5364. 'root'@'127.0.0.1'
  5365. 'root'@'127.0.0.1'
  5366. 'root'@'127.0.0.1'
  5367. 'root'@'127.0.0.1'
  5368. 'root'@'127.0.0.1'
  5369. 'root'@'127.0.0.1'
  5370. 'root'@'127.0.0.1'
  5371. 'root'@'127.0.0.1'
  5372. 'root'@'127.0.0.1'
  5373. 'root'@'127.0.0.1'
  5374. 'root'@'127.0.0.1'
  5375. 'root'@'127.0.0.1'
  5376. 'root'@'127.0.0.1'
  5377. 'root'@'127.0.0.1'
  5378. 'root'@'127.0.0.1'
  5379. 'root'@'<SERVER_NAME>'
  5380. 'root'@'<SERVER_NAME>'
  5381. 'root'@'<SERVER_NAME>'
  5382. 'root'@'<SERVER_NAME>'
  5383. 'root'@'<SERVER_NAME>'
  5384. 'root'@'<SERVER_NAME>'
  5385. 'root'@'<SERVER_NAME>'
  5386. 'root'@'<SERVER_NAME>'
  5387. 'root'@'<SERVER_NAME>'
  5388. 'root'@'<SERVER_NAME>'
  5389. 'root'@'<SERVER_NAME>'
  5390. 'root'@'<SERVER_NAME>'
  5391. 'root'@'<SERVER_NAME>'
  5392. 'root'@'<SERVER_NAME>'
  5393. 'root'@'<SERVER_NAME>'
  5394. 'root'@'<SERVER_NAME>'
  5395. 'root'@'<SERVER_NAME>'
  5396. 'root'@'<SERVER_NAME>'
  5397. 'root'@'<SERVER_NAME>'
  5398. 'root'@'<SERVER_NAME>'
  5399. 'root'@'<SERVER_NAME>'
  5400. 'root'@'<SERVER_NAME>'
  5401. 'root'@'<SERVER_NAME>'
  5402. 'root'@'<SERVER_NAME>'
  5403. 'root'@'<SERVER_NAME>'
  5404. 'root'@'<SERVER_NAME>'
  5405. 'root'@'<SERVER_NAME>'
  5406. 'root'@'localhost'
  5407. 'root'@'localhost'
  5408. 'root'@'localhost'
  5409. 'root'@'localhost'
  5410. 'root'@'localhost'
  5411. 'root'@'localhost'
  5412. 'root'@'localhost'
  5413. 'root'@'localhost'
  5414. 'root'@'localhost'
  5415. 'root'@'localhost'
  5416. 'root'@'localhost'
  5417. 'root'@'localhost'
  5418. 'root'@'localhost'
  5419. 'root'@'localhost'
  5420. 'root'@'localhost'
  5421. 'root'@'localhost'
  5422. 'root'@'localhost'
  5423. 'root'@'localhost'
  5424. 'root'@'localhost'
  5425. 'root'@'localhost'
  5426. 'root'@'localhost'
  5427. 'root'@'localhost'
  5428. 'root'@'localhost'
  5429. 'root'@'localhost'
  5430. 'root'@'localhost'
  5431. 'root'@'localhost'
  5432. 'root'@'localhost'
  5433. select id , character_set_name from collations order by id asc limit 10;
  5434. id character_set_name
  5435. 1 big5
  5436. 2 latin2
  5437. 3 dec8
  5438. 4 cp850
  5439. 5 latin1
  5440. 6 hp8
  5441. 7 koi8r
  5442. 8 latin1
  5443. 9 latin2
  5444. 10 swe7
  5445. select table_catalog from columns
  5446. union all
  5447. select table_catalog from tables limit 0,5;
  5448. table_catalog
  5449. NULL
  5450. NULL
  5451. NULL
  5452. NULL
  5453. NULL
  5454. select table_catalog from columns
  5455. union
  5456. select table_catalog from tables limit 0,5;
  5457. table_catalog
  5458. NULL
  5459. select all schema_name from information_schema.schemata;
  5460. schema_name
  5461. information_schema
  5462. db_datadict
  5463. mysql
  5464. test
  5465. test1
  5466. test4
  5467. SELECT *
  5468. INTO OUTFILE '../tmp/out.ndb.file'
  5469. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  5470. LINES TERMINATED BY '\n'
  5471. FROM schemata LIMIT 0, 5;
  5472. USE test;
  5473. SELECT *
  5474. INTO OUTFILE '../tmp/out.ndb.db.file'
  5475. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  5476. LINES TERMINATED BY '\n'
  5477. FROM information_schema.schemata
  5478. WHERE schema_name LIKE 'db_%';
  5479. CREATE USER user_3212@localhost;
  5480. GRANT ALL ON db_datadict.* TO user_3212@localhost;
  5481. GRANT FILE ON *.* TO user_3212@localhost;
  5482. connect(localhost,user_3212,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  5483. user_3212@localhost db_datadict
  5484. SELECT *
  5485. INTO OUTFILE '../tmp/out.ndb.user.file'
  5486. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  5487. LINES TERMINATED BY '\n'
  5488. FROM schemata LIMIT 0, 5;
  5489. ERROR 42S02: Table 'db_datadict.schemata' doesn't exist
  5490. SELECT *
  5491. FROM schemata LIMIT 0, 5;
  5492. ERROR 42S02: Table 'db_datadict.schemata' doesn't exist
  5493. SELECT *
  5494. INTO OUTFILE '../tmp/out.ndb.user.db.file'
  5495. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  5496. LINES TERMINATED BY '\n'
  5497. FROM information_schema.schemata
  5498. WHERE schema_name LIKE 'db_%';
  5499. SELECT *
  5500. FROM information_schema.schemata
  5501. WHERE schema_name LIKE 'db_%';
  5502. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  5503. NULL db_datadict latin1 latin1_swedish_ci NULL
  5504. USE information_schema;
  5505. SELECT *
  5506. INTO OUTFILE '../tmp/out.ndb.user_2.file'
  5507. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  5508. LINES TERMINATED BY '\n'
  5509. FROM schemata LIMIT 0, 5;
  5510. SELECT *
  5511. FROM schemata LIMIT 0, 5;
  5512. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  5513. NULL information_schema utf8 utf8_general_ci NULL
  5514. NULL db_datadict latin1 latin1_swedish_ci NULL
  5515. NULL test latin1 latin1_swedish_ci NULL
  5516. SELECT *
  5517. INTO OUTFILE '../tmp/out.ndb.user_2.db.file'
  5518. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  5519. LINES TERMINATED BY '\n'
  5520. FROM information_schema.schemata
  5521. WHERE schema_name LIKE 'db_%';
  5522. SELECT *
  5523. FROM information_schema.schemata
  5524. WHERE schema_name LIKE 'db_%';
  5525. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  5526. NULL db_datadict latin1 latin1_swedish_ci NULL
  5527. USE information_schema;
  5528. root@localhost information_schema
  5529. use db_datadict;
  5530. select table_catalog "1", table_schema "2", table_name "3", column_name "4"
  5531. from information_schema.columns
  5532. union
  5533. select table_catalog, table_schema, table_name,
  5534. concat( "*** type = ", table_type )
  5535. from information_schema.tables
  5536. order by 3, 4 desc, 1, 2 limit 30;
  5537. 1 2 3 4
  5538. NULL information_schema CHARACTER_SETS MAXLEN
  5539. NULL information_schema CHARACTER_SETS DESCRIPTION
  5540. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME
  5541. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME
  5542. NULL information_schema CHARACTER_SETS *** type = SYSTEM VIEW
  5543. NULL information_schema COLLATIONS SORTLEN
  5544. NULL information_schema COLLATIONS IS_DEFAULT
  5545. NULL information_schema COLLATIONS IS_COMPILED
  5546. NULL information_schema COLLATIONS ID
  5547. NULL information_schema COLLATIONS COLLATION_NAME
  5548. NULL information_schema COLLATIONS CHARACTER_SET_NAME
  5549. NULL information_schema COLLATIONS *** type = SYSTEM VIEW
  5550. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME
  5551. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME
  5552. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY *** type = SYSTEM VIEW
  5553. NULL information_schema COLUMNS TABLE_SCHEMA
  5554. NULL information_schema COLUMNS TABLE_NAME
  5555. NULL information_schema COLUMNS TABLE_CATALOG
  5556. NULL information_schema COLUMNS PRIVILEGES
  5557. NULL information_schema COLUMNS ORDINAL_POSITION
  5558. NULL information_schema COLUMNS NUMERIC_SCALE
  5559. NULL information_schema COLUMNS NUMERIC_PRECISION
  5560. NULL information_schema COLUMNS IS_NULLABLE
  5561. NULL information_schema COLUMNS EXTRA
  5562. NULL information_schema COLUMNS DATA_TYPE
  5563. NULL information_schema COLUMNS COLUMN_TYPE
  5564. NULL information_schema COLUMNS COLUMN_NAME
  5565. NULL information_schema COLUMNS COLUMN_KEY
  5566. NULL information_schema COLUMNS COLUMN_DEFAULT
  5567. NULL information_schema COLUMNS COLUMN_COMMENT
  5568. use information_schema;
  5569. select table_catalog "1", table_schema "2", table_name "3", column_name "4"
  5570. from columns
  5571. union
  5572. select table_catalog, table_schema, table_name,
  5573. concat( "*** type = ", table_type )
  5574. from tables
  5575. order by 3, 4 desc, 1, 2 limit 30;
  5576. 1 2 3 4
  5577. NULL information_schema CHARACTER_SETS MAXLEN
  5578. NULL information_schema CHARACTER_SETS DESCRIPTION
  5579. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME
  5580. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME
  5581. NULL information_schema CHARACTER_SETS *** type = SYSTEM VIEW
  5582. NULL information_schema COLLATIONS SORTLEN
  5583. NULL information_schema COLLATIONS IS_DEFAULT
  5584. NULL information_schema COLLATIONS IS_COMPILED
  5585. NULL information_schema COLLATIONS ID
  5586. NULL information_schema COLLATIONS COLLATION_NAME
  5587. NULL information_schema COLLATIONS CHARACTER_SET_NAME
  5588. NULL information_schema COLLATIONS *** type = SYSTEM VIEW
  5589. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME
  5590. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME
  5591. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY *** type = SYSTEM VIEW
  5592. NULL information_schema COLUMNS TABLE_SCHEMA
  5593. NULL information_schema COLUMNS TABLE_NAME
  5594. NULL information_schema COLUMNS TABLE_CATALOG
  5595. NULL information_schema COLUMNS PRIVILEGES
  5596. NULL information_schema COLUMNS ORDINAL_POSITION
  5597. NULL information_schema COLUMNS NUMERIC_SCALE
  5598. NULL information_schema COLUMNS NUMERIC_PRECISION
  5599. NULL information_schema COLUMNS IS_NULLABLE
  5600. NULL information_schema COLUMNS EXTRA
  5601. NULL information_schema COLUMNS DATA_TYPE
  5602. NULL information_schema COLUMNS COLUMN_TYPE
  5603. NULL information_schema COLUMNS COLUMN_NAME
  5604. NULL information_schema COLUMNS COLUMN_KEY
  5605. NULL information_schema COLUMNS COLUMN_DEFAULT
  5606. NULL information_schema COLUMNS COLUMN_COMMENT
  5607. DROP USER user_3212@localhost;
  5608. Testcase 3.2.1.3:
  5609. --------------------------------------------------------------------------------
  5610. insert into schemata (catalog_name, schema_name, default_character_set_name, sql_path)
  5611. values ('null', 'db1', 'latin1', 'null');
  5612. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5613. insert into tables (table_schema, table_name)values('db_datadict', 't1');
  5614. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5615. insert into columns (table_name, column_name)values('t3', 'f2');
  5616. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5617. insert into character_sets (character_set_name, default_collate_name, description, maxlen)
  5618. values('cp1251', 'cp1251_general_ci', 'windows cyrillic', 1);
  5619. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5620. insert into collations ( collation_name, character_set_name, id, is_default, is_compiled, sortlen)
  5621. values ('cp1251_bin', 'cp1251', 50, '', '', 0);
  5622. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5623. insert into collation_character_set_applicability (collation_name, character_set_name)
  5624. values (' big5_chinese_ci', 'big6');
  5625. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5626. insert into routines(routine_name, routine_type ) values ('p2', 'procedure');
  5627. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5628. insert into statistics(table_schema, table_name, index_name)
  5629. values ('mysql', 'db', 'primary');
  5630. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5631. insert into views(table_schema, table_name) values ('db2', 'v2');
  5632. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5633. insert into user_privileges (privilege_type, is_grantable) values ('select', 'yes');
  5634. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5635. insert into schema_privileges (table_schema, privilege_type) values('db2', 'insert');
  5636. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5637. insert into table_privileges (able_schema, table_name, privilege_type)
  5638. values('db2', 'v2', 'insert');
  5639. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5640. insert into column_privileges (table_name, column_name, privilege_type)
  5641. values ('t3', 'f3', 'insert');
  5642. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5643. insert into table_constraints ( constraint_schema, constraint_name, table_schema)
  5644. values ('primary', 'mysql', 'user');
  5645. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5646. insert into key_column_usage (constraint_schema, constraint_name, table_name)
  5647. values ('mysql', 'primary', 'db');
  5648. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5649. drop procedure if exists db_datadict.sp_4_1_3;
  5650. create procedure db_datadict.sp_4_1_3()
  5651. begin
  5652. insert into information_schema.schema_privileges (table_schema,privilege_type)
  5653. values('db2','insert');
  5654. end//
  5655. SELECT table_schema, privilege_type FROM information_schema.schema_privileges
  5656. WHERE table_schema LIKE 'db%';
  5657. table_schema privilege_type
  5658. call db_datadict.sp_4_1_3();
  5659. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5660. SELECT table_schema, privilege_type FROM information_schema.schema_privileges
  5661. WHERE table_schema LIKE 'db%';
  5662. table_schema privilege_type
  5663. drop procedure db_datadict.sp_4_1_3;
  5664. CREATE USER user_4_1_3@localhost;
  5665. connect(localhost,user_4_1_3,,test,MYSQL_PORT,MYSQL_SOCK);
  5666. user_4_1_3@localhost test
  5667. use information_schema;
  5668. insert into table_constraints ( constraint_schema, constraint_name, table_schema)
  5669. values ('primary', 'mysql', 'user');
  5670. ERROR 42000: Access denied for user 'user_4_1_3'@'localhost' to database 'information_schema'
  5671. root@localhost information_schema
  5672. Testcase 3.2.1.4:
  5673. --------------------------------------------------------------------------------
  5674. use information_schema;
  5675. root@localhost information_schema
  5676. update schemata set schema_name = 'db5' where default_character_set_name = 'latin1';
  5677. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5678. update tables set table_schema = 'db_datadict1' where table_name = 't1';
  5679. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5680. update columns set table_name = 't4' where column_name = 'f2';
  5681. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5682. update character_sets set character_set_name = 'cp1252' where maxlen = 1;
  5683. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5684. update collations set collation_name = 'cp1253_bin'
  5685. where character_set_name = 'cp1251';
  5686. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5687. update collation_character_set_applicability set collation_name = 'big6_chinese_ci'
  5688. where character_set_name = 'big6';
  5689. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5690. update routines set routine_name = p2 where routine_body = 'sql';
  5691. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5692. update statistics set table_schema = 'mysql1' where table_name = 'db';
  5693. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5694. update views set table_schema = 'db3' where table_name = 'v1';
  5695. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5696. update user_privileges set privilege_type = 'insert' where is_grantable = 'yes';
  5697. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5698. update schema_privileges set table_schema = 'db2' where privilege_type = 'select';
  5699. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5700. update table_privileges set table_name = 'v3' where privilege_type = 'select';
  5701. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5702. update column_privileges set table_name = 't4' where column_name = 'f3';
  5703. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5704. update table_constraints set constraint_schema = 'primary'
  5705. where table_schema = 'proc';
  5706. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5707. update key_column_usage set table_name = 'db1' where constraint_name = 'primary';
  5708. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5709. drop procedure if exists db_datadict.sp_4_1_4;
  5710. create procedure db_datadict.sp_4_1_4()
  5711. begin
  5712. update information_schema.routines set routine_name = 'p2'
  5713. where routine_name = 'sp_4_1_4';
  5714. end//
  5715. select * from information_schema.routines;
  5716. 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
  5717. sp_4_1_4 NULL db_datadict sp_4_1_4 PROCEDURE NULL SQL begin
  5718. update information_schema.routines set routine_name = 'p2'
  5719. where routine_name = 'sp_4_1_4';
  5720. 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
  5721. call db_datadict.sp_4_1_4();
  5722. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5723. select * from information_schema.routines;
  5724. 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
  5725. sp_4_1_4 NULL db_datadict sp_4_1_4 PROCEDURE NULL SQL begin
  5726. update information_schema.routines set routine_name = 'p2'
  5727. where routine_name = 'sp_4_1_4';
  5728. 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
  5729. drop procedure db_datadict.sp_4_1_4;
  5730. use information_schema;
  5731. user_4_1_3@localhost information_schema
  5732. update user_privileges set privilege_type = 'insert' where is_grantable = 'yes';
  5733. ERROR 42000: Access denied for user 'user_4_1_3'@'localhost' to database 'information_schema'
  5734. root@localhost information_schema
  5735. Testcase 3.2.1.5:
  5736. --------------------------------------------------------------------------------
  5737. use information_schema;
  5738. root: DELETE FROM any table in IS
  5739. ---------------------------------
  5740. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  5741. ---------------------------------------------------------------------------
  5742. DELETE FROM schemata ;
  5743. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5744. DELETE FROM tables ;
  5745. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5746. DELETE FROM columns ;
  5747. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5748. DELETE FROM character_sets ;
  5749. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5750. DELETE FROM collations ;
  5751. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5752. DELETE FROM collation_character_set_applicability ;
  5753. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5754. DELETE FROM routines ;
  5755. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5756. DELETE FROM statistics ;
  5757. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5758. DELETE FROM views ;
  5759. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5760. DELETE FROM user_privileges ;
  5761. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5762. DELETE FROM schema_privileges ;
  5763. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5764. DELETE FROM table_privileges ;
  5765. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5766. DELETE FROM column_privileges ;
  5767. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5768. DELETE FROM table_constraints ;
  5769. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5770. DELETE FROM key_column_usage ;
  5771. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5772. DELETE FROM triggers ;
  5773. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5774. delete from schemata where schema_name = 'mysql';
  5775. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5776. delete from tables where table_name = 'abc';
  5777. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5778. delete from columns;
  5779. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5780. delete from character_sets;
  5781. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5782. delete from collations;
  5783. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5784. delete from collation_character_set_applicability;
  5785. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5786. delete from routines;
  5787. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5788. delete from statistics;
  5789. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5790. delete from views;
  5791. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5792. delete from user_privileges;
  5793. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5794. delete from schema_privileges;
  5795. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5796. delete from table_privileges;
  5797. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5798. delete from column_privileges;
  5799. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5800. delete from table_constraints;
  5801. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5802. delete from key_column_usage;
  5803. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5804. drop procedure if exists db_datadict.sp_4_1_5;
  5805. create procedure db_datadict.sp_4_1_5()
  5806. begin
  5807. delete from information_schema.column_privileges;
  5808. end//
  5809. call db_datadict.sp_4_1_5();
  5810. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5811. drop procedure db_datadict.sp_4_1_5;
  5812. use information_schema;
  5813. user_4_1_3@localhost information_schema
  5814. delete from tables where table_name = 'abc';
  5815. ERROR 42000: Access denied for user 'user_4_1_3'@'localhost' to database 'information_schema'
  5816. root@localhost information_schema
  5817. DROP USER user_4_1_3@localhost;
  5818. Testcase 3.2.1.6:
  5819. --------------------------------------------------------------------------------
  5820. use information_schema;
  5821. root: create a table with a name of an IS table directly in IS
  5822. --------------------------------------------------------------
  5823. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  5824. ---------------------------------------------------------------------------
  5825. CREATE TABLE schemata ( c1 INT );
  5826. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5827. CREATE TABLE tables ( c1 INT );
  5828. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5829. CREATE TABLE columns ( c1 INT );
  5830. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5831. CREATE TABLE character_sets ( c1 INT );
  5832. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5833. CREATE TABLE collations ( c1 INT );
  5834. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5835. CREATE TABLE collation_character_set_applicability ( c1 INT );
  5836. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5837. CREATE TABLE routines ( c1 INT );
  5838. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5839. CREATE TABLE statistics ( c1 INT );
  5840. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5841. CREATE TABLE views ( c1 INT );
  5842. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5843. CREATE TABLE user_privileges ( c1 INT );
  5844. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5845. CREATE TABLE schema_privileges ( c1 INT );
  5846. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5847. CREATE TABLE table_privileges ( c1 INT );
  5848. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5849. CREATE TABLE column_privileges ( c1 INT );
  5850. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5851. CREATE TABLE table_constraints ( c1 INT );
  5852. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5853. CREATE TABLE key_column_usage ( c1 INT );
  5854. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5855. CREATE TABLE triggers ( c1 INT );
  5856. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5857. create table t1 (f1 int, f2 int, f3 int);
  5858. ERROR 42S02: Unknown table 't1' in information_schema
  5859. use db_datadict;
  5860. root: create a table with a name of an IS table from other db
  5861. -------------------------------------------------------------
  5862. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  5863. ---------------------------------------------------------------------------
  5864. CREATE TABLE information_schema. schemata ( c1 INT );
  5865. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5866. CREATE TABLE information_schema. tables ( c1 INT );
  5867. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5868. CREATE TABLE information_schema. columns ( c1 INT );
  5869. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5870. CREATE TABLE information_schema. character_sets ( c1 INT );
  5871. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5872. CREATE TABLE information_schema. collations ( c1 INT );
  5873. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5874. CREATE TABLE information_schema. collation_character_set_applicability ( c1 INT );
  5875. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5876. CREATE TABLE information_schema. routines ( c1 INT );
  5877. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5878. CREATE TABLE information_schema. statistics ( c1 INT );
  5879. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5880. CREATE TABLE information_schema. views ( c1 INT );
  5881. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5882. CREATE TABLE information_schema. user_privileges ( c1 INT );
  5883. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5884. CREATE TABLE information_schema. schema_privileges ( c1 INT );
  5885. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5886. CREATE TABLE information_schema. table_privileges ( c1 INT );
  5887. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5888. CREATE TABLE information_schema. column_privileges ( c1 INT );
  5889. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5890. CREATE TABLE information_schema. table_constraints ( c1 INT );
  5891. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5892. CREATE TABLE information_schema. key_column_usage ( c1 INT );
  5893. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5894. CREATE TABLE information_schema. triggers ( c1 INT );
  5895. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5896. create table information_schema.t1 (f1 int, f2 int, f3 int);
  5897. ERROR 42S02: Unknown table 't1' in information_schema
  5898. CREATE USER user_4_1_6@localhost;
  5899. grant all on *.* to user_4_1_6@localhost;
  5900. FLUSH PRIVILEGES;
  5901. SHOW GRANTS FOR user_4_1_6@localhost;
  5902. Grants for user_4_1_6@localhost
  5903. GRANT ALL PRIVILEGES ON *.* TO 'user_4_1_6'@'localhost'
  5904. connect(localhost,user_4_1_6,,information_schema,MYSQL_PORT,MYSQL_SOCK);
  5905. user_4_1_6@localhost information_schema
  5906. use information_schema;
  5907. user: create a table with a name of an IS table directly in IS
  5908. --------------------------------------------------------------
  5909. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  5910. ---------------------------------------------------------------------------
  5911. CREATE TABLE schemata ( c1 INT );
  5912. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5913. CREATE TABLE tables ( c1 INT );
  5914. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5915. CREATE TABLE columns ( c1 INT );
  5916. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5917. CREATE TABLE character_sets ( c1 INT );
  5918. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5919. CREATE TABLE collations ( c1 INT );
  5920. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5921. CREATE TABLE collation_character_set_applicability ( c1 INT );
  5922. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5923. CREATE TABLE routines ( c1 INT );
  5924. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5925. CREATE TABLE statistics ( c1 INT );
  5926. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5927. CREATE TABLE views ( c1 INT );
  5928. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5929. CREATE TABLE user_privileges ( c1 INT );
  5930. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5931. CREATE TABLE schema_privileges ( c1 INT );
  5932. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5933. CREATE TABLE table_privileges ( c1 INT );
  5934. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5935. CREATE TABLE column_privileges ( c1 INT );
  5936. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5937. CREATE TABLE table_constraints ( c1 INT );
  5938. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5939. CREATE TABLE key_column_usage ( c1 INT );
  5940. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5941. CREATE TABLE triggers ( c1 INT );
  5942. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5943. create table t1 (f1 int, f2 int, f3 int);
  5944. ERROR 42S02: Unknown table 't1' in information_schema
  5945. use test;
  5946. user: create a table with a name of an IS table from other db
  5947. -------------------------------------------------------------
  5948. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  5949. ---------------------------------------------------------------------------
  5950. CREATE TABLE information_schema. schemata ( c1 INT );
  5951. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5952. CREATE TABLE information_schema. tables ( c1 INT );
  5953. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5954. CREATE TABLE information_schema. columns ( c1 INT );
  5955. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5956. CREATE TABLE information_schema. character_sets ( c1 INT );
  5957. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5958. CREATE TABLE information_schema. collations ( c1 INT );
  5959. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5960. CREATE TABLE information_schema. collation_character_set_applicability ( c1 INT );
  5961. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5962. CREATE TABLE information_schema. routines ( c1 INT );
  5963. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5964. CREATE TABLE information_schema. statistics ( c1 INT );
  5965. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5966. CREATE TABLE information_schema. views ( c1 INT );
  5967. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5968. CREATE TABLE information_schema. user_privileges ( c1 INT );
  5969. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5970. CREATE TABLE information_schema. schema_privileges ( c1 INT );
  5971. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5972. CREATE TABLE information_schema. table_privileges ( c1 INT );
  5973. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5974. CREATE TABLE information_schema. column_privileges ( c1 INT );
  5975. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5976. CREATE TABLE information_schema. table_constraints ( c1 INT );
  5977. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5978. CREATE TABLE information_schema. key_column_usage ( c1 INT );
  5979. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5980. CREATE TABLE information_schema. triggers ( c1 INT );
  5981. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  5982. create table information_schema.t1 (f1 int, f2 int, f3 int);
  5983. ERROR 42S02: Unknown table 't1' in information_schema
  5984. root@localhost db_datadict
  5985. DROP USER user_4_1_6@localhost;
  5986. Testcase 3.2.1.7:
  5987. --------------------------------------------------------------------------------
  5988. use information_schema;
  5989. root: create a view with a name of an IS table directly in IS
  5990. -------------------------------------------------------------
  5991. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  5992. ---------------------------------------------------------------------------
  5993. CREATE VIEW schemata AS SELECT * FROM mysql.time_zone;
  5994. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5995. CREATE VIEW tables AS SELECT * FROM mysql.time_zone;
  5996. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5997. CREATE VIEW columns AS SELECT * FROM mysql.time_zone;
  5998. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5999. CREATE VIEW character_sets AS SELECT * FROM mysql.time_zone;
  6000. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6001. CREATE VIEW collations AS SELECT * FROM mysql.time_zone;
  6002. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6003. CREATE VIEW collation_character_set_applicability AS SELECT * FROM mysql.time_zone;
  6004. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6005. CREATE VIEW routines AS SELECT * FROM mysql.time_zone;
  6006. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6007. CREATE VIEW statistics AS SELECT * FROM mysql.time_zone;
  6008. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6009. CREATE VIEW views AS SELECT * FROM mysql.time_zone;
  6010. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6011. CREATE VIEW user_privileges AS SELECT * FROM mysql.time_zone;
  6012. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6013. CREATE VIEW schema_privileges AS SELECT * FROM mysql.time_zone;
  6014. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6015. CREATE VIEW table_privileges AS SELECT * FROM mysql.time_zone;
  6016. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6017. CREATE VIEW column_privileges AS SELECT * FROM mysql.time_zone;
  6018. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6019. CREATE VIEW table_constraints AS SELECT * FROM mysql.time_zone;
  6020. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6021. CREATE VIEW key_column_usage AS SELECT * FROM mysql.time_zone;
  6022. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6023. CREATE VIEW triggers AS SELECT * FROM mysql.time_zone;
  6024. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6025. CREATE VIEW v1 AS SELECT * FROM information_schema.schemata;
  6026. ERROR 42S02: Unknown table 'v1' in information_schema
  6027. USE db_datadict;
  6028. root: create a view with a name of an IS table from other db
  6029. ------------------------------------------------------------
  6030. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6031. ---------------------------------------------------------------------------
  6032. CREATE VIEW information_schema. schemata AS SELECT * FROM mysql.time_zone;
  6033. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6034. CREATE VIEW information_schema. tables AS SELECT * FROM mysql.time_zone;
  6035. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6036. CREATE VIEW information_schema. columns AS SELECT * FROM mysql.time_zone;
  6037. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6038. CREATE VIEW information_schema. character_sets AS SELECT * FROM mysql.time_zone;
  6039. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6040. CREATE VIEW information_schema. collations AS SELECT * FROM mysql.time_zone;
  6041. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6042. CREATE VIEW information_schema. collation_character_set_applicability AS SELECT * FROM mysql.time_zone;
  6043. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6044. CREATE VIEW information_schema. routines AS SELECT * FROM mysql.time_zone;
  6045. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6046. CREATE VIEW information_schema. statistics AS SELECT * FROM mysql.time_zone;
  6047. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6048. CREATE VIEW information_schema. views AS SELECT * FROM mysql.time_zone;
  6049. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6050. CREATE VIEW information_schema. user_privileges AS SELECT * FROM mysql.time_zone;
  6051. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6052. CREATE VIEW information_schema. schema_privileges AS SELECT * FROM mysql.time_zone;
  6053. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6054. CREATE VIEW information_schema. table_privileges AS SELECT * FROM mysql.time_zone;
  6055. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6056. CREATE VIEW information_schema. column_privileges AS SELECT * FROM mysql.time_zone;
  6057. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6058. CREATE VIEW information_schema. table_constraints AS SELECT * FROM mysql.time_zone;
  6059. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6060. CREATE VIEW information_schema. key_column_usage AS SELECT * FROM mysql.time_zone;
  6061. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6062. CREATE VIEW information_schema. triggers AS SELECT * FROM mysql.time_zone;
  6063. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6064. CREATE VIEW v1 AS SELECT * FROM information_schema.columns;
  6065. SELECT * FROM v1 LIMIT 5;
  6066. 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
  6067. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  6068. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  6069. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  6070. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  6071. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  6072. CREATE USER user_4_1_7@localhost;
  6073. GRANT ALL ON db_datadict.* TO user_4_1_7@localhost;
  6074. GRANT ALL ON information_schema.* TO user_4_1_7@localhost;
  6075. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6076. FLUSH PRIVILEGES;
  6077. connect(localhost,user_4_1_7,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  6078. use information_schema;
  6079. user_4_1_7@localhost information_schema
  6080. user: create a view with a name of an IS table directly in IS
  6081. -------------------------------------------------------------
  6082. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6083. ---------------------------------------------------------------------------
  6084. CREATE VIEW schemata AS SELECT * FROM db_datadict.v1;
  6085. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6086. CREATE VIEW tables AS SELECT * FROM db_datadict.v1;
  6087. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6088. CREATE VIEW columns AS SELECT * FROM db_datadict.v1;
  6089. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6090. CREATE VIEW character_sets AS SELECT * FROM db_datadict.v1;
  6091. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6092. CREATE VIEW collations AS SELECT * FROM db_datadict.v1;
  6093. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6094. CREATE VIEW collation_character_set_applicability AS SELECT * FROM db_datadict.v1;
  6095. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6096. CREATE VIEW routines AS SELECT * FROM db_datadict.v1;
  6097. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6098. CREATE VIEW statistics AS SELECT * FROM db_datadict.v1;
  6099. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6100. CREATE VIEW views AS SELECT * FROM db_datadict.v1;
  6101. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6102. CREATE VIEW user_privileges AS SELECT * FROM db_datadict.v1;
  6103. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6104. CREATE VIEW schema_privileges AS SELECT * FROM db_datadict.v1;
  6105. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6106. CREATE VIEW table_privileges AS SELECT * FROM db_datadict.v1;
  6107. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6108. CREATE VIEW column_privileges AS SELECT * FROM db_datadict.v1;
  6109. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6110. CREATE VIEW table_constraints AS SELECT * FROM db_datadict.v1;
  6111. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6112. CREATE VIEW key_column_usage AS SELECT * FROM db_datadict.v1;
  6113. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6114. CREATE VIEW triggers AS SELECT * FROM db_datadict.v1;
  6115. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6116. create view v1 as select * from table_privileges;
  6117. ERROR 42S02: Unknown table 'v1' in information_schema
  6118. use db_datadict;
  6119. user: create a view with a name of an IS table from other db
  6120. ------------------------------------------------------------
  6121. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6122. ---------------------------------------------------------------------------
  6123. CREATE VIEW information_schema. schemata AS SELECT * FROM db_datadict.v1;
  6124. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6125. CREATE VIEW information_schema. tables AS SELECT * FROM db_datadict.v1;
  6126. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6127. CREATE VIEW information_schema. columns AS SELECT * FROM db_datadict.v1;
  6128. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6129. CREATE VIEW information_schema. character_sets AS SELECT * FROM db_datadict.v1;
  6130. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6131. CREATE VIEW information_schema. collations AS SELECT * FROM db_datadict.v1;
  6132. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6133. CREATE VIEW information_schema. collation_character_set_applicability AS SELECT * FROM db_datadict.v1;
  6134. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6135. CREATE VIEW information_schema. routines AS SELECT * FROM db_datadict.v1;
  6136. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6137. CREATE VIEW information_schema. statistics AS SELECT * FROM db_datadict.v1;
  6138. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6139. CREATE VIEW information_schema. views AS SELECT * FROM db_datadict.v1;
  6140. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6141. CREATE VIEW information_schema. user_privileges AS SELECT * FROM db_datadict.v1;
  6142. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6143. CREATE VIEW information_schema. schema_privileges AS SELECT * FROM db_datadict.v1;
  6144. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6145. CREATE VIEW information_schema. table_privileges AS SELECT * FROM db_datadict.v1;
  6146. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6147. CREATE VIEW information_schema. column_privileges AS SELECT * FROM db_datadict.v1;
  6148. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6149. CREATE VIEW information_schema. table_constraints AS SELECT * FROM db_datadict.v1;
  6150. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6151. CREATE VIEW information_schema. key_column_usage AS SELECT * FROM db_datadict.v1;
  6152. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6153. CREATE VIEW information_schema. triggers AS SELECT * FROM db_datadict.v1;
  6154. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6155. root@localhost db_datadict
  6156. DROP USER user_4_1_7@localhost;
  6157. DROP VIEW db_datadict.v1;
  6158. Testcase 3.2.1.8:
  6159. --------------------------------------------------------------------------------
  6160. use information_schema;
  6161. create index i1 on schemata(schema_name);
  6162. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6163. create index i2 on tables(table_schema);
  6164. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6165. create index i3 on columns(table_name);
  6166. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6167. create index i4 on character_sets(character_set_name);
  6168. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6169. create index i5 on collations( collation_name);
  6170. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6171. create index i6 on collation_character_set_applicability(collation_name);
  6172. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6173. create index i7 on routines(routine_name);
  6174. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6175. create index i8 on statistics(table_schema);
  6176. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6177. create index i9 on views(table_schema);
  6178. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6179. create index i10 on user_privileges(privilege_type);
  6180. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6181. create index i11 on schema_privileges(table_schema);
  6182. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6183. create index i12 on table_privileges(able_schema);
  6184. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6185. create index i13 on column_privileges(table_name);
  6186. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6187. create index i14 on table_constraints(constraint_schema);
  6188. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6189. create index i15 on key_column_usage(constraint_schema);
  6190. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6191. create index i16 on triggers(trigger_name);
  6192. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6193. use db_datadict;
  6194. create index i15 on information_schema.key_column_usage(constraint_schema);
  6195. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6196. use information_schema;
  6197. CREATE USER user_4_1_8@localhost;
  6198. grant select, index on *.* to user_4_1_8@localhost;
  6199. FLUSH PRIVILEGES;
  6200. connect(localhost,user_4_1_8,,test,MYSQL_PORT,MYSQL_SOCK);
  6201. user_4_1_8@localhost test
  6202. use information_schema;
  6203. create index i1 on schemata(schema_name);
  6204. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6205. create index i2 on tables(table_schema);
  6206. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6207. create index i3 on columns(table_name);
  6208. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6209. create index i4 on character_sets(character_set_name);
  6210. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6211. create index i5 on collations( collation_name);
  6212. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6213. create index i6 on collation_character_set_applicability(collation_name);
  6214. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6215. create index i7 on routines(routine_name);
  6216. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6217. create index i8 on statistics(table_schema);
  6218. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6219. create index i9 on views(table_schema);
  6220. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6221. create index i10 on user_privileges(privilege_type);
  6222. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6223. create index i11 on schema_privileges(table_schema);
  6224. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6225. create index i12 on table_privileges(able_schema);
  6226. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6227. create index i13 on column_privileges(table_name);
  6228. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6229. create index i14 on table_constraints(constraint_schema);
  6230. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6231. create index i15 on key_column_usage(constraint_schema);
  6232. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6233. create index i16 on triggers(trigger_name);
  6234. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6235. use db_datadict;
  6236. create index i15 on information_schema.key_column_usage(constraint_schema);
  6237. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6238. root@localhost information_schema
  6239. DROP USER user_4_1_8@localhost;
  6240. Testcase 3.2.1.9:
  6241. --------------------------------------------------------------------------------
  6242. root: alter a table from other db
  6243. ---------------------------------
  6244. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6245. ---------------------------------------------------------------------------
  6246. ALTER TABLE information_schema. schemata ADD f1 INT;
  6247. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6248. ALTER TABLE information_schema. tables ADD f1 INT;
  6249. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6250. ALTER TABLE information_schema. columns ADD f1 INT;
  6251. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6252. ALTER TABLE information_schema. character_sets ADD f1 INT;
  6253. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6254. ALTER TABLE information_schema. collations ADD f1 INT;
  6255. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6256. ALTER TABLE information_schema. collation_character_set_applicability ADD f1 INT;
  6257. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6258. ALTER TABLE information_schema. routines ADD f1 INT;
  6259. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6260. ALTER TABLE information_schema. statistics ADD f1 INT;
  6261. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6262. ALTER TABLE information_schema. views ADD f1 INT;
  6263. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6264. ALTER TABLE information_schema. user_privileges ADD f1 INT;
  6265. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6266. ALTER TABLE information_schema. schema_privileges ADD f1 INT;
  6267. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6268. ALTER TABLE information_schema. table_privileges ADD f1 INT;
  6269. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6270. ALTER TABLE information_schema. column_privileges ADD f1 INT;
  6271. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6272. ALTER TABLE information_schema. table_constraints ADD f1 INT;
  6273. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6274. ALTER TABLE information_schema. key_column_usage ADD f1 INT;
  6275. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6276. ALTER TABLE information_schema. triggers ADD f1 INT;
  6277. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6278. use information_schema;
  6279. root: alter a table from directly
  6280. ---------------------------------
  6281. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6282. ---------------------------------------------------------------------------
  6283. ALTER TABLE schemata ADD f1 INT;
  6284. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6285. ALTER TABLE tables ADD f1 INT;
  6286. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6287. ALTER TABLE columns ADD f1 INT;
  6288. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6289. ALTER TABLE character_sets ADD f1 INT;
  6290. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6291. ALTER TABLE collations ADD f1 INT;
  6292. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6293. ALTER TABLE collation_character_set_applicability ADD f1 INT;
  6294. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6295. ALTER TABLE routines ADD f1 INT;
  6296. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6297. ALTER TABLE statistics ADD f1 INT;
  6298. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6299. ALTER TABLE views ADD f1 INT;
  6300. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6301. ALTER TABLE user_privileges ADD f1 INT;
  6302. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6303. ALTER TABLE schema_privileges ADD f1 INT;
  6304. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6305. ALTER TABLE table_privileges ADD f1 INT;
  6306. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6307. ALTER TABLE column_privileges ADD f1 INT;
  6308. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6309. ALTER TABLE table_constraints ADD f1 INT;
  6310. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6311. ALTER TABLE key_column_usage ADD f1 INT;
  6312. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6313. ALTER TABLE triggers ADD f1 INT;
  6314. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6315. alter table schemata add f1 int;
  6316. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6317. alter table tables drop primary key;
  6318. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6319. alter table columns add f1 int;
  6320. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6321. alter table character_sets disable keys;
  6322. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6323. alter table collations enable keys;
  6324. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6325. alter table collation_character_set_applicability add f1 int;
  6326. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6327. alter table routines discard tablespace;
  6328. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6329. alter table statistics import tablespace;
  6330. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6331. alter table views drop column table_name;
  6332. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6333. alter table user_privileges drop index privilege_type;
  6334. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6335. alter table schema_privileges drop column is_grantable;
  6336. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6337. alter table table_privileges order by constraint_type;
  6338. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6339. alter table column_privileges rename to aaxyz;
  6340. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6341. alter table table_constraints order by schema_name;
  6342. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6343. alter table key_column_usage rename to information_schema.aabxyz;
  6344. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6345. alter table triggers rename to information_schema.sql_mode;
  6346. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6347. CREATE USER user_4_1_9@localhost;
  6348. grant select, alter, create, insert on *.* to user_4_1_9@localhost;
  6349. FLUSH PRIVILEGES;
  6350. connect(localhost,user_4_1_9,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  6351. user_4_1_9@localhost db_datadict
  6352. use db_datadict;
  6353. user: alter a table from other db
  6354. ---------------------------------
  6355. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6356. ---------------------------------------------------------------------------
  6357. ALTER TABLE information_schema. schemata ADD f1 INT;
  6358. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6359. ALTER TABLE information_schema. tables ADD f1 INT;
  6360. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6361. ALTER TABLE information_schema. columns ADD f1 INT;
  6362. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6363. ALTER TABLE information_schema. character_sets ADD f1 INT;
  6364. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6365. ALTER TABLE information_schema. collations ADD f1 INT;
  6366. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6367. ALTER TABLE information_schema. collation_character_set_applicability ADD f1 INT;
  6368. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6369. ALTER TABLE information_schema. routines ADD f1 INT;
  6370. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6371. ALTER TABLE information_schema. statistics ADD f1 INT;
  6372. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6373. ALTER TABLE information_schema. views ADD f1 INT;
  6374. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6375. ALTER TABLE information_schema. user_privileges ADD f1 INT;
  6376. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6377. ALTER TABLE information_schema. schema_privileges ADD f1 INT;
  6378. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6379. ALTER TABLE information_schema. table_privileges ADD f1 INT;
  6380. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6381. ALTER TABLE information_schema. column_privileges ADD f1 INT;
  6382. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6383. ALTER TABLE information_schema. table_constraints ADD f1 INT;
  6384. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6385. ALTER TABLE information_schema. key_column_usage ADD f1 INT;
  6386. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6387. ALTER TABLE information_schema. triggers ADD f1 INT;
  6388. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6389. use information_schema;
  6390. user: alter a table from directly
  6391. ---------------------------------
  6392. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6393. ---------------------------------------------------------------------------
  6394. ALTER TABLE schemata ADD f1 INT;
  6395. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6396. ALTER TABLE tables ADD f1 INT;
  6397. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6398. ALTER TABLE columns ADD f1 INT;
  6399. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6400. ALTER TABLE character_sets ADD f1 INT;
  6401. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6402. ALTER TABLE collations ADD f1 INT;
  6403. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6404. ALTER TABLE collation_character_set_applicability ADD f1 INT;
  6405. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6406. ALTER TABLE routines ADD f1 INT;
  6407. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6408. ALTER TABLE statistics ADD f1 INT;
  6409. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6410. ALTER TABLE views ADD f1 INT;
  6411. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6412. ALTER TABLE user_privileges ADD f1 INT;
  6413. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6414. ALTER TABLE schema_privileges ADD f1 INT;
  6415. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6416. ALTER TABLE table_privileges ADD f1 INT;
  6417. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6418. ALTER TABLE column_privileges ADD f1 INT;
  6419. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6420. ALTER TABLE table_constraints ADD f1 INT;
  6421. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6422. ALTER TABLE key_column_usage ADD f1 INT;
  6423. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6424. ALTER TABLE triggers ADD f1 INT;
  6425. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6426. root@localhost information_schema
  6427. DROP USER user_4_1_9@localhost;
  6428. Testcase 3.2.1.10:
  6429. --------------------------------------------------------------------------------
  6430. use information_schema;
  6431. root: drop a table from IS
  6432. --------------------------
  6433. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6434. ---------------------------------------------------------------------------
  6435. DROP TABLE schemata ;
  6436. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6437. DROP TABLE tables ;
  6438. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6439. DROP TABLE columns ;
  6440. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6441. DROP TABLE character_sets ;
  6442. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6443. DROP TABLE collations ;
  6444. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6445. DROP TABLE collation_character_set_applicability ;
  6446. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6447. DROP TABLE routines ;
  6448. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6449. DROP TABLE statistics ;
  6450. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6451. DROP TABLE views ;
  6452. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6453. DROP TABLE user_privileges ;
  6454. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6455. DROP TABLE schema_privileges ;
  6456. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6457. DROP TABLE table_privileges ;
  6458. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6459. DROP TABLE column_privileges ;
  6460. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6461. DROP TABLE table_constraints ;
  6462. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6463. DROP TABLE key_column_usage ;
  6464. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6465. DROP TABLE triggers ;
  6466. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6467. use db_datadict;
  6468. root: drop a table from other db
  6469. --------------------------------
  6470. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6471. ---------------------------------------------------------------------------
  6472. DROP TABLE information_schema. schemata ;
  6473. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6474. DROP TABLE information_schema. tables ;
  6475. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6476. DROP TABLE information_schema. columns ;
  6477. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6478. DROP TABLE information_schema. character_sets ;
  6479. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6480. DROP TABLE information_schema. collations ;
  6481. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6482. DROP TABLE information_schema. collation_character_set_applicability ;
  6483. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6484. DROP TABLE information_schema. routines ;
  6485. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6486. DROP TABLE information_schema. statistics ;
  6487. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6488. DROP TABLE information_schema. views ;
  6489. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6490. DROP TABLE information_schema. user_privileges ;
  6491. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6492. DROP TABLE information_schema. schema_privileges ;
  6493. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6494. DROP TABLE information_schema. table_privileges ;
  6495. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6496. DROP TABLE information_schema. column_privileges ;
  6497. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6498. DROP TABLE information_schema. table_constraints ;
  6499. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6500. DROP TABLE information_schema. key_column_usage ;
  6501. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6502. DROP TABLE information_schema. triggers ;
  6503. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6504. use information_schema;
  6505. CREATE USER user_4_1_10@localhost;
  6506. GRANT SELECT, DROP ON *.* TO user_4_1_10@localhost;
  6507. FLUSH PRIVILEGES;
  6508. connect(localhost,user_4_1_10,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  6509. use information_schema;
  6510. user_4_1_10@localhost information_schema
  6511. user: drop a table from IS
  6512. --------------------------
  6513. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6514. ---------------------------------------------------------------------------
  6515. DROP TABLE schemata ;
  6516. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6517. DROP TABLE tables ;
  6518. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6519. DROP TABLE columns ;
  6520. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6521. DROP TABLE character_sets ;
  6522. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6523. DROP TABLE collations ;
  6524. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6525. DROP TABLE collation_character_set_applicability ;
  6526. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6527. DROP TABLE routines ;
  6528. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6529. DROP TABLE statistics ;
  6530. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6531. DROP TABLE views ;
  6532. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6533. DROP TABLE user_privileges ;
  6534. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6535. DROP TABLE schema_privileges ;
  6536. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6537. DROP TABLE table_privileges ;
  6538. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6539. DROP TABLE column_privileges ;
  6540. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6541. DROP TABLE table_constraints ;
  6542. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6543. DROP TABLE key_column_usage ;
  6544. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6545. DROP TABLE triggers ;
  6546. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6547. use db_datadict;
  6548. user: drop a table from other db
  6549. --------------------------------
  6550. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6551. ---------------------------------------------------------------------------
  6552. DROP TABLE information_schema. schemata ;
  6553. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6554. DROP TABLE information_schema. tables ;
  6555. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6556. DROP TABLE information_schema. columns ;
  6557. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6558. DROP TABLE information_schema. character_sets ;
  6559. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6560. DROP TABLE information_schema. collations ;
  6561. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6562. DROP TABLE information_schema. collation_character_set_applicability ;
  6563. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6564. DROP TABLE information_schema. routines ;
  6565. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6566. DROP TABLE information_schema. statistics ;
  6567. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6568. DROP TABLE information_schema. views ;
  6569. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6570. DROP TABLE information_schema. user_privileges ;
  6571. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6572. DROP TABLE information_schema. schema_privileges ;
  6573. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6574. DROP TABLE information_schema. table_privileges ;
  6575. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6576. DROP TABLE information_schema. column_privileges ;
  6577. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6578. DROP TABLE information_schema. table_constraints ;
  6579. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6580. DROP TABLE information_schema. key_column_usage ;
  6581. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6582. DROP TABLE information_schema. triggers ;
  6583. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6584. root@localhost information_schema
  6585. DROP USER user_4_1_10@localhost;
  6586. CREATE USER user_4_1_11@localhost;
  6587. GRANT SUPER ON *.* TO user_4_1_11@localhost;
  6588. FLUSH PRIVILEGES;
  6589. connect(localhost,user_4_1_11,,test,MYSQL_PORT,MYSQL_SOCK);
  6590. use information_schema;
  6591. user_4_1_11@localhost information_schema
  6592. drop table routines;
  6593. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  6594. alter table collations enable keys;
  6595. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  6596. create index i5 on collations( collation_name );
  6597. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  6598. create view v1 as select * from schemata;
  6599. ERROR 42S02: Unknown table 'v1' in information_schema
  6600. delete from columns;
  6601. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  6602. update columns set table_name = 't4' where column_name = 'f2';
  6603. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  6604. insert into collations ( collation_name, character_set_name, id, is_default,
  6605. is_compiled, sortlen)
  6606. values ('cp1251_bin', 'cp1251', 50, '', '', 0);
  6607. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  6608. root@localhost information_schema
  6609. DROP USER user_4_1_11@localhost;
  6610. Testcase 3.2.1.11:
  6611. --------------------------------------------------------------------------------
  6612. DROP DATABASE IF EXISTS db_datadict;
  6613. CREATE DATABASE db_datadict;
  6614. CREATE USER 'u_6_401011'@'localhost';
  6615. GRANT ALL ON information_schema.* TO 'u_6_401011'@'localhost';
  6616. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6617. GRANT ALL ON db_datadict.* TO 'u_6_401011'@'localhost';
  6618. FLUSH PRIVILEGES;
  6619. ALTER TABLE information_schema.schemata RENAME db_datadict.schemata;
  6620. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6621. root: move table to other DB
  6622. ----------------------------
  6623. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6624. ---------------------------------------------------------------------------
  6625. ALTER TABLE information_schema. schemata RENAME db_datadict.tb_01;
  6626. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6627. ALTER TABLE information_schema. tables RENAME db_datadict.tb_01;
  6628. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6629. ALTER TABLE information_schema. columns RENAME db_datadict.tb_01;
  6630. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6631. ALTER TABLE information_schema. character_sets RENAME db_datadict.tb_01;
  6632. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6633. ALTER TABLE information_schema. collations RENAME db_datadict.tb_01;
  6634. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6635. ALTER TABLE information_schema. collation_character_set_applicability RENAME db_datadict.tb_01;
  6636. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6637. ALTER TABLE information_schema. routines RENAME db_datadict.tb_01;
  6638. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6639. ALTER TABLE information_schema. statistics RENAME db_datadict.tb_01;
  6640. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6641. ALTER TABLE information_schema. views RENAME db_datadict.tb_01;
  6642. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6643. ALTER TABLE information_schema. user_privileges RENAME db_datadict.tb_01;
  6644. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6645. ALTER TABLE information_schema. schema_privileges RENAME db_datadict.tb_01;
  6646. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6647. ALTER TABLE information_schema. table_privileges RENAME db_datadict.tb_01;
  6648. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6649. ALTER TABLE information_schema. column_privileges RENAME db_datadict.tb_01;
  6650. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6651. ALTER TABLE information_schema. table_constraints RENAME db_datadict.tb_01;
  6652. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6653. ALTER TABLE information_schema. key_column_usage RENAME db_datadict.tb_01;
  6654. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6655. ALTER TABLE information_schema. triggers RENAME db_datadict.tb_01;
  6656. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6657. connect(localhost,u_6_401011,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  6658. USE information_schema;
  6659. u_6_401011@localhost information_schema
  6660. ALTER TABLE information_schema.schemata RENAME db_datadict.schemata;
  6661. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6662. user: move table to other DB
  6663. ----------------------------
  6664. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6665. ---------------------------------------------------------------------------
  6666. ALTER TABLE information_schema. schemata RENAME db_datadict.tb_01;
  6667. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6668. ALTER TABLE information_schema. tables RENAME db_datadict.tb_01;
  6669. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6670. ALTER TABLE information_schema. columns RENAME db_datadict.tb_01;
  6671. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6672. ALTER TABLE information_schema. character_sets RENAME db_datadict.tb_01;
  6673. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6674. ALTER TABLE information_schema. collations RENAME db_datadict.tb_01;
  6675. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6676. ALTER TABLE information_schema. collation_character_set_applicability RENAME db_datadict.tb_01;
  6677. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6678. ALTER TABLE information_schema. routines RENAME db_datadict.tb_01;
  6679. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6680. ALTER TABLE information_schema. statistics RENAME db_datadict.tb_01;
  6681. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6682. ALTER TABLE information_schema. views RENAME db_datadict.tb_01;
  6683. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6684. ALTER TABLE information_schema. user_privileges RENAME db_datadict.tb_01;
  6685. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6686. ALTER TABLE information_schema. schema_privileges RENAME db_datadict.tb_01;
  6687. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6688. ALTER TABLE information_schema. table_privileges RENAME db_datadict.tb_01;
  6689. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6690. ALTER TABLE information_schema. column_privileges RENAME db_datadict.tb_01;
  6691. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6692. ALTER TABLE information_schema. table_constraints RENAME db_datadict.tb_01;
  6693. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6694. ALTER TABLE information_schema. key_column_usage RENAME db_datadict.tb_01;
  6695. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6696. ALTER TABLE information_schema. triggers RENAME db_datadict.tb_01;
  6697. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6698. root@localhost information_schema
  6699. DROP TABLE IF EXISTS db_datadict.schemata;
  6700. DROP USER 'u_6_401011'@'localhost';
  6701. Testcase 3.2.1.12:
  6702. --------------------------------------------------------------------------------
  6703. root: delete from IS tables
  6704. ---------------------------
  6705. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6706. ---------------------------------------------------------------------------
  6707. DELETE FROM information_schema. schemata ;
  6708. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6709. DELETE FROM information_schema. tables ;
  6710. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6711. DELETE FROM information_schema. columns ;
  6712. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6713. DELETE FROM information_schema. character_sets ;
  6714. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6715. DELETE FROM information_schema. collations ;
  6716. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6717. DELETE FROM information_schema. collation_character_set_applicability ;
  6718. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6719. DELETE FROM information_schema. routines ;
  6720. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6721. DELETE FROM information_schema. statistics ;
  6722. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6723. DELETE FROM information_schema. views ;
  6724. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6725. DELETE FROM information_schema. user_privileges ;
  6726. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6727. DELETE FROM information_schema. schema_privileges ;
  6728. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6729. DELETE FROM information_schema. table_privileges ;
  6730. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6731. DELETE FROM information_schema. column_privileges ;
  6732. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6733. DELETE FROM information_schema. table_constraints ;
  6734. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6735. DELETE FROM information_schema. key_column_usage ;
  6736. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6737. DELETE FROM information_schema. triggers ;
  6738. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6739. UPDATE information_schema.tables SET table_name = 't_4711';
  6740. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6741. UPDATE information_schema.columns SET table_name = 't_4711';
  6742. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6743. UPDATE information_schema.statistics SET table_name = 't_4711';
  6744. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6745. UPDATE information_schema.views SET table_name = 't_4711';
  6746. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6747. UPDATE information_schema.table_privileges SET table_name = 't_4711';
  6748. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6749. UPDATE information_schema.column_privileges SET table_name = 't_4711';
  6750. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6751. UPDATE information_schema.table_constraints SET table_name = 't_4711';
  6752. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6753. UPDATE information_schema.key_column_usage SET table_name = 't_4711';
  6754. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6755. UPDATE information_schema.schemata SET catalog_name = 't_4711';
  6756. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6757. UPDATE information_schema.character_sets SET description = 't_4711';
  6758. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6759. UPDATE information_schema.collations SET character_set_name = 't_4711';
  6760. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6761. UPDATE information_schema.collation_character_set_applicability
  6762. SET character_set_name = 't_4711';
  6763. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6764. UPDATE information_schema.routines SET routine_type = 't_4711';
  6765. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6766. UPDATE information_schema.user_privileges SET grantee = 't_4711';
  6767. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6768. UPDATE information_schema.schema_privileges SET grantee = 't_4711';
  6769. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6770. UPDATE information_schema.triggers SET sql_mode = 't_4711';
  6771. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6772. CREATE USER 'u_6_401012'@'localhost';
  6773. connect(localhost,u_6_401012,,test,MYSQL_PORT,MYSQL_SOCK);
  6774. use information_schema;
  6775. insert into information_schema.schemata (catalog_name, schema_name,
  6776. default_character_set_name, sql_path)
  6777. values (null, information_schema1, utf16, null);
  6778. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  6779. alter table information_schema.schemata rename db_datadict1.schemata;
  6780. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  6781. alter table information_schema.tables drop column checksum;
  6782. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  6783. alter table information_schema.statistics modify packed int;
  6784. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  6785. alter table information_schema.routines modify created int not null;
  6786. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  6787. alter table information_schema.key_column_usage drop column ordinal_position;
  6788. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  6789. alter table information_schema.table_privileges
  6790. change privilege_type rights_approved varchar(32);
  6791. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  6792. update columns set table_name = 't4' where column_name = 'f2';
  6793. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  6794. delete from information_schema.collations;
  6795. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  6796. root@localhost information_schema
  6797. drop table if exists db_datadict1.schemata;
  6798. DROP USER 'u_6_401012'@'localhost';
  6799. Testcase 3.2.1.13:
  6800. --------------------------------------------------------------------------------
  6801. use information_schema;
  6802. first check status >before< creating the objects ...
  6803. ----------------------------------------------------
  6804. select *
  6805. from information_schema.schemata
  6806. where schema_name like 'db_datadict%';
  6807. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  6808. NULL db_datadict latin1 latin1_swedish_ci NULL
  6809. select table_catalog, table_schema, engine
  6810. from information_schema.tables
  6811. where table_schema like 'db_datadict%';
  6812. table_catalog table_schema engine
  6813. select *
  6814. from information_schema.columns
  6815. where table_schema like 'db_datadict%';
  6816. 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
  6817. select table_schema, table_name, is_updatable
  6818. from information_schema.views
  6819. where table_schema like 'db_datadict%';
  6820. table_schema table_name is_updatable
  6821. select routine_name, routine_type, security_type, sql_mode
  6822. from information_schema.routines
  6823. where routine_schema like 'db_datadict%';
  6824. routine_name routine_type security_type sql_mode
  6825. select table_name, index_schema, index_name, index_type
  6826. from information_schema.statistics
  6827. where table_schema like 'db_datadict%';
  6828. table_name index_schema index_name index_type
  6829. select *
  6830. from information_schema.user_privileges order by grantee, privilege_type;
  6831. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  6832. 'root'@'127.0.0.1' NULL ALTER YES
  6833. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  6834. 'root'@'127.0.0.1' NULL CREATE YES
  6835. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  6836. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  6837. 'root'@'127.0.0.1' NULL CREATE USER YES
  6838. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  6839. 'root'@'127.0.0.1' NULL DELETE YES
  6840. 'root'@'127.0.0.1' NULL DROP YES
  6841. 'root'@'127.0.0.1' NULL EVENT YES
  6842. 'root'@'127.0.0.1' NULL EXECUTE YES
  6843. 'root'@'127.0.0.1' NULL FILE YES
  6844. 'root'@'127.0.0.1' NULL INDEX YES
  6845. 'root'@'127.0.0.1' NULL INSERT YES
  6846. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  6847. 'root'@'127.0.0.1' NULL PROCESS YES
  6848. 'root'@'127.0.0.1' NULL REFERENCES YES
  6849. 'root'@'127.0.0.1' NULL RELOAD YES
  6850. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  6851. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  6852. 'root'@'127.0.0.1' NULL SELECT YES
  6853. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  6854. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  6855. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  6856. 'root'@'127.0.0.1' NULL SUPER YES
  6857. 'root'@'127.0.0.1' NULL TRIGGER YES
  6858. 'root'@'127.0.0.1' NULL UPDATE YES
  6859. 'root'@'<SERVER_NAME>' NULL ALTER YES
  6860. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  6861. 'root'@'<SERVER_NAME>' NULL CREATE YES
  6862. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  6863. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  6864. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  6865. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  6866. 'root'@'<SERVER_NAME>' NULL DELETE YES
  6867. 'root'@'<SERVER_NAME>' NULL DROP YES
  6868. 'root'@'<SERVER_NAME>' NULL EVENT YES
  6869. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  6870. 'root'@'<SERVER_NAME>' NULL FILE YES
  6871. 'root'@'<SERVER_NAME>' NULL INDEX YES
  6872. 'root'@'<SERVER_NAME>' NULL INSERT YES
  6873. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  6874. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  6875. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  6876. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  6877. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  6878. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  6879. 'root'@'<SERVER_NAME>' NULL SELECT YES
  6880. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  6881. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  6882. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  6883. 'root'@'<SERVER_NAME>' NULL SUPER YES
  6884. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  6885. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  6886. 'root'@'localhost' NULL ALTER YES
  6887. 'root'@'localhost' NULL ALTER ROUTINE YES
  6888. 'root'@'localhost' NULL CREATE YES
  6889. 'root'@'localhost' NULL CREATE ROUTINE YES
  6890. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  6891. 'root'@'localhost' NULL CREATE USER YES
  6892. 'root'@'localhost' NULL CREATE VIEW YES
  6893. 'root'@'localhost' NULL DELETE YES
  6894. 'root'@'localhost' NULL DROP YES
  6895. 'root'@'localhost' NULL EVENT YES
  6896. 'root'@'localhost' NULL EXECUTE YES
  6897. 'root'@'localhost' NULL FILE YES
  6898. 'root'@'localhost' NULL INDEX YES
  6899. 'root'@'localhost' NULL INSERT YES
  6900. 'root'@'localhost' NULL LOCK TABLES YES
  6901. 'root'@'localhost' NULL PROCESS YES
  6902. 'root'@'localhost' NULL REFERENCES YES
  6903. 'root'@'localhost' NULL RELOAD YES
  6904. 'root'@'localhost' NULL REPLICATION CLIENT YES
  6905. 'root'@'localhost' NULL REPLICATION SLAVE YES
  6906. 'root'@'localhost' NULL SELECT YES
  6907. 'root'@'localhost' NULL SHOW DATABASES YES
  6908. 'root'@'localhost' NULL SHOW VIEW YES
  6909. 'root'@'localhost' NULL SHUTDOWN YES
  6910. 'root'@'localhost' NULL SUPER YES
  6911. 'root'@'localhost' NULL TRIGGER YES
  6912. 'root'@'localhost' NULL UPDATE YES
  6913. select *
  6914. from information_schema.column_privileges
  6915. where table_schema like 'db_datadict%';
  6916. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  6917. select *
  6918. from information_schema.table_privileges
  6919. where table_schema like 'db_datadict%';
  6920. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  6921. select *
  6922. from information_schema.key_column_usage
  6923. where table_schema like 'db_datadict%';
  6924. 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
  6925. SELECT *
  6926. FROM information_schema.triggers
  6927. WHERE trigger_schema LIKE 'db_datadict%';
  6928. 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
  6929. DROP DATABASE IF EXISTS db_datadict;
  6930. CREATE DATABASE db_datadict;
  6931. USE db_datadict;
  6932. create table res_t_401013(f1 char(10), f2 char(25), f3 int)
  6933. engine = ndb;
  6934. create view res_v_401013 as select * from res_t_401013;
  6935. CREATE USER u_6_401013@localhost;
  6936. create procedure sp_6_401013() select 'db_datadict';
  6937. create function fn_6_401013() returns int return 0;
  6938. create index i_6_401013 on res_t_401013(f3);
  6939. use information_schema;
  6940. now check whether all new objects exists in IS ...
  6941. --------------------------------------------------
  6942. select *
  6943. from information_schema.schemata
  6944. where schema_name like 'db_datadict%';
  6945. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  6946. NULL db_datadict latin1 latin1_swedish_ci NULL
  6947. select table_catalog, table_schema, engine
  6948. from information_schema.tables
  6949. where table_schema like 'db_datadict%';
  6950. table_catalog table_schema engine
  6951. NULL db_datadict ndbcluster
  6952. NULL db_datadict NULL
  6953. select *
  6954. from information_schema.columns
  6955. where table_schema like 'db_datadict%';
  6956. 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
  6957. 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
  6958. 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
  6959. NULL db_datadict res_t_401013 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) MUL select,insert,update,references
  6960. 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
  6961. 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
  6962. NULL db_datadict res_v_401013 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  6963. select table_schema, table_name, is_updatable
  6964. from information_schema.views
  6965. where table_schema like 'db_datadict%';
  6966. table_schema table_name is_updatable
  6967. db_datadict res_v_401013 YES
  6968. select routine_name, routine_type, security_type, sql_mode
  6969. from information_schema.routines
  6970. where routine_schema like 'db_datadict%';
  6971. routine_name routine_type security_type sql_mode
  6972. fn_6_401013 FUNCTION DEFINER
  6973. sp_6_401013 PROCEDURE DEFINER
  6974. select table_name, index_schema, index_name, index_type
  6975. from information_schema.statistics
  6976. where table_schema like 'db_datadict%';
  6977. table_name index_schema index_name index_type
  6978. res_t_401013 db_datadict i_6_401013 BTREE
  6979. select *
  6980. from information_schema.user_privileges order by grantee, privilege_type;
  6981. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  6982. 'root'@'127.0.0.1' NULL ALTER YES
  6983. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  6984. 'root'@'127.0.0.1' NULL CREATE YES
  6985. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  6986. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  6987. 'root'@'127.0.0.1' NULL CREATE USER YES
  6988. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  6989. 'root'@'127.0.0.1' NULL DELETE YES
  6990. 'root'@'127.0.0.1' NULL DROP YES
  6991. 'root'@'127.0.0.1' NULL EVENT YES
  6992. 'root'@'127.0.0.1' NULL EXECUTE YES
  6993. 'root'@'127.0.0.1' NULL FILE YES
  6994. 'root'@'127.0.0.1' NULL INDEX YES
  6995. 'root'@'127.0.0.1' NULL INSERT YES
  6996. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  6997. 'root'@'127.0.0.1' NULL PROCESS YES
  6998. 'root'@'127.0.0.1' NULL REFERENCES YES
  6999. 'root'@'127.0.0.1' NULL RELOAD YES
  7000. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7001. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7002. 'root'@'127.0.0.1' NULL SELECT YES
  7003. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7004. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7005. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7006. 'root'@'127.0.0.1' NULL SUPER YES
  7007. 'root'@'127.0.0.1' NULL TRIGGER YES
  7008. 'root'@'127.0.0.1' NULL UPDATE YES
  7009. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7010. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7011. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7012. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7013. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7014. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7015. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7016. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7017. 'root'@'<SERVER_NAME>' NULL DROP YES
  7018. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7019. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7020. 'root'@'<SERVER_NAME>' NULL FILE YES
  7021. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7022. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7023. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7024. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7025. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7026. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7027. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7028. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7029. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7030. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7031. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7032. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7033. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7034. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7035. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7036. 'root'@'localhost' NULL ALTER YES
  7037. 'root'@'localhost' NULL ALTER ROUTINE YES
  7038. 'root'@'localhost' NULL CREATE YES
  7039. 'root'@'localhost' NULL CREATE ROUTINE YES
  7040. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7041. 'root'@'localhost' NULL CREATE USER YES
  7042. 'root'@'localhost' NULL CREATE VIEW YES
  7043. 'root'@'localhost' NULL DELETE YES
  7044. 'root'@'localhost' NULL DROP YES
  7045. 'root'@'localhost' NULL EVENT YES
  7046. 'root'@'localhost' NULL EXECUTE YES
  7047. 'root'@'localhost' NULL FILE YES
  7048. 'root'@'localhost' NULL INDEX YES
  7049. 'root'@'localhost' NULL INSERT YES
  7050. 'root'@'localhost' NULL LOCK TABLES YES
  7051. 'root'@'localhost' NULL PROCESS YES
  7052. 'root'@'localhost' NULL REFERENCES YES
  7053. 'root'@'localhost' NULL RELOAD YES
  7054. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7055. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7056. 'root'@'localhost' NULL SELECT YES
  7057. 'root'@'localhost' NULL SHOW DATABASES YES
  7058. 'root'@'localhost' NULL SHOW VIEW YES
  7059. 'root'@'localhost' NULL SHUTDOWN YES
  7060. 'root'@'localhost' NULL SUPER YES
  7061. 'root'@'localhost' NULL TRIGGER YES
  7062. 'root'@'localhost' NULL UPDATE YES
  7063. 'u_6_401013'@'localhost' NULL USAGE NO
  7064. select *
  7065. from information_schema.column_privileges
  7066. where table_schema like 'db_datadict%';
  7067. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7068. select *
  7069. from information_schema.table_privileges
  7070. where table_schema like 'db_datadict%';
  7071. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7072. select *
  7073. from information_schema.key_column_usage
  7074. where table_schema like 'db_datadict%';
  7075. 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
  7076. SELECT *
  7077. FROM information_schema.triggers
  7078. WHERE trigger_schema LIKE 'db_datadict%';
  7079. 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
  7080. use db_datadict;
  7081. drop index i_6_401013 on res_t_401013;
  7082. drop table db_datadict.res_t_401013;
  7083. drop view db_datadict.res_v_401013;
  7084. DROP USER u_6_401013@localhost;
  7085. drop procedure sp_6_401013;
  7086. drop function fn_6_401013;
  7087. drop database db_datadict;
  7088. use information_schema;
  7089. and now check whether all objects are removed from IS ...
  7090. ---------------------------------------------------------
  7091. select *
  7092. from information_schema.schemata
  7093. where schema_name like 'db_datadict%';
  7094. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7095. select table_catalog, table_schema, engine
  7096. from information_schema.tables
  7097. where table_schema like 'db_datadict%';
  7098. table_catalog table_schema engine
  7099. select *
  7100. from information_schema.columns
  7101. where table_schema like 'db_datadict%';
  7102. 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
  7103. select table_schema, table_name, is_updatable
  7104. from information_schema.views
  7105. where table_schema like 'db_datadict%';
  7106. table_schema table_name is_updatable
  7107. select routine_name, routine_type, security_type, sql_mode
  7108. from information_schema.routines
  7109. where routine_schema like 'db_datadict%';
  7110. routine_name routine_type security_type sql_mode
  7111. select table_name, index_schema, index_name, index_type
  7112. from information_schema.statistics
  7113. where table_schema like 'db_datadict%';
  7114. table_name index_schema index_name index_type
  7115. select *
  7116. from information_schema.user_privileges order by grantee, privilege_type;
  7117. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7118. 'root'@'127.0.0.1' NULL ALTER YES
  7119. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7120. 'root'@'127.0.0.1' NULL CREATE YES
  7121. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7122. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7123. 'root'@'127.0.0.1' NULL CREATE USER YES
  7124. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7125. 'root'@'127.0.0.1' NULL DELETE YES
  7126. 'root'@'127.0.0.1' NULL DROP YES
  7127. 'root'@'127.0.0.1' NULL EVENT YES
  7128. 'root'@'127.0.0.1' NULL EXECUTE YES
  7129. 'root'@'127.0.0.1' NULL FILE YES
  7130. 'root'@'127.0.0.1' NULL INDEX YES
  7131. 'root'@'127.0.0.1' NULL INSERT YES
  7132. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7133. 'root'@'127.0.0.1' NULL PROCESS YES
  7134. 'root'@'127.0.0.1' NULL REFERENCES YES
  7135. 'root'@'127.0.0.1' NULL RELOAD YES
  7136. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7137. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7138. 'root'@'127.0.0.1' NULL SELECT YES
  7139. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7140. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7141. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7142. 'root'@'127.0.0.1' NULL SUPER YES
  7143. 'root'@'127.0.0.1' NULL TRIGGER YES
  7144. 'root'@'127.0.0.1' NULL UPDATE YES
  7145. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7146. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7147. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7148. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7149. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7150. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7151. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7152. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7153. 'root'@'<SERVER_NAME>' NULL DROP YES
  7154. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7155. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7156. 'root'@'<SERVER_NAME>' NULL FILE YES
  7157. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7158. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7159. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7160. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7161. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7162. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7163. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7164. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7165. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7166. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7167. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7168. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7169. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7170. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7171. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7172. 'root'@'localhost' NULL ALTER YES
  7173. 'root'@'localhost' NULL ALTER ROUTINE YES
  7174. 'root'@'localhost' NULL CREATE YES
  7175. 'root'@'localhost' NULL CREATE ROUTINE YES
  7176. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7177. 'root'@'localhost' NULL CREATE USER YES
  7178. 'root'@'localhost' NULL CREATE VIEW YES
  7179. 'root'@'localhost' NULL DELETE YES
  7180. 'root'@'localhost' NULL DROP YES
  7181. 'root'@'localhost' NULL EVENT YES
  7182. 'root'@'localhost' NULL EXECUTE YES
  7183. 'root'@'localhost' NULL FILE YES
  7184. 'root'@'localhost' NULL INDEX YES
  7185. 'root'@'localhost' NULL INSERT YES
  7186. 'root'@'localhost' NULL LOCK TABLES YES
  7187. 'root'@'localhost' NULL PROCESS YES
  7188. 'root'@'localhost' NULL REFERENCES YES
  7189. 'root'@'localhost' NULL RELOAD YES
  7190. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7191. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7192. 'root'@'localhost' NULL SELECT YES
  7193. 'root'@'localhost' NULL SHOW DATABASES YES
  7194. 'root'@'localhost' NULL SHOW VIEW YES
  7195. 'root'@'localhost' NULL SHUTDOWN YES
  7196. 'root'@'localhost' NULL SUPER YES
  7197. 'root'@'localhost' NULL TRIGGER YES
  7198. 'root'@'localhost' NULL UPDATE YES
  7199. select *
  7200. from information_schema.column_privileges
  7201. where table_schema like 'db_datadict%';
  7202. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7203. select *
  7204. from information_schema.table_privileges
  7205. where table_schema like 'db_datadict%';
  7206. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7207. select *
  7208. from information_schema.key_column_usage
  7209. where table_schema like 'db_datadict%';
  7210. 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
  7211. SELECT *
  7212. FROM information_schema.triggers
  7213. WHERE trigger_schema LIKE 'db_datadict%';
  7214. 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
  7215. Testcase 3.2.1.14:
  7216. --------------------------------------------------------------------------------
  7217. DROP DATABASE IF EXISTS db_datadict;
  7218. CREATE DATABASE db_datadict;
  7219. USE db_datadict;
  7220. create table res_t_401014(f1 char(10), f2 varchar(25), f3 int);
  7221. create view res_v_401014 as select * from res_t_401014;
  7222. create procedure sp_6_401014() select 'db_datadict';
  7223. create function fn_6_401014() returns int return 0;
  7224. show existing objects >before< changing them ...
  7225. ------------------------------------------------
  7226. select *
  7227. from information_schema.schemata
  7228. where schema_name like 'db_datadict%';
  7229. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7230. NULL db_datadict latin1 latin1_swedish_ci NULL
  7231. select table_catalog, table_schema, engine
  7232. from information_schema.tables
  7233. where table_schema like 'db_datadict%';
  7234. table_catalog table_schema engine
  7235. NULL db_datadict MyISAM
  7236. NULL db_datadict NULL
  7237. select *
  7238. from information_schema.columns
  7239. where table_schema like 'db_datadict%';
  7240. 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
  7241. 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
  7242. 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
  7243. NULL db_datadict res_t_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7244. 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
  7245. 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
  7246. NULL db_datadict res_v_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7247. select table_schema, table_name, is_updatable
  7248. from information_schema.views
  7249. where table_schema like 'db_datadict%';
  7250. table_schema table_name is_updatable
  7251. db_datadict res_v_401014 YES
  7252. select routine_name, routine_type, security_type, sql_mode
  7253. from information_schema.routines
  7254. where routine_schema like 'db_datadict%';
  7255. routine_name routine_type security_type sql_mode
  7256. fn_6_401014 FUNCTION DEFINER
  7257. sp_6_401014 PROCEDURE DEFINER
  7258. select table_name, index_schema, index_name, index_type
  7259. from information_schema.statistics
  7260. where table_schema like 'db_datadict%';
  7261. table_name index_schema index_name index_type
  7262. select *
  7263. from information_schema.user_privileges order by grantee, privilege_type;
  7264. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7265. 'root'@'127.0.0.1' NULL ALTER YES
  7266. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7267. 'root'@'127.0.0.1' NULL CREATE YES
  7268. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7269. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7270. 'root'@'127.0.0.1' NULL CREATE USER YES
  7271. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7272. 'root'@'127.0.0.1' NULL DELETE YES
  7273. 'root'@'127.0.0.1' NULL DROP YES
  7274. 'root'@'127.0.0.1' NULL EVENT YES
  7275. 'root'@'127.0.0.1' NULL EXECUTE YES
  7276. 'root'@'127.0.0.1' NULL FILE YES
  7277. 'root'@'127.0.0.1' NULL INDEX YES
  7278. 'root'@'127.0.0.1' NULL INSERT YES
  7279. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7280. 'root'@'127.0.0.1' NULL PROCESS YES
  7281. 'root'@'127.0.0.1' NULL REFERENCES YES
  7282. 'root'@'127.0.0.1' NULL RELOAD YES
  7283. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7284. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7285. 'root'@'127.0.0.1' NULL SELECT YES
  7286. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7287. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7288. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7289. 'root'@'127.0.0.1' NULL SUPER YES
  7290. 'root'@'127.0.0.1' NULL TRIGGER YES
  7291. 'root'@'127.0.0.1' NULL UPDATE YES
  7292. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7293. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7294. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7295. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7296. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7297. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7298. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7299. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7300. 'root'@'<SERVER_NAME>' NULL DROP YES
  7301. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7302. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7303. 'root'@'<SERVER_NAME>' NULL FILE YES
  7304. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7305. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7306. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7307. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7308. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7309. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7310. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7311. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7312. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7313. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7314. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7315. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7316. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7317. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7318. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7319. 'root'@'localhost' NULL ALTER YES
  7320. 'root'@'localhost' NULL ALTER ROUTINE YES
  7321. 'root'@'localhost' NULL CREATE YES
  7322. 'root'@'localhost' NULL CREATE ROUTINE YES
  7323. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7324. 'root'@'localhost' NULL CREATE USER YES
  7325. 'root'@'localhost' NULL CREATE VIEW YES
  7326. 'root'@'localhost' NULL DELETE YES
  7327. 'root'@'localhost' NULL DROP YES
  7328. 'root'@'localhost' NULL EVENT YES
  7329. 'root'@'localhost' NULL EXECUTE YES
  7330. 'root'@'localhost' NULL FILE YES
  7331. 'root'@'localhost' NULL INDEX YES
  7332. 'root'@'localhost' NULL INSERT YES
  7333. 'root'@'localhost' NULL LOCK TABLES YES
  7334. 'root'@'localhost' NULL PROCESS YES
  7335. 'root'@'localhost' NULL REFERENCES YES
  7336. 'root'@'localhost' NULL RELOAD YES
  7337. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7338. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7339. 'root'@'localhost' NULL SELECT YES
  7340. 'root'@'localhost' NULL SHOW DATABASES YES
  7341. 'root'@'localhost' NULL SHOW VIEW YES
  7342. 'root'@'localhost' NULL SHUTDOWN YES
  7343. 'root'@'localhost' NULL SUPER YES
  7344. 'root'@'localhost' NULL TRIGGER YES
  7345. 'root'@'localhost' NULL UPDATE YES
  7346. select *
  7347. from information_schema.column_privileges
  7348. where table_schema like 'db_datadict%';
  7349. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7350. select *
  7351. from information_schema.table_privileges
  7352. where table_schema like 'db_datadict%';
  7353. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7354. select *
  7355. from information_schema.key_column_usage
  7356. where table_schema like 'db_datadict%';
  7357. 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
  7358. SELECT *
  7359. FROM information_schema.triggers
  7360. WHERE trigger_schema LIKE 'db_datadict%';
  7361. 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
  7362. use db_datadict;
  7363. alter table res_t_401014 change f1 ff1 int;
  7364. alter table res_t_401014 engine = MEMORY;
  7365. alter table res_t_401014 change f3 f3_new bigint;
  7366. alter view res_v_401014 as select ff1 from res_t_401014;
  7367. alter procedure sp_6_401014 sql security invoker;
  7368. alter function fn_6_401014 comment 'updated comments';
  7369. alter database db_datadict character set utf8;
  7370. now check whether the changes are visible in IS ...
  7371. ---------------------------------------------------
  7372. select *
  7373. from information_schema.schemata
  7374. where schema_name like 'db_datadict%';
  7375. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7376. NULL db_datadict utf8 utf8_general_ci NULL
  7377. select table_catalog, table_schema, engine
  7378. from information_schema.tables
  7379. where table_schema like 'db_datadict%';
  7380. table_catalog table_schema engine
  7381. NULL db_datadict MEMORY
  7382. NULL db_datadict NULL
  7383. select *
  7384. from information_schema.columns
  7385. where table_schema like 'db_datadict%';
  7386. 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
  7387. NULL db_datadict res_t_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7388. 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
  7389. NULL db_datadict res_t_401014 f3_new 3 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  7390. NULL db_datadict res_v_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7391. select table_schema, table_name, is_updatable
  7392. from information_schema.views
  7393. where table_schema like 'db_datadict%';
  7394. table_schema table_name is_updatable
  7395. db_datadict res_v_401014 YES
  7396. select routine_name, routine_type, security_type, sql_mode
  7397. from information_schema.routines
  7398. where routine_schema like 'db_datadict%';
  7399. routine_name routine_type security_type sql_mode
  7400. fn_6_401014 FUNCTION DEFINER
  7401. sp_6_401014 PROCEDURE INVOKER
  7402. select table_name, index_schema, index_name, index_type
  7403. from information_schema.statistics
  7404. where table_schema like 'db_datadict%';
  7405. table_name index_schema index_name index_type
  7406. select *
  7407. from information_schema.user_privileges order by grantee, privilege_type;
  7408. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7409. 'root'@'127.0.0.1' NULL ALTER YES
  7410. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7411. 'root'@'127.0.0.1' NULL CREATE YES
  7412. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7413. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7414. 'root'@'127.0.0.1' NULL CREATE USER YES
  7415. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7416. 'root'@'127.0.0.1' NULL DELETE YES
  7417. 'root'@'127.0.0.1' NULL DROP YES
  7418. 'root'@'127.0.0.1' NULL EVENT YES
  7419. 'root'@'127.0.0.1' NULL EXECUTE YES
  7420. 'root'@'127.0.0.1' NULL FILE YES
  7421. 'root'@'127.0.0.1' NULL INDEX YES
  7422. 'root'@'127.0.0.1' NULL INSERT YES
  7423. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7424. 'root'@'127.0.0.1' NULL PROCESS YES
  7425. 'root'@'127.0.0.1' NULL REFERENCES YES
  7426. 'root'@'127.0.0.1' NULL RELOAD YES
  7427. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7428. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7429. 'root'@'127.0.0.1' NULL SELECT YES
  7430. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7431. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7432. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7433. 'root'@'127.0.0.1' NULL SUPER YES
  7434. 'root'@'127.0.0.1' NULL TRIGGER YES
  7435. 'root'@'127.0.0.1' NULL UPDATE YES
  7436. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7437. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7438. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7439. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7440. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7441. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7442. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7443. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7444. 'root'@'<SERVER_NAME>' NULL DROP YES
  7445. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7446. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7447. 'root'@'<SERVER_NAME>' NULL FILE YES
  7448. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7449. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7450. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7451. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7452. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7453. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7454. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7455. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7456. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7457. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7458. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7459. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7460. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7461. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7462. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7463. 'root'@'localhost' NULL ALTER YES
  7464. 'root'@'localhost' NULL ALTER ROUTINE YES
  7465. 'root'@'localhost' NULL CREATE YES
  7466. 'root'@'localhost' NULL CREATE ROUTINE YES
  7467. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7468. 'root'@'localhost' NULL CREATE USER YES
  7469. 'root'@'localhost' NULL CREATE VIEW YES
  7470. 'root'@'localhost' NULL DELETE YES
  7471. 'root'@'localhost' NULL DROP YES
  7472. 'root'@'localhost' NULL EVENT YES
  7473. 'root'@'localhost' NULL EXECUTE YES
  7474. 'root'@'localhost' NULL FILE YES
  7475. 'root'@'localhost' NULL INDEX YES
  7476. 'root'@'localhost' NULL INSERT YES
  7477. 'root'@'localhost' NULL LOCK TABLES YES
  7478. 'root'@'localhost' NULL PROCESS YES
  7479. 'root'@'localhost' NULL REFERENCES YES
  7480. 'root'@'localhost' NULL RELOAD YES
  7481. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7482. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7483. 'root'@'localhost' NULL SELECT YES
  7484. 'root'@'localhost' NULL SHOW DATABASES YES
  7485. 'root'@'localhost' NULL SHOW VIEW YES
  7486. 'root'@'localhost' NULL SHUTDOWN YES
  7487. 'root'@'localhost' NULL SUPER YES
  7488. 'root'@'localhost' NULL TRIGGER YES
  7489. 'root'@'localhost' NULL UPDATE YES
  7490. select *
  7491. from information_schema.column_privileges
  7492. where table_schema like 'db_datadict%';
  7493. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7494. select *
  7495. from information_schema.table_privileges
  7496. where table_schema like 'db_datadict%';
  7497. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7498. select *
  7499. from information_schema.key_column_usage
  7500. where table_schema like 'db_datadict%';
  7501. 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
  7502. SELECT *
  7503. FROM information_schema.triggers
  7504. WHERE trigger_schema LIKE 'db_datadict%';
  7505. 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
  7506. use db_datadict;
  7507. drop table db_datadict.res_t_401014;
  7508. drop view db_datadict.res_v_401014;
  7509. drop procedure sp_6_401014;
  7510. drop function fn_6_401014;
  7511. drop database db_datadict;
  7512. Testcase 3.2.1.15:
  7513. --------------------------------------------------------------------------------
  7514. DROP DATABASE IF EXISTS db_datadict;
  7515. CREATE DATABASE db_datadict;
  7516. USE db_datadict;
  7517. create table res_t_401015(f1 char(10), f2 text(25), f3 int);
  7518. create view res_v_401015 as select * from res_t_401015;
  7519. CREATE USER u_6_401015@localhost;
  7520. create procedure sp_6_401015() select 'test';
  7521. create function fn_6_401015() returns int return 0;
  7522. create index i_6_401015 on res_t_401015(f3);
  7523. show existing objects >before< dropping them ...
  7524. ------------------------------------------------
  7525. select *
  7526. from information_schema.schemata
  7527. where schema_name like 'db_datadict%';
  7528. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7529. NULL db_datadict latin1 latin1_swedish_ci NULL
  7530. select table_catalog, table_schema, engine
  7531. from information_schema.tables
  7532. where table_schema like 'db_datadict%';
  7533. table_catalog table_schema engine
  7534. NULL db_datadict MyISAM
  7535. NULL db_datadict NULL
  7536. select *
  7537. from information_schema.columns
  7538. where table_schema like 'db_datadict%';
  7539. 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
  7540. 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
  7541. NULL db_datadict res_t_401015 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  7542. NULL db_datadict res_t_401015 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) MUL select,insert,update,references
  7543. 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
  7544. NULL db_datadict res_v_401015 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  7545. NULL db_datadict res_v_401015 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7546. select table_schema, table_name, is_updatable
  7547. from information_schema.views
  7548. where table_schema like 'db_datadict%';
  7549. table_schema table_name is_updatable
  7550. db_datadict res_v_401015 YES
  7551. select routine_name, routine_type, security_type, sql_mode
  7552. from information_schema.routines
  7553. where routine_schema like 'db_datadict%';
  7554. routine_name routine_type security_type sql_mode
  7555. fn_6_401015 FUNCTION DEFINER
  7556. sp_6_401015 PROCEDURE DEFINER
  7557. select table_name, index_schema, index_name, index_type
  7558. from information_schema.statistics
  7559. where table_schema like 'db_datadict%';
  7560. table_name index_schema index_name index_type
  7561. res_t_401015 db_datadict i_6_401015 BTREE
  7562. select *
  7563. from information_schema.user_privileges order by grantee, privilege_type;
  7564. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7565. 'root'@'127.0.0.1' NULL ALTER YES
  7566. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7567. 'root'@'127.0.0.1' NULL CREATE YES
  7568. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7569. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7570. 'root'@'127.0.0.1' NULL CREATE USER YES
  7571. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7572. 'root'@'127.0.0.1' NULL DELETE YES
  7573. 'root'@'127.0.0.1' NULL DROP YES
  7574. 'root'@'127.0.0.1' NULL EVENT YES
  7575. 'root'@'127.0.0.1' NULL EXECUTE YES
  7576. 'root'@'127.0.0.1' NULL FILE YES
  7577. 'root'@'127.0.0.1' NULL INDEX YES
  7578. 'root'@'127.0.0.1' NULL INSERT YES
  7579. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7580. 'root'@'127.0.0.1' NULL PROCESS YES
  7581. 'root'@'127.0.0.1' NULL REFERENCES YES
  7582. 'root'@'127.0.0.1' NULL RELOAD YES
  7583. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7584. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7585. 'root'@'127.0.0.1' NULL SELECT YES
  7586. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7587. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7588. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7589. 'root'@'127.0.0.1' NULL SUPER YES
  7590. 'root'@'127.0.0.1' NULL TRIGGER YES
  7591. 'root'@'127.0.0.1' NULL UPDATE YES
  7592. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7593. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7594. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7595. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7596. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7597. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7598. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7599. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7600. 'root'@'<SERVER_NAME>' NULL DROP YES
  7601. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7602. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7603. 'root'@'<SERVER_NAME>' NULL FILE YES
  7604. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7605. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7606. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7607. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7608. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7609. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7610. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7611. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7612. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7613. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7614. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7615. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7616. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7617. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7618. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7619. 'root'@'localhost' NULL ALTER YES
  7620. 'root'@'localhost' NULL ALTER ROUTINE YES
  7621. 'root'@'localhost' NULL CREATE YES
  7622. 'root'@'localhost' NULL CREATE ROUTINE YES
  7623. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7624. 'root'@'localhost' NULL CREATE USER YES
  7625. 'root'@'localhost' NULL CREATE VIEW YES
  7626. 'root'@'localhost' NULL DELETE YES
  7627. 'root'@'localhost' NULL DROP YES
  7628. 'root'@'localhost' NULL EVENT YES
  7629. 'root'@'localhost' NULL EXECUTE YES
  7630. 'root'@'localhost' NULL FILE YES
  7631. 'root'@'localhost' NULL INDEX YES
  7632. 'root'@'localhost' NULL INSERT YES
  7633. 'root'@'localhost' NULL LOCK TABLES YES
  7634. 'root'@'localhost' NULL PROCESS YES
  7635. 'root'@'localhost' NULL REFERENCES YES
  7636. 'root'@'localhost' NULL RELOAD YES
  7637. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7638. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7639. 'root'@'localhost' NULL SELECT YES
  7640. 'root'@'localhost' NULL SHOW DATABASES YES
  7641. 'root'@'localhost' NULL SHOW VIEW YES
  7642. 'root'@'localhost' NULL SHUTDOWN YES
  7643. 'root'@'localhost' NULL SUPER YES
  7644. 'root'@'localhost' NULL TRIGGER YES
  7645. 'root'@'localhost' NULL UPDATE YES
  7646. 'u_6_401015'@'localhost' NULL USAGE NO
  7647. select *
  7648. from information_schema.column_privileges
  7649. where table_schema like 'db_datadict%';
  7650. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7651. select *
  7652. from information_schema.table_privileges
  7653. where table_schema like 'db_datadict%';
  7654. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7655. select *
  7656. from information_schema.key_column_usage
  7657. where table_schema like 'db_datadict%';
  7658. 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
  7659. SELECT *
  7660. FROM information_schema.triggers
  7661. WHERE trigger_schema LIKE 'db_datadict%';
  7662. 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
  7663. use db_datadict;
  7664. drop index i_6_401015 on res_t_401015;
  7665. drop table db_datadict.res_t_401015;
  7666. drop view db_datadict.res_v_401015;
  7667. DROP USER u_6_401015@localhost;
  7668. drop procedure sp_6_401015;
  7669. drop function fn_6_401015;
  7670. now check they are really gone ...
  7671. ----------------------------------
  7672. select *
  7673. from information_schema.schemata
  7674. where schema_name like 'db_datadict%';
  7675. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7676. NULL db_datadict latin1 latin1_swedish_ci NULL
  7677. select table_catalog, table_schema, engine
  7678. from information_schema.tables
  7679. where table_schema like 'db_datadict%';
  7680. table_catalog table_schema engine
  7681. select *
  7682. from information_schema.columns
  7683. where table_schema like 'db_datadict%';
  7684. 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
  7685. select table_schema, table_name, is_updatable
  7686. from information_schema.views
  7687. where table_schema like 'db_datadict%';
  7688. table_schema table_name is_updatable
  7689. select routine_name, routine_type, security_type, sql_mode
  7690. from information_schema.routines
  7691. where routine_schema like 'db_datadict%';
  7692. routine_name routine_type security_type sql_mode
  7693. select table_name, index_schema, index_name, index_type
  7694. from information_schema.statistics
  7695. where table_schema like 'db_datadict%';
  7696. table_name index_schema index_name index_type
  7697. select *
  7698. from information_schema.user_privileges order by grantee, privilege_type;
  7699. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7700. 'root'@'127.0.0.1' NULL ALTER YES
  7701. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7702. 'root'@'127.0.0.1' NULL CREATE YES
  7703. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7704. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7705. 'root'@'127.0.0.1' NULL CREATE USER YES
  7706. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7707. 'root'@'127.0.0.1' NULL DELETE YES
  7708. 'root'@'127.0.0.1' NULL DROP YES
  7709. 'root'@'127.0.0.1' NULL EVENT YES
  7710. 'root'@'127.0.0.1' NULL EXECUTE YES
  7711. 'root'@'127.0.0.1' NULL FILE YES
  7712. 'root'@'127.0.0.1' NULL INDEX YES
  7713. 'root'@'127.0.0.1' NULL INSERT YES
  7714. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7715. 'root'@'127.0.0.1' NULL PROCESS YES
  7716. 'root'@'127.0.0.1' NULL REFERENCES YES
  7717. 'root'@'127.0.0.1' NULL RELOAD YES
  7718. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7719. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7720. 'root'@'127.0.0.1' NULL SELECT YES
  7721. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7722. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7723. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7724. 'root'@'127.0.0.1' NULL SUPER YES
  7725. 'root'@'127.0.0.1' NULL TRIGGER YES
  7726. 'root'@'127.0.0.1' NULL UPDATE YES
  7727. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7728. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7729. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7730. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7731. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7732. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7733. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7734. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7735. 'root'@'<SERVER_NAME>' NULL DROP YES
  7736. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7737. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7738. 'root'@'<SERVER_NAME>' NULL FILE YES
  7739. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7740. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7741. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7742. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7743. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7744. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7745. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7746. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7747. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7748. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7749. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7750. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7751. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7752. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7753. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7754. 'root'@'localhost' NULL ALTER YES
  7755. 'root'@'localhost' NULL ALTER ROUTINE YES
  7756. 'root'@'localhost' NULL CREATE YES
  7757. 'root'@'localhost' NULL CREATE ROUTINE YES
  7758. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7759. 'root'@'localhost' NULL CREATE USER YES
  7760. 'root'@'localhost' NULL CREATE VIEW YES
  7761. 'root'@'localhost' NULL DELETE YES
  7762. 'root'@'localhost' NULL DROP YES
  7763. 'root'@'localhost' NULL EVENT YES
  7764. 'root'@'localhost' NULL EXECUTE YES
  7765. 'root'@'localhost' NULL FILE YES
  7766. 'root'@'localhost' NULL INDEX YES
  7767. 'root'@'localhost' NULL INSERT YES
  7768. 'root'@'localhost' NULL LOCK TABLES YES
  7769. 'root'@'localhost' NULL PROCESS YES
  7770. 'root'@'localhost' NULL REFERENCES YES
  7771. 'root'@'localhost' NULL RELOAD YES
  7772. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7773. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7774. 'root'@'localhost' NULL SELECT YES
  7775. 'root'@'localhost' NULL SHOW DATABASES YES
  7776. 'root'@'localhost' NULL SHOW VIEW YES
  7777. 'root'@'localhost' NULL SHUTDOWN YES
  7778. 'root'@'localhost' NULL SUPER YES
  7779. 'root'@'localhost' NULL TRIGGER YES
  7780. 'root'@'localhost' NULL UPDATE YES
  7781. select *
  7782. from information_schema.column_privileges
  7783. where table_schema like 'db_datadict%';
  7784. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7785. select *
  7786. from information_schema.table_privileges
  7787. where table_schema like 'db_datadict%';
  7788. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7789. select *
  7790. from information_schema.key_column_usage
  7791. where table_schema like 'db_datadict%';
  7792. 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
  7793. SELECT *
  7794. FROM information_schema.triggers
  7795. WHERE trigger_schema LIKE 'db_datadict%';
  7796. 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
  7797. Testcase 3.2.1.16:
  7798. --------------------------------------------------------------------------------
  7799. DROP DATABASE IF EXISTS db_datadict;
  7800. CREATE DATABASE db_datadict;
  7801. CREATE DATABASE db_hidden;
  7802. USE db_hidden;
  7803. CREATE TABLE tb_hidden ( c1 TEXT );
  7804. USE db_datadict;
  7805. CREATE TABLE res_t_401016(f1 char(10),f2 text(25),f3 int);
  7806. CREATE TABLE res_t_401016_1(f1 char(10),f2 text(25),f3 int);
  7807. CREATE USER 'u_6_401016'@'localhost';
  7808. GRANT SELECT ON db_datadict.res_t_401016 TO 'u_6_401016'@'localhost';
  7809. FLUSH PRIVILEGES;
  7810. connect(localhost,u_6_401016,,test,MYSQL_PORT,MYSQL_SOCK);
  7811. USE information_schema;
  7812. SELECT table_schema, table_name, engine
  7813. FROM TABLES;
  7814. table_schema table_name engine
  7815. information_schema CHARACTER_SETS MEMORY
  7816. information_schema COLLATIONS MEMORY
  7817. information_schema COLLATION_CHARACTER_SET_APPLICABILITY MEMORY
  7818. information_schema COLUMNS MyISAM
  7819. information_schema COLUMN_PRIVILEGES MEMORY
  7820. information_schema ENGINES MEMORY
  7821. information_schema EVENTS MyISAM
  7822. information_schema FILES MEMORY
  7823. information_schema GLOBAL_STATUS MEMORY
  7824. information_schema GLOBAL_VARIABLES MEMORY
  7825. information_schema KEY_COLUMN_USAGE MEMORY
  7826. information_schema PARTITIONS MyISAM
  7827. information_schema PLUGINS MyISAM
  7828. information_schema PROCESSLIST MyISAM
  7829. information_schema REFERENTIAL_CONSTRAINTS MEMORY
  7830. information_schema ROUTINES MyISAM
  7831. information_schema SCHEMATA MEMORY
  7832. information_schema SCHEMA_PRIVILEGES MEMORY
  7833. information_schema SESSION_STATUS MEMORY
  7834. information_schema SESSION_VARIABLES MEMORY
  7835. information_schema STATISTICS MEMORY
  7836. information_schema TABLES MEMORY
  7837. information_schema TABLE_CONSTRAINTS MEMORY
  7838. information_schema TABLE_PRIVILEGES MEMORY
  7839. information_schema TRIGGERS MyISAM
  7840. information_schema USER_PRIVILEGES MEMORY
  7841. information_schema VIEWS MyISAM
  7842. db_datadict res_t_401016 MyISAM
  7843. test t1 NDBCLUSTER
  7844. test t10 NDBCLUSTER
  7845. test t11 NDBCLUSTER
  7846. test t2 NDBCLUSTER
  7847. test t3 NDBCLUSTER
  7848. test t4 NDBCLUSTER
  7849. test t7 NDBCLUSTER
  7850. test t8 NDBCLUSTER
  7851. test t9 NDBCLUSTER
  7852. test tb1 MyISAM
  7853. test tb2 MyISAM
  7854. test tb3 MyISAM
  7855. test tb4 MyISAM
  7856. SHOW TABLES;
  7857. Tables_in_information_schema
  7858. CHARACTER_SETS
  7859. COLLATIONS
  7860. COLLATION_CHARACTER_SET_APPLICABILITY
  7861. COLUMNS
  7862. COLUMN_PRIVILEGES
  7863. ENGINES
  7864. EVENTS
  7865. FILES
  7866. GLOBAL_STATUS
  7867. GLOBAL_VARIABLES
  7868. KEY_COLUMN_USAGE
  7869. PARTITIONS
  7870. PLUGINS
  7871. PROCESSLIST
  7872. REFERENTIAL_CONSTRAINTS
  7873. ROUTINES
  7874. SCHEMATA
  7875. SCHEMA_PRIVILEGES
  7876. SESSION_STATUS
  7877. SESSION_VARIABLES
  7878. STATISTICS
  7879. TABLES
  7880. TABLE_CONSTRAINTS
  7881. TABLE_PRIVILEGES
  7882. TRIGGERS
  7883. USER_PRIVILEGES
  7884. VIEWS
  7885. SELECT * FROM schemata;
  7886. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7887. NULL information_schema utf8 utf8_general_ci NULL
  7888. NULL db_datadict latin1 latin1_swedish_ci NULL
  7889. NULL test latin1 latin1_swedish_ci NULL
  7890. root@localhost db_datadict
  7891. grant usage on information_schema.* to 'u_6_401016'@'localhost';
  7892. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7893. FLUSH PRIVILEGES;
  7894. connect(localhost,u_6_401016,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  7895. USE information_schema;
  7896. SHOW TABLES;
  7897. Tables_in_information_schema
  7898. CHARACTER_SETS
  7899. COLLATIONS
  7900. COLLATION_CHARACTER_SET_APPLICABILITY
  7901. COLUMNS
  7902. COLUMN_PRIVILEGES
  7903. ENGINES
  7904. EVENTS
  7905. FILES
  7906. GLOBAL_STATUS
  7907. GLOBAL_VARIABLES
  7908. KEY_COLUMN_USAGE
  7909. PARTITIONS
  7910. PLUGINS
  7911. PROCESSLIST
  7912. REFERENTIAL_CONSTRAINTS
  7913. ROUTINES
  7914. SCHEMATA
  7915. SCHEMA_PRIVILEGES
  7916. SESSION_STATUS
  7917. SESSION_VARIABLES
  7918. STATISTICS
  7919. TABLES
  7920. TABLE_CONSTRAINTS
  7921. TABLE_PRIVILEGES
  7922. TRIGGERS
  7923. USER_PRIVILEGES
  7924. VIEWS
  7925. SELECT * FROM schemata;
  7926. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7927. NULL information_schema utf8 utf8_general_ci NULL
  7928. NULL db_datadict latin1 latin1_swedish_ci NULL
  7929. NULL test latin1 latin1_swedish_ci NULL
  7930. use db_datadict;
  7931. root@localhost db_datadict
  7932. DROP USER 'u_6_401016'@'localhost';
  7933. drop table res_t_401016;
  7934. drop table res_t_401016_1;
  7935. DROP DATABASE db_hidden;
  7936. Testcase 3.2.1.17:
  7937. --------------------------------------------------------------------------------
  7938. CREATE USER 'u_6_401017'@'localhost';
  7939. grant select on information_schema.* to u_6_401017@localhost;
  7940. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7941. FLUSH PRIVILEGES;
  7942. connect(localhost,u_6_401017,,test,MYSQL_PORT,MYSQL_SOCK);
  7943. use information_schema;
  7944. select * from collation_character_set_applicability;
  7945. COLLATION_NAME CHARACTER_SET_NAME
  7946. big5_chinese_ci big5
  7947. big5_bin big5
  7948. dec8_swedish_ci dec8
  7949. dec8_bin dec8
  7950. cp850_general_ci cp850
  7951. cp850_bin cp850
  7952. hp8_english_ci hp8
  7953. hp8_bin hp8
  7954. koi8r_general_ci koi8r
  7955. koi8r_bin koi8r
  7956. latin1_german1_ci latin1
  7957. latin1_swedish_ci latin1
  7958. latin1_danish_ci latin1
  7959. latin1_german2_ci latin1
  7960. latin1_bin latin1
  7961. latin1_general_ci latin1
  7962. latin1_general_cs latin1
  7963. latin1_spanish_ci latin1
  7964. latin2_czech_cs latin2
  7965. latin2_general_ci latin2
  7966. latin2_hungarian_ci latin2
  7967. latin2_croatian_ci latin2
  7968. latin2_bin latin2
  7969. swe7_swedish_ci swe7
  7970. swe7_bin swe7
  7971. ascii_general_ci ascii
  7972. ascii_bin ascii
  7973. ujis_japanese_ci ujis
  7974. ujis_bin ujis
  7975. sjis_japanese_ci sjis
  7976. sjis_bin sjis
  7977. hebrew_general_ci hebrew
  7978. hebrew_bin hebrew
  7979. filename filename
  7980. tis620_thai_ci tis620
  7981. tis620_bin tis620
  7982. euckr_korean_ci euckr
  7983. euckr_bin euckr
  7984. koi8u_general_ci koi8u
  7985. koi8u_bin koi8u
  7986. gb2312_chinese_ci gb2312
  7987. gb2312_bin gb2312
  7988. greek_general_ci greek
  7989. greek_bin greek
  7990. cp1250_general_ci cp1250
  7991. cp1250_czech_cs cp1250
  7992. cp1250_croatian_ci cp1250
  7993. cp1250_bin cp1250
  7994. cp1250_polish_ci cp1250
  7995. gbk_chinese_ci gbk
  7996. gbk_bin gbk
  7997. latin5_turkish_ci latin5
  7998. latin5_bin latin5
  7999. armscii8_general_ci armscii8
  8000. armscii8_bin armscii8
  8001. utf8_general_ci utf8
  8002. utf8_bin utf8
  8003. utf8_unicode_ci utf8
  8004. utf8_icelandic_ci utf8
  8005. utf8_latvian_ci utf8
  8006. utf8_romanian_ci utf8
  8007. utf8_slovenian_ci utf8
  8008. utf8_polish_ci utf8
  8009. utf8_estonian_ci utf8
  8010. utf8_spanish_ci utf8
  8011. utf8_swedish_ci utf8
  8012. utf8_turkish_ci utf8
  8013. utf8_czech_ci utf8
  8014. utf8_danish_ci utf8
  8015. utf8_lithuanian_ci utf8
  8016. utf8_slovak_ci utf8
  8017. utf8_spanish2_ci utf8
  8018. utf8_roman_ci utf8
  8019. utf8_persian_ci utf8
  8020. utf8_esperanto_ci utf8
  8021. utf8_hungarian_ci utf8
  8022. utf8_general_cs utf8
  8023. ucs2_general_ci ucs2
  8024. ucs2_bin ucs2
  8025. ucs2_unicode_ci ucs2
  8026. ucs2_icelandic_ci ucs2
  8027. ucs2_latvian_ci ucs2
  8028. ucs2_romanian_ci ucs2
  8029. ucs2_slovenian_ci ucs2
  8030. ucs2_polish_ci ucs2
  8031. ucs2_estonian_ci ucs2
  8032. ucs2_spanish_ci ucs2
  8033. ucs2_swedish_ci ucs2
  8034. ucs2_turkish_ci ucs2
  8035. ucs2_czech_ci ucs2
  8036. ucs2_danish_ci ucs2
  8037. ucs2_lithuanian_ci ucs2
  8038. ucs2_slovak_ci ucs2
  8039. ucs2_spanish2_ci ucs2
  8040. ucs2_roman_ci ucs2
  8041. ucs2_persian_ci ucs2
  8042. ucs2_esperanto_ci ucs2
  8043. ucs2_hungarian_ci ucs2
  8044. cp866_general_ci cp866
  8045. cp866_bin cp866
  8046. keybcs2_general_ci keybcs2
  8047. keybcs2_bin keybcs2
  8048. macce_general_ci macce
  8049. macce_bin macce
  8050. macroman_general_ci macroman
  8051. macroman_bin macroman
  8052. cp852_general_ci cp852
  8053. cp852_bin cp852
  8054. latin7_estonian_cs latin7
  8055. latin7_general_ci latin7
  8056. latin7_general_cs latin7
  8057. latin7_bin latin7
  8058. cp1251_bulgarian_ci cp1251
  8059. cp1251_ukrainian_ci cp1251
  8060. cp1251_bin cp1251
  8061. cp1251_general_ci cp1251
  8062. cp1251_general_cs cp1251
  8063. cp1256_general_ci cp1256
  8064. cp1256_bin cp1256
  8065. cp1257_lithuanian_ci cp1257
  8066. cp1257_bin cp1257
  8067. cp1257_general_ci cp1257
  8068. binary binary
  8069. geostd8_general_ci geostd8
  8070. geostd8_bin geostd8
  8071. cp932_japanese_ci cp932
  8072. cp932_bin cp932
  8073. eucjpms_japanese_ci eucjpms
  8074. eucjpms_bin eucjpms
  8075. select * from schemata;
  8076. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  8077. NULL information_schema utf8 utf8_general_ci NULL
  8078. NULL test latin1 latin1_swedish_ci NULL
  8079. select table_name from tables;
  8080. table_name
  8081. CHARACTER_SETS
  8082. COLLATIONS
  8083. COLLATION_CHARACTER_SET_APPLICABILITY
  8084. COLUMNS
  8085. COLUMN_PRIVILEGES
  8086. ENGINES
  8087. EVENTS
  8088. FILES
  8089. GLOBAL_STATUS
  8090. GLOBAL_VARIABLES
  8091. KEY_COLUMN_USAGE
  8092. PARTITIONS
  8093. PLUGINS
  8094. PROCESSLIST
  8095. REFERENTIAL_CONSTRAINTS
  8096. ROUTINES
  8097. SCHEMATA
  8098. SCHEMA_PRIVILEGES
  8099. SESSION_STATUS
  8100. SESSION_VARIABLES
  8101. STATISTICS
  8102. TABLES
  8103. TABLE_CONSTRAINTS
  8104. TABLE_PRIVILEGES
  8105. TRIGGERS
  8106. USER_PRIVILEGES
  8107. VIEWS
  8108. t1
  8109. t10
  8110. t11
  8111. t2
  8112. t3
  8113. t4
  8114. t7
  8115. t8
  8116. t9
  8117. tb1
  8118. tb2
  8119. tb3
  8120. tb4
  8121. select table_name, column_name, column_type from columns;
  8122. table_name column_name column_type
  8123. CHARACTER_SETS CHARACTER_SET_NAME varchar(64)
  8124. CHARACTER_SETS DEFAULT_COLLATE_NAME varchar(64)
  8125. CHARACTER_SETS DESCRIPTION varchar(60)
  8126. CHARACTER_SETS MAXLEN bigint(3)
  8127. COLLATIONS COLLATION_NAME varchar(64)
  8128. COLLATIONS CHARACTER_SET_NAME varchar(64)
  8129. COLLATIONS ID bigint(11)
  8130. COLLATIONS IS_DEFAULT varchar(3)
  8131. COLLATIONS IS_COMPILED varchar(3)
  8132. COLLATIONS SORTLEN bigint(3)
  8133. COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME varchar(64)
  8134. COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME varchar(64)
  8135. COLUMNS TABLE_CATALOG varchar(4096)
  8136. COLUMNS TABLE_SCHEMA varchar(64)
  8137. COLUMNS TABLE_NAME varchar(64)
  8138. COLUMNS COLUMN_NAME varchar(64)
  8139. COLUMNS ORDINAL_POSITION bigint(21) unsigned
  8140. COLUMNS COLUMN_DEFAULT longtext
  8141. COLUMNS IS_NULLABLE varchar(3)
  8142. COLUMNS DATA_TYPE varchar(64)
  8143. COLUMNS CHARACTER_MAXIMUM_LENGTH bigint(21) unsigned
  8144. COLUMNS CHARACTER_OCTET_LENGTH bigint(21) unsigned
  8145. COLUMNS NUMERIC_PRECISION bigint(21) unsigned
  8146. COLUMNS NUMERIC_SCALE bigint(21) unsigned
  8147. COLUMNS CHARACTER_SET_NAME varchar(64)
  8148. COLUMNS COLLATION_NAME varchar(64)
  8149. COLUMNS COLUMN_TYPE longtext
  8150. COLUMNS COLUMN_KEY varchar(3)
  8151. COLUMNS EXTRA varchar(20)
  8152. COLUMNS PRIVILEGES varchar(80)
  8153. COLUMNS COLUMN_COMMENT varchar(255)
  8154. COLUMN_PRIVILEGES GRANTEE varchar(81)
  8155. COLUMN_PRIVILEGES TABLE_CATALOG varchar(4096)
  8156. COLUMN_PRIVILEGES TABLE_SCHEMA varchar(64)
  8157. COLUMN_PRIVILEGES TABLE_NAME varchar(64)
  8158. COLUMN_PRIVILEGES COLUMN_NAME varchar(64)
  8159. COLUMN_PRIVILEGES PRIVILEGE_TYPE varchar(64)
  8160. COLUMN_PRIVILEGES IS_GRANTABLE varchar(3)
  8161. ENGINES ENGINE varchar(64)
  8162. ENGINES SUPPORT varchar(8)
  8163. ENGINES COMMENT varchar(80)
  8164. ENGINES TRANSACTIONS varchar(3)
  8165. ENGINES XA varchar(3)
  8166. ENGINES SAVEPOINTS varchar(3)
  8167. EVENTS EVENT_CATALOG varchar(64)
  8168. EVENTS EVENT_SCHEMA varchar(64)
  8169. EVENTS EVENT_NAME varchar(64)
  8170. EVENTS DEFINER varchar(77)
  8171. EVENTS TIME_ZONE varchar(64)
  8172. EVENTS EVENT_BODY varchar(8)
  8173. EVENTS EVENT_DEFINITION longtext
  8174. EVENTS EVENT_TYPE varchar(9)
  8175. EVENTS EXECUTE_AT datetime
  8176. EVENTS INTERVAL_VALUE varchar(256)
  8177. EVENTS INTERVAL_FIELD varchar(18)
  8178. EVENTS SQL_MODE longtext
  8179. EVENTS STARTS datetime
  8180. EVENTS ENDS datetime
  8181. EVENTS STATUS varchar(18)
  8182. EVENTS ON_COMPLETION varchar(12)
  8183. EVENTS CREATED datetime
  8184. EVENTS LAST_ALTERED datetime
  8185. EVENTS LAST_EXECUTED datetime
  8186. EVENTS EVENT_COMMENT varchar(64)
  8187. EVENTS ORIGINATOR bigint(10)
  8188. EVENTS CHARACTER_SET_CLIENT varchar(32)
  8189. EVENTS COLLATION_CONNECTION varchar(32)
  8190. EVENTS DATABASE_COLLATION varchar(32)
  8191. FILES FILE_ID bigint(4)
  8192. FILES FILE_NAME varchar(64)
  8193. FILES FILE_TYPE varchar(20)
  8194. FILES TABLESPACE_NAME varchar(64)
  8195. FILES TABLE_CATALOG varchar(64)
  8196. FILES TABLE_SCHEMA varchar(64)
  8197. FILES TABLE_NAME varchar(64)
  8198. FILES LOGFILE_GROUP_NAME varchar(64)
  8199. FILES LOGFILE_GROUP_NUMBER bigint(4)
  8200. FILES ENGINE varchar(64)
  8201. FILES FULLTEXT_KEYS varchar(64)
  8202. FILES DELETED_ROWS bigint(4)
  8203. FILES UPDATE_COUNT bigint(4)
  8204. FILES FREE_EXTENTS bigint(4)
  8205. FILES TOTAL_EXTENTS bigint(4)
  8206. FILES EXTENT_SIZE bigint(4)
  8207. FILES INITIAL_SIZE bigint(21) unsigned
  8208. FILES MAXIMUM_SIZE bigint(21) unsigned
  8209. FILES AUTOEXTEND_SIZE bigint(21) unsigned
  8210. FILES CREATION_TIME datetime
  8211. FILES LAST_UPDATE_TIME datetime
  8212. FILES LAST_ACCESS_TIME datetime
  8213. FILES RECOVER_TIME bigint(4)
  8214. FILES TRANSACTION_COUNTER bigint(4)
  8215. FILES VERSION bigint(21) unsigned
  8216. FILES ROW_FORMAT varchar(10)
  8217. FILES TABLE_ROWS bigint(21) unsigned
  8218. FILES AVG_ROW_LENGTH bigint(21) unsigned
  8219. FILES DATA_LENGTH bigint(21) unsigned
  8220. FILES MAX_DATA_LENGTH bigint(21) unsigned
  8221. FILES INDEX_LENGTH bigint(21) unsigned
  8222. FILES DATA_FREE bigint(21) unsigned
  8223. FILES CREATE_TIME datetime
  8224. FILES UPDATE_TIME datetime
  8225. FILES CHECK_TIME datetime
  8226. FILES CHECKSUM bigint(21) unsigned
  8227. FILES STATUS varchar(20)
  8228. FILES EXTRA varchar(255)
  8229. GLOBAL_STATUS VARIABLE_NAME varchar(64)
  8230. GLOBAL_STATUS VARIABLE_VALUE varchar(20480)
  8231. GLOBAL_VARIABLES VARIABLE_NAME varchar(64)
  8232. GLOBAL_VARIABLES VARIABLE_VALUE varchar(20480)
  8233. KEY_COLUMN_USAGE CONSTRAINT_CATALOG varchar(4096)
  8234. KEY_COLUMN_USAGE CONSTRAINT_SCHEMA varchar(64)
  8235. KEY_COLUMN_USAGE CONSTRAINT_NAME varchar(64)
  8236. KEY_COLUMN_USAGE TABLE_CATALOG varchar(4096)
  8237. KEY_COLUMN_USAGE TABLE_SCHEMA varchar(64)
  8238. KEY_COLUMN_USAGE TABLE_NAME varchar(64)
  8239. KEY_COLUMN_USAGE COLUMN_NAME varchar(64)
  8240. KEY_COLUMN_USAGE ORDINAL_POSITION bigint(10)
  8241. KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT bigint(10)
  8242. KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA varchar(64)
  8243. KEY_COLUMN_USAGE REFERENCED_TABLE_NAME varchar(64)
  8244. KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME varchar(64)
  8245. PARTITIONS TABLE_CATALOG varchar(4096)
  8246. PARTITIONS TABLE_SCHEMA varchar(64)
  8247. PARTITIONS TABLE_NAME varchar(64)
  8248. PARTITIONS PARTITION_NAME varchar(64)
  8249. PARTITIONS SUBPARTITION_NAME varchar(64)
  8250. PARTITIONS PARTITION_ORDINAL_POSITION bigint(21) unsigned
  8251. PARTITIONS SUBPARTITION_ORDINAL_POSITION bigint(21) unsigned
  8252. PARTITIONS PARTITION_METHOD varchar(12)
  8253. PARTITIONS SUBPARTITION_METHOD varchar(12)
  8254. PARTITIONS PARTITION_EXPRESSION longtext
  8255. PARTITIONS SUBPARTITION_EXPRESSION longtext
  8256. PARTITIONS PARTITION_DESCRIPTION longtext
  8257. PARTITIONS TABLE_ROWS bigint(21) unsigned
  8258. PARTITIONS AVG_ROW_LENGTH bigint(21) unsigned
  8259. PARTITIONS DATA_LENGTH bigint(21) unsigned
  8260. PARTITIONS MAX_DATA_LENGTH bigint(21) unsigned
  8261. PARTITIONS INDEX_LENGTH bigint(21) unsigned
  8262. PARTITIONS DATA_FREE bigint(21) unsigned
  8263. PARTITIONS CREATE_TIME datetime
  8264. PARTITIONS UPDATE_TIME datetime
  8265. PARTITIONS CHECK_TIME datetime
  8266. PARTITIONS CHECKSUM bigint(21) unsigned
  8267. PARTITIONS PARTITION_COMMENT varchar(80)
  8268. PARTITIONS NODEGROUP varchar(12)
  8269. PARTITIONS TABLESPACE_NAME varchar(64)
  8270. PLUGINS PLUGIN_NAME varchar(64)
  8271. PLUGINS PLUGIN_VERSION varchar(20)
  8272. PLUGINS PLUGIN_STATUS varchar(10)
  8273. PLUGINS PLUGIN_TYPE varchar(80)
  8274. PLUGINS PLUGIN_TYPE_VERSION varchar(20)
  8275. PLUGINS PLUGIN_LIBRARY varchar(64)
  8276. PLUGINS PLUGIN_LIBRARY_VERSION varchar(20)
  8277. PLUGINS PLUGIN_AUTHOR varchar(64)
  8278. PLUGINS PLUGIN_DESCRIPTION longtext
  8279. PLUGINS PLUGIN_LICENSE varchar(80)
  8280. PROCESSLIST ID bigint(4)
  8281. PROCESSLIST USER varchar(16)
  8282. PROCESSLIST HOST varchar(64)
  8283. PROCESSLIST DB varchar(64)
  8284. PROCESSLIST COMMAND varchar(16)
  8285. PROCESSLIST TIME bigint(7)
  8286. PROCESSLIST STATE varchar(64)
  8287. PROCESSLIST INFO longtext
  8288. REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG varchar(4096)
  8289. REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA varchar(64)
  8290. REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME varchar(64)
  8291. REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG varchar(4096)
  8292. REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA varchar(64)
  8293. REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME varchar(64)
  8294. REFERENTIAL_CONSTRAINTS MATCH_OPTION varchar(64)
  8295. REFERENTIAL_CONSTRAINTS UPDATE_RULE varchar(64)
  8296. REFERENTIAL_CONSTRAINTS DELETE_RULE varchar(64)
  8297. REFERENTIAL_CONSTRAINTS TABLE_NAME varchar(64)
  8298. REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME varchar(64)
  8299. ROUTINES SPECIFIC_NAME varchar(64)
  8300. ROUTINES ROUTINE_CATALOG varchar(4096)
  8301. ROUTINES ROUTINE_SCHEMA varchar(64)
  8302. ROUTINES ROUTINE_NAME varchar(64)
  8303. ROUTINES ROUTINE_TYPE varchar(9)
  8304. ROUTINES DTD_IDENTIFIER varchar(64)
  8305. ROUTINES ROUTINE_BODY varchar(8)
  8306. ROUTINES ROUTINE_DEFINITION longtext
  8307. ROUTINES EXTERNAL_NAME varchar(64)
  8308. ROUTINES EXTERNAL_LANGUAGE varchar(64)
  8309. ROUTINES PARAMETER_STYLE varchar(8)
  8310. ROUTINES IS_DETERMINISTIC varchar(3)
  8311. ROUTINES SQL_DATA_ACCESS varchar(64)
  8312. ROUTINES SQL_PATH varchar(64)
  8313. ROUTINES SECURITY_TYPE varchar(7)
  8314. ROUTINES CREATED datetime
  8315. ROUTINES LAST_ALTERED datetime
  8316. ROUTINES SQL_MODE longtext
  8317. ROUTINES ROUTINE_COMMENT varchar(64)
  8318. ROUTINES DEFINER varchar(77)
  8319. ROUTINES CHARACTER_SET_CLIENT varchar(32)
  8320. ROUTINES COLLATION_CONNECTION varchar(32)
  8321. ROUTINES DATABASE_COLLATION varchar(32)
  8322. SCHEMATA CATALOG_NAME varchar(4096)
  8323. SCHEMATA SCHEMA_NAME varchar(64)
  8324. SCHEMATA DEFAULT_CHARACTER_SET_NAME varchar(64)
  8325. SCHEMATA DEFAULT_COLLATION_NAME varchar(64)
  8326. SCHEMATA SQL_PATH varchar(4096)
  8327. SCHEMA_PRIVILEGES GRANTEE varchar(81)
  8328. SCHEMA_PRIVILEGES TABLE_CATALOG varchar(4096)
  8329. SCHEMA_PRIVILEGES TABLE_SCHEMA varchar(64)
  8330. SCHEMA_PRIVILEGES PRIVILEGE_TYPE varchar(64)
  8331. SCHEMA_PRIVILEGES IS_GRANTABLE varchar(3)
  8332. SESSION_STATUS VARIABLE_NAME varchar(64)
  8333. SESSION_STATUS VARIABLE_VALUE varchar(20480)
  8334. SESSION_VARIABLES VARIABLE_NAME varchar(64)
  8335. SESSION_VARIABLES VARIABLE_VALUE varchar(20480)
  8336. STATISTICS TABLE_CATALOG varchar(4096)
  8337. STATISTICS TABLE_SCHEMA varchar(64)
  8338. STATISTICS TABLE_NAME varchar(64)
  8339. STATISTICS NON_UNIQUE bigint(1)
  8340. STATISTICS INDEX_SCHEMA varchar(64)
  8341. STATISTICS INDEX_NAME varchar(64)
  8342. STATISTICS SEQ_IN_INDEX bigint(2)
  8343. STATISTICS COLUMN_NAME varchar(64)
  8344. STATISTICS COLLATION varchar(1)
  8345. STATISTICS CARDINALITY bigint(21)
  8346. STATISTICS SUB_PART bigint(3)
  8347. STATISTICS PACKED varchar(10)
  8348. STATISTICS NULLABLE varchar(3)
  8349. STATISTICS INDEX_TYPE varchar(16)
  8350. STATISTICS COMMENT varchar(16)
  8351. TABLES TABLE_CATALOG varchar(4096)
  8352. TABLES TABLE_SCHEMA varchar(64)
  8353. TABLES TABLE_NAME varchar(64)
  8354. TABLES TABLE_TYPE varchar(64)
  8355. TABLES ENGINE varchar(64)
  8356. TABLES VERSION bigint(21) unsigned
  8357. TABLES ROW_FORMAT varchar(10)
  8358. TABLES TABLE_ROWS bigint(21) unsigned
  8359. TABLES AVG_ROW_LENGTH bigint(21) unsigned
  8360. TABLES DATA_LENGTH bigint(21) unsigned
  8361. TABLES MAX_DATA_LENGTH bigint(21) unsigned
  8362. TABLES INDEX_LENGTH bigint(21) unsigned
  8363. TABLES DATA_FREE bigint(21) unsigned
  8364. TABLES AUTO_INCREMENT bigint(21) unsigned
  8365. TABLES CREATE_TIME datetime
  8366. TABLES UPDATE_TIME datetime
  8367. TABLES CHECK_TIME datetime
  8368. TABLES TABLE_COLLATION varchar(64)
  8369. TABLES CHECKSUM bigint(21) unsigned
  8370. TABLES CREATE_OPTIONS varchar(255)
  8371. TABLES TABLE_COMMENT varchar(80)
  8372. TABLE_CONSTRAINTS CONSTRAINT_CATALOG varchar(4096)
  8373. TABLE_CONSTRAINTS CONSTRAINT_SCHEMA varchar(64)
  8374. TABLE_CONSTRAINTS CONSTRAINT_NAME varchar(64)
  8375. TABLE_CONSTRAINTS TABLE_SCHEMA varchar(64)
  8376. TABLE_CONSTRAINTS TABLE_NAME varchar(64)
  8377. TABLE_CONSTRAINTS CONSTRAINT_TYPE varchar(64)
  8378. TABLE_PRIVILEGES GRANTEE varchar(81)
  8379. TABLE_PRIVILEGES TABLE_CATALOG varchar(4096)
  8380. TABLE_PRIVILEGES TABLE_SCHEMA varchar(64)
  8381. TABLE_PRIVILEGES TABLE_NAME varchar(64)
  8382. TABLE_PRIVILEGES PRIVILEGE_TYPE varchar(64)
  8383. TABLE_PRIVILEGES IS_GRANTABLE varchar(3)
  8384. TRIGGERS TRIGGER_CATALOG varchar(4096)
  8385. TRIGGERS TRIGGER_SCHEMA varchar(64)
  8386. TRIGGERS TRIGGER_NAME varchar(64)
  8387. TRIGGERS EVENT_MANIPULATION varchar(6)
  8388. TRIGGERS EVENT_OBJECT_CATALOG varchar(4096)
  8389. TRIGGERS EVENT_OBJECT_SCHEMA varchar(64)
  8390. TRIGGERS EVENT_OBJECT_TABLE varchar(64)
  8391. TRIGGERS ACTION_ORDER bigint(4)
  8392. TRIGGERS ACTION_CONDITION longtext
  8393. TRIGGERS ACTION_STATEMENT longtext
  8394. TRIGGERS ACTION_ORIENTATION varchar(9)
  8395. TRIGGERS ACTION_TIMING varchar(6)
  8396. TRIGGERS ACTION_REFERENCE_OLD_TABLE varchar(64)
  8397. TRIGGERS ACTION_REFERENCE_NEW_TABLE varchar(64)
  8398. TRIGGERS ACTION_REFERENCE_OLD_ROW varchar(3)
  8399. TRIGGERS ACTION_REFERENCE_NEW_ROW varchar(3)
  8400. TRIGGERS CREATED datetime
  8401. TRIGGERS SQL_MODE longtext
  8402. TRIGGERS DEFINER longtext
  8403. TRIGGERS CHARACTER_SET_CLIENT varchar(32)
  8404. TRIGGERS COLLATION_CONNECTION varchar(32)
  8405. TRIGGERS DATABASE_COLLATION varchar(32)
  8406. USER_PRIVILEGES GRANTEE varchar(81)
  8407. USER_PRIVILEGES TABLE_CATALOG varchar(4096)
  8408. USER_PRIVILEGES PRIVILEGE_TYPE varchar(64)
  8409. USER_PRIVILEGES IS_GRANTABLE varchar(3)
  8410. VIEWS TABLE_CATALOG varchar(4096)
  8411. VIEWS TABLE_SCHEMA varchar(64)
  8412. VIEWS TABLE_NAME varchar(64)
  8413. VIEWS VIEW_DEFINITION longtext
  8414. VIEWS CHECK_OPTION varchar(8)
  8415. VIEWS IS_UPDATABLE varchar(3)
  8416. VIEWS DEFINER varchar(77)
  8417. VIEWS SECURITY_TYPE varchar(7)
  8418. VIEWS CHARACTER_SET_CLIENT varchar(32)
  8419. VIEWS COLLATION_CONNECTION varchar(32)
  8420. t1 f1 char(20)
  8421. t1 f2 char(25)
  8422. t1 f3 date
  8423. t1 f4 int(11)
  8424. t1 f5 char(25)
  8425. t1 f6 int(11)
  8426. t10 f1 char(20)
  8427. t10 f2 char(25)
  8428. t10 f3 date
  8429. t10 f4 int(11)
  8430. t10 f5 char(25)
  8431. t10 f6 int(11)
  8432. t11 f1 char(20)
  8433. t11 f2 char(25)
  8434. t11 f3 date
  8435. t11 f4 int(11)
  8436. t11 f5 char(25)
  8437. t11 f6 int(11)
  8438. t2 f1 char(20)
  8439. t2 f2 char(25)
  8440. t2 f3 date
  8441. t2 f4 int(11)
  8442. t2 f5 char(25)
  8443. t2 f6 int(11)
  8444. t3 f1 char(20)
  8445. t3 f2 char(20)
  8446. t3 f3 int(11)
  8447. t4 f1 char(20)
  8448. t4 f2 char(25)
  8449. t4 f3 date
  8450. t4 f4 int(11)
  8451. t4 f5 char(25)
  8452. t4 f6 int(11)
  8453. t7 f1 char(20)
  8454. t7 f2 char(25)
  8455. t7 f3 date
  8456. t7 f4 int(11)
  8457. t8 f1 char(20)
  8458. t8 f2 char(25)
  8459. t8 f3 date
  8460. t8 f4 int(11)
  8461. t9 f1 int(11)
  8462. t9 f2 char(25)
  8463. t9 f3 int(11)
  8464. tb1 f1 char(1)
  8465. tb1 f2 char(1)
  8466. tb1 f3 char(1)
  8467. tb1 f4 tinytext
  8468. tb1 f5 text
  8469. tb1 f6 mediumtext
  8470. tb1 f7 longtext
  8471. tb1 f8 tinyblob
  8472. tb1 f9 blob
  8473. tb1 f10 mediumblob
  8474. tb1 f11 longblob
  8475. tb1 f12 binary(1)
  8476. tb1 f13 tinyint(4)
  8477. tb1 f14 tinyint(3) unsigned
  8478. tb1 f15 tinyint(3) unsigned zerofill
  8479. tb1 f16 tinyint(3) unsigned zerofill
  8480. tb1 f17 smallint(6)
  8481. tb1 f18 smallint(5) unsigned
  8482. tb1 f19 smallint(5) unsigned zerofill
  8483. tb1 f20 smallint(5) unsigned zerofill
  8484. tb1 f21 mediumint(9)
  8485. tb1 f22 mediumint(8) unsigned
  8486. tb1 f23 mediumint(8) unsigned zerofill
  8487. tb1 f24 mediumint(8) unsigned zerofill
  8488. tb1 f25 int(11)
  8489. tb1 f26 int(10) unsigned
  8490. tb1 f27 int(10) unsigned zerofill
  8491. tb1 f28 int(10) unsigned zerofill
  8492. tb1 f29 bigint(20)
  8493. tb1 f30 bigint(20) unsigned
  8494. tb1 f31 bigint(20) unsigned zerofill
  8495. tb1 f32 bigint(20) unsigned zerofill
  8496. tb1 f33 decimal(10,0)
  8497. tb1 f34 decimal(10,0) unsigned
  8498. tb1 f35 decimal(10,0) unsigned zerofill
  8499. tb1 f36 decimal(10,0) unsigned zerofill
  8500. tb1 f37 decimal(10,0)
  8501. tb1 f38 decimal(64,0)
  8502. tb1 f39 decimal(10,0) unsigned
  8503. tb1 f40 decimal(64,0) unsigned
  8504. tb1 f41 decimal(10,0) unsigned zerofill
  8505. tb1 f42 decimal(64,0) unsigned zerofill
  8506. tb1 f43 decimal(10,0) unsigned zerofill
  8507. tb1 f44 decimal(64,0) unsigned zerofill
  8508. tb1 f45 decimal(10,0)
  8509. tb1 f46 decimal(63,30)
  8510. tb1 f47 decimal(10,0) unsigned
  8511. tb1 f48 decimal(63,30) unsigned
  8512. tb1 f49 decimal(10,0) unsigned zerofill
  8513. tb1 f50 decimal(63,30) unsigned zerofill
  8514. tb1 f51 decimal(10,0) unsigned zerofill
  8515. tb1 f52 decimal(63,30) unsigned zerofill
  8516. tb1 f53 decimal(10,0)
  8517. tb1 f54 decimal(10,0) unsigned
  8518. tb1 f55 decimal(10,0) unsigned zerofill
  8519. tb1 f56 decimal(10,0) unsigned zerofill
  8520. tb1 f57 decimal(10,0)
  8521. tb1 f58 decimal(64,0)
  8522. tb2 f59 decimal(10,0) unsigned
  8523. tb2 f60 decimal(64,0) unsigned
  8524. tb2 f61 decimal(10,0) unsigned zerofill
  8525. tb2 f62 decimal(64,0) unsigned zerofill
  8526. tb2 f63 decimal(10,0) unsigned zerofill
  8527. tb2 f64 decimal(64,0) unsigned zerofill
  8528. tb2 f65 decimal(10,0)
  8529. tb2 f66 decimal(63,30)
  8530. tb2 f67 decimal(10,0) unsigned
  8531. tb2 f68 decimal(63,30) unsigned
  8532. tb2 f69 decimal(10,0) unsigned zerofill
  8533. tb2 f70 decimal(63,30) unsigned zerofill
  8534. tb2 f71 decimal(10,0) unsigned zerofill
  8535. tb2 f72 decimal(63,30) unsigned zerofill
  8536. tb2 f73 double
  8537. tb2 f74 double unsigned
  8538. tb2 f75 double unsigned zerofill
  8539. tb2 f76 double unsigned zerofill
  8540. tb2 f77 double
  8541. tb2 f78 double unsigned
  8542. tb2 f79 double unsigned zerofill
  8543. tb2 f80 double unsigned zerofill
  8544. tb2 f81 float
  8545. tb2 f82 float unsigned
  8546. tb2 f83 float unsigned zerofill
  8547. tb2 f84 float unsigned zerofill
  8548. tb2 f85 float
  8549. tb2 f86 float
  8550. tb2 f87 float unsigned
  8551. tb2 f88 float unsigned
  8552. tb2 f89 float unsigned zerofill
  8553. tb2 f90 float unsigned zerofill
  8554. tb2 f91 float unsigned zerofill
  8555. tb2 f92 float unsigned zerofill
  8556. tb2 f93 float
  8557. tb2 f94 double
  8558. tb2 f95 float unsigned
  8559. tb2 f96 double unsigned
  8560. tb2 f97 float unsigned zerofill
  8561. tb2 f98 double unsigned zerofill
  8562. tb2 f99 float unsigned zerofill
  8563. tb2 f100 double unsigned zerofill
  8564. tb2 f101 date
  8565. tb2 f102 time
  8566. tb2 f103 datetime
  8567. tb2 f104 timestamp
  8568. tb2 f105 year(4)
  8569. tb2 f106 year(4)
  8570. tb2 f107 year(4)
  8571. tb2 f108 enum('1enum','2enum')
  8572. tb2 f109 set('1set','2set')
  8573. tb2 f110 varbinary(64)
  8574. tb2 f111 varbinary(27)
  8575. tb2 f112 varbinary(64)
  8576. tb2 f113 varbinary(192)
  8577. tb2 f114 varbinary(192)
  8578. tb2 f115 varbinary(27)
  8579. tb2 f116 varbinary(64)
  8580. tb2 f117 varbinary(192)
  8581. tb3 f118 char(1)
  8582. tb3 f119 char(1)
  8583. tb3 f120 char(1)
  8584. tb3 f121 tinytext
  8585. tb3 f122 text
  8586. tb3 f123 mediumtext
  8587. tb3 f124 longtext
  8588. tb3 f125 tinyblob
  8589. tb3 f126 blob
  8590. tb3 f127 mediumblob
  8591. tb3 f128 longblob
  8592. tb3 f129 binary(1)
  8593. tb3 f130 tinyint(4)
  8594. tb3 f131 tinyint(3) unsigned
  8595. tb3 f132 tinyint(3) unsigned zerofill
  8596. tb3 f133 tinyint(3) unsigned zerofill
  8597. tb3 f134 smallint(6)
  8598. tb3 f135 smallint(5) unsigned
  8599. tb3 f136 smallint(5) unsigned zerofill
  8600. tb3 f137 smallint(5) unsigned zerofill
  8601. tb3 f138 mediumint(9)
  8602. tb3 f139 mediumint(8) unsigned
  8603. tb3 f140 mediumint(8) unsigned zerofill
  8604. tb3 f141 mediumint(8) unsigned zerofill
  8605. tb3 f142 int(11)
  8606. tb3 f143 int(10) unsigned
  8607. tb3 f144 int(10) unsigned zerofill
  8608. tb3 f145 int(10) unsigned zerofill
  8609. tb3 f146 bigint(20)
  8610. tb3 f147 bigint(20) unsigned
  8611. tb3 f148 bigint(20) unsigned zerofill
  8612. tb3 f149 bigint(20) unsigned zerofill
  8613. tb3 f150 decimal(10,0)
  8614. tb3 f151 decimal(10,0) unsigned
  8615. tb3 f152 decimal(10,0) unsigned zerofill
  8616. tb3 f153 decimal(10,0) unsigned zerofill
  8617. tb3 f154 decimal(10,0)
  8618. tb3 f155 decimal(64,0)
  8619. tb3 f156 decimal(10,0) unsigned
  8620. tb3 f157 decimal(64,0) unsigned
  8621. tb3 f158 decimal(10,0) unsigned zerofill
  8622. tb3 f159 decimal(64,0) unsigned zerofill
  8623. tb3 f160 decimal(10,0) unsigned zerofill
  8624. tb3 f161 decimal(64,0) unsigned zerofill
  8625. tb3 f162 decimal(10,0)
  8626. tb3 f163 decimal(63,30)
  8627. tb3 f164 decimal(10,0) unsigned
  8628. tb3 f165 decimal(63,30) unsigned
  8629. tb3 f166 decimal(10,0) unsigned zerofill
  8630. tb3 f167 decimal(63,30) unsigned zerofill
  8631. tb3 f168 decimal(10,0) unsigned zerofill
  8632. tb3 f169 decimal(63,30) unsigned zerofill
  8633. tb3 f170 decimal(10,0)
  8634. tb3 f171 decimal(10,0) unsigned
  8635. tb3 f172 decimal(10,0) unsigned zerofill
  8636. tb3 f173 decimal(10,0) unsigned zerofill
  8637. tb3 f174 decimal(10,0)
  8638. tb3 f175 decimal(64,0)
  8639. tb4 f176 decimal(10,0) unsigned
  8640. tb4 f177 decimal(64,0) unsigned
  8641. tb4 f178 decimal(10,0) unsigned zerofill
  8642. tb4 f179 decimal(64,0) unsigned zerofill
  8643. tb4 f180 decimal(10,0) unsigned zerofill
  8644. tb4 f181 decimal(64,0) unsigned zerofill
  8645. tb4 f182 decimal(10,0)
  8646. tb4 f183 decimal(63,30)
  8647. tb4 f184 decimal(10,0) unsigned
  8648. tb4 f185 decimal(63,30) unsigned
  8649. tb4 f186 decimal(10,0) unsigned zerofill
  8650. tb4 f187 decimal(63,30) unsigned zerofill
  8651. tb4 f188 decimal(10,0) unsigned zerofill
  8652. tb4 f189 decimal(63,30) unsigned zerofill
  8653. tb4 f190 double
  8654. tb4 f191 double unsigned
  8655. tb4 f192 double unsigned zerofill
  8656. tb4 f193 double unsigned zerofill
  8657. tb4 f194 double
  8658. tb4 f195 double unsigned
  8659. tb4 f196 double unsigned zerofill
  8660. tb4 f197 double unsigned zerofill
  8661. tb4 f198 float
  8662. tb4 f199 float unsigned
  8663. tb4 f200 float unsigned zerofill
  8664. tb4 f201 float unsigned zerofill
  8665. tb4 f202 float
  8666. tb4 f203 float
  8667. tb4 f204 float unsigned
  8668. tb4 f205 float unsigned
  8669. tb4 f206 float unsigned zerofill
  8670. tb4 f207 float unsigned zerofill
  8671. tb4 f208 float unsigned zerofill
  8672. tb4 f209 float unsigned zerofill
  8673. tb4 f210 float
  8674. tb4 f211 double
  8675. tb4 f212 float unsigned
  8676. tb4 f213 double unsigned
  8677. tb4 f214 float unsigned zerofill
  8678. tb4 f215 double unsigned zerofill
  8679. tb4 f216 float unsigned zerofill
  8680. tb4 f217 double unsigned zerofill
  8681. tb4 f218 date
  8682. tb4 f219 time
  8683. tb4 f220 datetime
  8684. tb4 f221 timestamp
  8685. tb4 f222 year(4)
  8686. tb4 f223 year(4)
  8687. tb4 f224 year(4)
  8688. tb4 f225 enum('1enum','2enum')
  8689. tb4 f226 set('1set','2set')
  8690. tb4 f227 varbinary(64)
  8691. tb4 f228 varbinary(27)
  8692. tb4 f229 varbinary(64)
  8693. tb4 f230 varbinary(192)
  8694. tb4 f231 varbinary(192)
  8695. tb4 f232 varbinary(27)
  8696. tb4 f233 varbinary(64)
  8697. tb4 f234 varbinary(192)
  8698. tb4 f235 char(255)
  8699. tb4 f236 char(60)
  8700. tb4 f237 char(255)
  8701. tb4 f238 varchar(0)
  8702. tb4 f239 varbinary(1000)
  8703. tb4 f240 varchar(120)
  8704. tb4 f241 char(100)
  8705. tb4 f242 bit(30)
  8706. select character_set_name from character_sets;
  8707. character_set_name
  8708. big5
  8709. dec8
  8710. cp850
  8711. hp8
  8712. koi8r
  8713. latin1
  8714. latin2
  8715. swe7
  8716. ascii
  8717. ujis
  8718. sjis
  8719. hebrew
  8720. tis620
  8721. euckr
  8722. koi8u
  8723. gb2312
  8724. greek
  8725. cp1250
  8726. gbk
  8727. latin5
  8728. armscii8
  8729. utf8
  8730. ucs2
  8731. cp866
  8732. keybcs2
  8733. macce
  8734. macroman
  8735. cp852
  8736. latin7
  8737. cp1251
  8738. cp1256
  8739. cp1257
  8740. binary
  8741. geostd8
  8742. cp932
  8743. eucjpms
  8744. select collation_name from collations;
  8745. collation_name
  8746. big5_chinese_ci
  8747. big5_bin
  8748. dec8_swedish_ci
  8749. dec8_bin
  8750. cp850_general_ci
  8751. cp850_bin
  8752. hp8_english_ci
  8753. hp8_bin
  8754. koi8r_general_ci
  8755. koi8r_bin
  8756. latin1_german1_ci
  8757. latin1_swedish_ci
  8758. latin1_danish_ci
  8759. latin1_german2_ci
  8760. latin1_bin
  8761. latin1_general_ci
  8762. latin1_general_cs
  8763. latin1_spanish_ci
  8764. latin2_czech_cs
  8765. latin2_general_ci
  8766. latin2_hungarian_ci
  8767. latin2_croatian_ci
  8768. latin2_bin
  8769. swe7_swedish_ci
  8770. swe7_bin
  8771. ascii_general_ci
  8772. ascii_bin
  8773. ujis_japanese_ci
  8774. ujis_bin
  8775. sjis_japanese_ci
  8776. sjis_bin
  8777. hebrew_general_ci
  8778. hebrew_bin
  8779. tis620_thai_ci
  8780. tis620_bin
  8781. euckr_korean_ci
  8782. euckr_bin
  8783. koi8u_general_ci
  8784. koi8u_bin
  8785. gb2312_chinese_ci
  8786. gb2312_bin
  8787. greek_general_ci
  8788. greek_bin
  8789. cp1250_general_ci
  8790. cp1250_czech_cs
  8791. cp1250_croatian_ci
  8792. cp1250_bin
  8793. cp1250_polish_ci
  8794. gbk_chinese_ci
  8795. gbk_bin
  8796. latin5_turkish_ci
  8797. latin5_bin
  8798. armscii8_general_ci
  8799. armscii8_bin
  8800. utf8_general_ci
  8801. utf8_bin
  8802. utf8_unicode_ci
  8803. utf8_icelandic_ci
  8804. utf8_latvian_ci
  8805. utf8_romanian_ci
  8806. utf8_slovenian_ci
  8807. utf8_polish_ci
  8808. utf8_estonian_ci
  8809. utf8_spanish_ci
  8810. utf8_swedish_ci
  8811. utf8_turkish_ci
  8812. utf8_czech_ci
  8813. utf8_danish_ci
  8814. utf8_lithuanian_ci
  8815. utf8_slovak_ci
  8816. utf8_spanish2_ci
  8817. utf8_roman_ci
  8818. utf8_persian_ci
  8819. utf8_esperanto_ci
  8820. utf8_hungarian_ci
  8821. utf8_general_cs
  8822. ucs2_general_ci
  8823. ucs2_bin
  8824. ucs2_unicode_ci
  8825. ucs2_icelandic_ci
  8826. ucs2_latvian_ci
  8827. ucs2_romanian_ci
  8828. ucs2_slovenian_ci
  8829. ucs2_polish_ci
  8830. ucs2_estonian_ci
  8831. ucs2_spanish_ci
  8832. ucs2_swedish_ci
  8833. ucs2_turkish_ci
  8834. ucs2_czech_ci
  8835. ucs2_danish_ci
  8836. ucs2_lithuanian_ci
  8837. ucs2_slovak_ci
  8838. ucs2_spanish2_ci
  8839. ucs2_roman_ci
  8840. ucs2_persian_ci
  8841. ucs2_esperanto_ci
  8842. ucs2_hungarian_ci
  8843. cp866_general_ci
  8844. cp866_bin
  8845. keybcs2_general_ci
  8846. keybcs2_bin
  8847. macce_general_ci
  8848. macce_bin
  8849. macroman_general_ci
  8850. macroman_bin
  8851. cp852_general_ci
  8852. cp852_bin
  8853. latin7_estonian_cs
  8854. latin7_general_ci
  8855. latin7_general_cs
  8856. latin7_bin
  8857. cp1251_bulgarian_ci
  8858. cp1251_ukrainian_ci
  8859. cp1251_bin
  8860. cp1251_general_ci
  8861. cp1251_general_cs
  8862. cp1256_general_ci
  8863. cp1256_bin
  8864. cp1257_lithuanian_ci
  8865. cp1257_bin
  8866. cp1257_general_ci
  8867. binary
  8868. geostd8_general_ci
  8869. geostd8_bin
  8870. cp932_japanese_ci
  8871. cp932_bin
  8872. eucjpms_japanese_ci
  8873. eucjpms_bin
  8874. select routine_name, routine_type from routines;
  8875. routine_name routine_type
  8876. select table_name, index_name from statistics;
  8877. table_name index_name
  8878. select table_name from views;
  8879. table_name
  8880. select privilege_type from user_privileges;
  8881. privilege_type
  8882. USAGE
  8883. select grantee, privilege_type from schema_privileges;
  8884. grantee privilege_type
  8885. select * from table_privileges;
  8886. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  8887. select column_name, privilege_type from column_privileges;
  8888. column_name privilege_type
  8889. select table_name,constraint_type from table_constraints;
  8890. table_name constraint_type
  8891. select table_schema, table_name, column_name from key_column_usage;
  8892. table_schema table_name column_name
  8893. root@localhost db_datadict
  8894. DROP USER 'u_6_401017'@'localhost';
  8895. Testcase 3.2.1.18:
  8896. --------------------------------------------------------------------------------
  8897. CREATE USER 'u_6_401018'@'localhost';
  8898. GRANT CREATE VIEW ON information_schema.* TO 'u_6_401018'@'localhost';
  8899. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8900. GRANT ALL ON db_datadict.* TO 'u_6_401018'@'localhost';
  8901. SHOW GRANTS FOR 'u_6_401018'@'localhost';
  8902. Grants for u_6_401018@localhost
  8903. GRANT USAGE ON *.* TO 'u_6_401018'@'localhost'
  8904. GRANT ALL PRIVILEGES ON `db_datadict`.* TO 'u_6_401018'@'localhost'
  8905. FLUSH PRIVILEGES;
  8906. DROP DATABASE IF EXISTS db_datadict;
  8907. CREATE DATABASE db_datadict;
  8908. connect(localhost,u_6_401018,,test,MYSQL_PORT,MYSQL_SOCK);
  8909. USE db_datadict;
  8910. create view db_datadict.v_401018 as
  8911. select * from information_schema.schemata;
  8912. SELECT * FROM v_401018 ORDER BY 2 DESC;
  8913. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  8914. NULL test latin1 latin1_swedish_ci NULL
  8915. NULL information_schema utf8 utf8_general_ci NULL
  8916. NULL db_datadict latin1 latin1_swedish_ci NULL
  8917. root@localhost NULL
  8918. DROP USER 'u_6_401018'@'localhost';
  8919. DROP DATABASE db_datadict;
  8920. Testcase 3.2.1.19:
  8921. --------------------------------------------------------------------------------
  8922. CREATE USER 'u_6_401019'@'localhost';
  8923. grant alter on information_schema.* to 'u_6_401019'@'localhost';
  8924. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8925. grant alter routine on information_schema.* to 'u_6_401019'@'localhost';
  8926. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8927. grant create on information_schema.* to 'u_6_401019'@'localhost';
  8928. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8929. grant create routine on information_schema.* to 'u_6_401019'@'localhost';
  8930. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8931. grant create temporary tables
  8932. on information_schema.* to 'u_6_401019'@'localhost';
  8933. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8934. grant delete on information_schema.* to 'u_6_401019'@'localhost';
  8935. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8936. grant drop on information_schema.* to 'u_6_401019'@'localhost';
  8937. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8938. grant execute on information_schema.* to 'u_6_401019'@'localhost';
  8939. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8940. grant index on information_schema.* to 'u_6_401019'@'localhost';
  8941. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8942. grant insert on information_schema.* to 'u_6_401019'@'localhost';
  8943. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8944. grant lock tables on information_schema.* to 'u_6_401019'@'localhost';
  8945. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8946. grant update on information_schema.* to 'u_6_401019'@'localhost';
  8947. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8948. SELECT * FROM information_schema.table_privileges
  8949. WHERE table_schema = "information_schema";
  8950. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  8951. SELECT * FROM information_schema.column_privileges
  8952. WHERE table_schema = "information_schema";
  8953. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  8954. DROP USER 'u_6_401019'@'localhost';
  8955. Testcase 3.2.1.20:
  8956. --------------------------------------------------------------------------------
  8957. CREATE USER 'u_6_401020'@'localhost';
  8958. connect(localhost,u_6_401020,,test,MYSQL_PORT,MYSQL_SOCK);
  8959. USE information_schema;
  8960. SELECT * FROM schemata;
  8961. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  8962. NULL information_schema utf8 utf8_general_ci NULL
  8963. NULL test latin1 latin1_swedish_ci NULL
  8964. CREATE TABLE tb_not_allowed ( col TEXT );
  8965. ERROR 42S02: Unknown table 'tb_not_allowed' in information_schema
  8966. create view res_v1 as select * from information_schema.schemata;
  8967. ERROR 42S02: Unknown table 'res_v1' in information_schema
  8968. alter table schemata modify catalog_name varchar(255);
  8969. ERROR 42000: Access denied for user 'u_6_401020'@'localhost' to database 'information_schema'
  8970. update schemata set catalog_name = 'abc'
  8971. where schema_name = 'information_schema';
  8972. ERROR 42000: Access denied for user 'u_6_401020'@'localhost' to database 'information_schema'
  8973. CREATE PROCEDURE sp_3_2_1_20()
  8974. BEGIN
  8975. INSERT INTO information_schema.schema_privileges (table_schema,privilege_type)
  8976. VALUES('db2','insert');
  8977. END//
  8978. ERROR 42000: Unknown database 'information_schema'
  8979. DELETE FROM schemata WHERE schema_name = 'information_schema';
  8980. ERROR 42000: Access denied for user 'u_6_401020'@'localhost' to database 'information_schema'
  8981. root@localhost NULL
  8982. DROP USER 'u_6_401020'@'localhost';
  8983. Testcase 3.2.2.1:
  8984. --------------------------------------------------------------------------------
  8985. USE information_schema;
  8986. DESC character_sets;
  8987. Field Type Null Key Default Extra
  8988. CHARACTER_SET_NAME varchar(64) NO
  8989. DEFAULT_COLLATE_NAME varchar(64) NO
  8990. DESCRIPTION varchar(60) NO
  8991. MAXLEN bigint(3) NO 0
  8992. SHOW CREATE TABLE character_sets;
  8993. Table Create Table
  8994. CHARACTER_SETS CREATE TEMPORARY TABLE `CHARACTER_SETS` (
  8995. `CHARACTER_SET_NAME` varchar(64) NOT NULL DEFAULT '',
  8996. `DEFAULT_COLLATE_NAME` varchar(64) NOT NULL DEFAULT '',
  8997. `DESCRIPTION` varchar(60) NOT NULL DEFAULT '',
  8998. `MAXLEN` bigint(3) NOT NULL DEFAULT '0'
  8999. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  9000. SELECT COUNT(*) FROM information_schema.columns
  9001. WHERE table_schema = 'information_schema'
  9002. AND table_name = 'character_sets'
  9003. ORDER BY ordinal_position;
  9004. COUNT(*)
  9005. 4
  9006. SELECT * FROM information_schema.columns
  9007. WHERE table_schema = 'information_schema'
  9008. AND table_name = 'character_sets'
  9009. ORDER BY ordinal_position;
  9010. 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
  9011. NULL information_schema character_sets CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9012. NULL information_schema character_sets DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9013. NULL information_schema character_sets DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  9014. NULL information_schema character_sets MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  9015. Testcase 3.2.2.2:
  9016. --------------------------------------------------------------------------------
  9017. root@localhost information_schema
  9018. SELECT * FROM information_schema.character_sets;
  9019. CHARACTER_SET_NAME DEFAULT_COLLATE_NAME DESCRIPTION MAXLEN
  9020. big5 big5_chinese_ci Big5 Traditional Chinese 2
  9021. dec8 dec8_swedish_ci DEC West European 1
  9022. cp850 cp850_general_ci DOS West European 1
  9023. hp8 hp8_english_ci HP West European 1
  9024. koi8r koi8r_general_ci KOI8-R Relcom Russian 1
  9025. latin1 latin1_swedish_ci cp1252 West European 1
  9026. latin2 latin2_general_ci ISO 8859-2 Central European 1
  9027. swe7 swe7_swedish_ci 7bit Swedish 1
  9028. ascii ascii_general_ci US ASCII 1
  9029. ujis ujis_japanese_ci EUC-JP Japanese 3
  9030. sjis sjis_japanese_ci Shift-JIS Japanese 2
  9031. hebrew hebrew_general_ci ISO 8859-8 Hebrew 1
  9032. tis620 tis620_thai_ci TIS620 Thai 1
  9033. euckr euckr_korean_ci EUC-KR Korean 2
  9034. koi8u koi8u_general_ci KOI8-U Ukrainian 1
  9035. gb2312 gb2312_chinese_ci GB2312 Simplified Chinese 2
  9036. greek greek_general_ci ISO 8859-7 Greek 1
  9037. cp1250 cp1250_general_ci Windows Central European 1
  9038. gbk gbk_chinese_ci GBK Simplified Chinese 2
  9039. latin5 latin5_turkish_ci ISO 8859-9 Turkish 1
  9040. armscii8 armscii8_general_ci ARMSCII-8 Armenian 1
  9041. utf8 utf8_general_ci UTF-8 Unicode 3
  9042. ucs2 ucs2_general_ci UCS-2 Unicode 2
  9043. cp866 cp866_general_ci DOS Russian 1
  9044. keybcs2 keybcs2_general_ci DOS Kamenicky Czech-Slovak 1
  9045. macce macce_general_ci Mac Central European 1
  9046. macroman macroman_general_ci Mac West European 1
  9047. cp852 cp852_general_ci DOS Central European 1
  9048. latin7 latin7_general_ci ISO 8859-13 Baltic 1
  9049. cp1251 cp1251_general_ci Windows Cyrillic 1
  9050. cp1256 cp1256_general_ci Windows Arabic 1
  9051. cp1257 cp1257_general_ci Windows Baltic 1
  9052. binary binary Binary pseudo charset 1
  9053. geostd8 geostd8_general_ci GEOSTD8 Georgian 1
  9054. cp932 cp932_japanese_ci SJIS for Windows Japanese 2
  9055. eucjpms eucjpms_japanese_ci UJIS for Windows Japanese 3
  9056. Testcase 3.2.2.3:
  9057. --------------------------------------------------------------------------------
  9058. Testcase 3.2.3.1:
  9059. --------------------------------------------------------------------------------
  9060. USE information_schema;
  9061. DESC collations;
  9062. Field Type Null Key Default Extra
  9063. COLLATION_NAME varchar(64) NO
  9064. CHARACTER_SET_NAME varchar(64) NO
  9065. ID bigint(11) NO 0
  9066. IS_DEFAULT varchar(3) NO
  9067. IS_COMPILED varchar(3) NO
  9068. SORTLEN bigint(3) NO 0
  9069. SHOW CREATE TABLE collations;
  9070. Table Create Table
  9071. COLLATIONS CREATE TEMPORARY TABLE `COLLATIONS` (
  9072. `COLLATION_NAME` varchar(64) NOT NULL DEFAULT '',
  9073. `CHARACTER_SET_NAME` varchar(64) NOT NULL DEFAULT '',
  9074. `ID` bigint(11) NOT NULL DEFAULT '0',
  9075. `IS_DEFAULT` varchar(3) NOT NULL DEFAULT '',
  9076. `IS_COMPILED` varchar(3) NOT NULL DEFAULT '',
  9077. `SORTLEN` bigint(3) NOT NULL DEFAULT '0'
  9078. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  9079. SELECT COUNT(*) FROM information_schema.columns
  9080. WHERE table_schema = 'information_schema'
  9081. AND table_name = 'collations'
  9082. ORDER BY ordinal_position;
  9083. COUNT(*)
  9084. 6
  9085. SELECT * FROM information_schema.columns
  9086. WHERE table_schema = 'information_schema'
  9087. AND table_name = 'collations'
  9088. ORDER BY ordinal_position;
  9089. 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
  9090. NULL information_schema collations COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9091. NULL information_schema collations CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9092. NULL information_schema collations ID 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(11) select
  9093. NULL information_schema collations IS_DEFAULT 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9094. NULL information_schema collations IS_COMPILED 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9095. NULL information_schema collations SORTLEN 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  9096. Testcase 3.2.3.2:
  9097. --------------------------------------------------------------------------------
  9098. SELECT * FROM collations;
  9099. COLLATION_NAME CHARACTER_SET_NAME ID IS_DEFAULT IS_COMPILED SORTLEN
  9100. big5_chinese_ci big5 1 Yes Yes 1
  9101. big5_bin big5 84 Yes 1
  9102. dec8_swedish_ci dec8 3 Yes 0
  9103. dec8_bin dec8 69 0
  9104. cp850_general_ci cp850 4 Yes 0
  9105. cp850_bin cp850 80 0
  9106. hp8_english_ci hp8 6 Yes 0
  9107. hp8_bin hp8 72 0
  9108. koi8r_general_ci koi8r 7 Yes 0
  9109. koi8r_bin koi8r 74 0
  9110. latin1_german1_ci latin1 5 Yes 1
  9111. latin1_swedish_ci latin1 8 Yes Yes 1
  9112. latin1_danish_ci latin1 15 Yes 1
  9113. latin1_german2_ci latin1 31 Yes 2
  9114. latin1_bin latin1 47 Yes 1
  9115. latin1_general_ci latin1 48 Yes 1
  9116. latin1_general_cs latin1 49 Yes 1
  9117. latin1_spanish_ci latin1 94 Yes 1
  9118. latin2_czech_cs latin2 2 Yes 4
  9119. latin2_general_ci latin2 9 Yes Yes 1
  9120. latin2_hungarian_ci latin2 21 Yes 1
  9121. latin2_croatian_ci latin2 27 Yes 1
  9122. latin2_bin latin2 77 Yes 1
  9123. swe7_swedish_ci swe7 10 Yes 0
  9124. swe7_bin swe7 82 0
  9125. ascii_general_ci ascii 11 Yes 0
  9126. ascii_bin ascii 65 0
  9127. ujis_japanese_ci ujis 12 Yes Yes 1
  9128. ujis_bin ujis 91 Yes 1
  9129. sjis_japanese_ci sjis 13 Yes Yes 1
  9130. sjis_bin sjis 88 Yes 1
  9131. hebrew_general_ci hebrew 16 Yes 0
  9132. hebrew_bin hebrew 71 0
  9133. tis620_thai_ci tis620 18 Yes Yes 4
  9134. tis620_bin tis620 89 Yes 1
  9135. euckr_korean_ci euckr 19 Yes Yes 1
  9136. euckr_bin euckr 85 Yes 1
  9137. koi8u_general_ci koi8u 22 Yes 0
  9138. koi8u_bin koi8u 75 0
  9139. gb2312_chinese_ci gb2312 24 Yes Yes 1
  9140. gb2312_bin gb2312 86 Yes 1
  9141. greek_general_ci greek 25 Yes 0
  9142. greek_bin greek 70 0
  9143. cp1250_general_ci cp1250 26 Yes Yes 1
  9144. cp1250_czech_cs cp1250 34 Yes 2
  9145. cp1250_croatian_ci cp1250 44 Yes 1
  9146. cp1250_bin cp1250 66 Yes 1
  9147. cp1250_polish_ci cp1250 99 Yes 1
  9148. gbk_chinese_ci gbk 28 Yes Yes 1
  9149. gbk_bin gbk 87 Yes 1
  9150. latin5_turkish_ci latin5 30 Yes 0
  9151. latin5_bin latin5 78 0
  9152. armscii8_general_ci armscii8 32 Yes 0
  9153. armscii8_bin armscii8 64 0
  9154. utf8_general_ci utf8 33 Yes Yes 1
  9155. utf8_bin utf8 83 Yes 1
  9156. utf8_unicode_ci utf8 192 Yes 8
  9157. utf8_icelandic_ci utf8 193 Yes 8
  9158. utf8_latvian_ci utf8 194 Yes 8
  9159. utf8_romanian_ci utf8 195 Yes 8
  9160. utf8_slovenian_ci utf8 196 Yes 8
  9161. utf8_polish_ci utf8 197 Yes 8
  9162. utf8_estonian_ci utf8 198 Yes 8
  9163. utf8_spanish_ci utf8 199 Yes 8
  9164. utf8_swedish_ci utf8 200 Yes 8
  9165. utf8_turkish_ci utf8 201 Yes 8
  9166. utf8_czech_ci utf8 202 Yes 8
  9167. utf8_danish_ci utf8 203 Yes 8
  9168. utf8_lithuanian_ci utf8 204 Yes 8
  9169. utf8_slovak_ci utf8 205 Yes 8
  9170. utf8_spanish2_ci utf8 206 Yes 8
  9171. utf8_roman_ci utf8 207 Yes 8
  9172. utf8_persian_ci utf8 208 Yes 8
  9173. utf8_esperanto_ci utf8 209 Yes 8
  9174. utf8_hungarian_ci utf8 210 Yes 8
  9175. utf8_general_cs utf8 254 Yes 1
  9176. ucs2_general_ci ucs2 35 Yes Yes 1
  9177. ucs2_bin ucs2 90 Yes 1
  9178. ucs2_unicode_ci ucs2 128 Yes 8
  9179. ucs2_icelandic_ci ucs2 129 Yes 8
  9180. ucs2_latvian_ci ucs2 130 Yes 8
  9181. ucs2_romanian_ci ucs2 131 Yes 8
  9182. ucs2_slovenian_ci ucs2 132 Yes 8
  9183. ucs2_polish_ci ucs2 133 Yes 8
  9184. ucs2_estonian_ci ucs2 134 Yes 8
  9185. ucs2_spanish_ci ucs2 135 Yes 8
  9186. ucs2_swedish_ci ucs2 136 Yes 8
  9187. ucs2_turkish_ci ucs2 137 Yes 8
  9188. ucs2_czech_ci ucs2 138 Yes 8
  9189. ucs2_danish_ci ucs2 139 Yes 8
  9190. ucs2_lithuanian_ci ucs2 140 Yes 8
  9191. ucs2_slovak_ci ucs2 141 Yes 8
  9192. ucs2_spanish2_ci ucs2 142 Yes 8
  9193. ucs2_roman_ci ucs2 143 Yes 8
  9194. ucs2_persian_ci ucs2 144 Yes 8
  9195. ucs2_esperanto_ci ucs2 145 Yes 8
  9196. ucs2_hungarian_ci ucs2 146 Yes 8
  9197. cp866_general_ci cp866 36 Yes 0
  9198. cp866_bin cp866 68 0
  9199. keybcs2_general_ci keybcs2 37 Yes 0
  9200. keybcs2_bin keybcs2 73 0
  9201. macce_general_ci macce 38 Yes 0
  9202. macce_bin macce 43 0
  9203. macroman_general_ci macroman 39 Yes 0
  9204. macroman_bin macroman 53 0
  9205. cp852_general_ci cp852 40 Yes 0
  9206. cp852_bin cp852 81 0
  9207. latin7_estonian_cs latin7 20 0
  9208. latin7_general_ci latin7 41 Yes 0
  9209. latin7_general_cs latin7 42 0
  9210. latin7_bin latin7 79 0
  9211. cp1251_bulgarian_ci cp1251 14 0
  9212. cp1251_ukrainian_ci cp1251 23 0
  9213. cp1251_bin cp1251 50 0
  9214. cp1251_general_ci cp1251 51 Yes 0
  9215. cp1251_general_cs cp1251 52 0
  9216. cp1256_general_ci cp1256 57 Yes 0
  9217. cp1256_bin cp1256 67 0
  9218. cp1257_lithuanian_ci cp1257 29 0
  9219. cp1257_bin cp1257 58 0
  9220. cp1257_general_ci cp1257 59 Yes 0
  9221. binary binary 63 Yes Yes 1
  9222. geostd8_general_ci geostd8 92 Yes 0
  9223. geostd8_bin geostd8 93 0
  9224. cp932_japanese_ci cp932 95 Yes Yes 1
  9225. cp932_bin cp932 96 Yes 1
  9226. eucjpms_japanese_ci eucjpms 97 Yes Yes 1
  9227. eucjpms_bin eucjpms 98 Yes 1
  9228. Testcase 3.2.3.3:
  9229. --------------------------------------------------------------------------------
  9230. Testcase 3.2.4.1:
  9231. --------------------------------------------------------------------------------
  9232. USE information_schema;
  9233. DESC collation_character_set_applicability;
  9234. Field Type Null Key Default Extra
  9235. COLLATION_NAME varchar(64) NO
  9236. CHARACTER_SET_NAME varchar(64) NO
  9237. SHOW CREATE TABLE collation_character_set_applicability;
  9238. Table Create Table
  9239. COLLATION_CHARACTER_SET_APPLICABILITY CREATE TEMPORARY TABLE `COLLATION_CHARACTER_SET_APPLICABILITY` (
  9240. `COLLATION_NAME` varchar(64) NOT NULL DEFAULT '',
  9241. `CHARACTER_SET_NAME` varchar(64) NOT NULL DEFAULT ''
  9242. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  9243. SELECT COUNT(*) FROM information_schema.columns
  9244. WHERE table_schema = 'information_schema'
  9245. AND table_name = 'collation_character_set_applicability'
  9246. ORDER BY ordinal_position;
  9247. COUNT(*)
  9248. 2
  9249. SELECT * FROM information_schema.columns
  9250. WHERE table_schema = 'information_schema'
  9251. AND table_name = 'collation_character_set_applicability'
  9252. ORDER BY ordinal_position;
  9253. 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
  9254. NULL information_schema collation_character_set_applicability COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9255. NULL information_schema collation_character_set_applicability CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9256. Testcase 3.2.4.2:
  9257. --------------------------------------------------------------------------------
  9258. SELECT * FROM collation_character_set_applicability;
  9259. COLLATION_NAME CHARACTER_SET_NAME
  9260. big5_chinese_ci big5
  9261. big5_bin big5
  9262. dec8_swedish_ci dec8
  9263. dec8_bin dec8
  9264. cp850_general_ci cp850
  9265. cp850_bin cp850
  9266. hp8_english_ci hp8
  9267. hp8_bin hp8
  9268. koi8r_general_ci koi8r
  9269. koi8r_bin koi8r
  9270. latin1_german1_ci latin1
  9271. latin1_swedish_ci latin1
  9272. latin1_danish_ci latin1
  9273. latin1_german2_ci latin1
  9274. latin1_bin latin1
  9275. latin1_general_ci latin1
  9276. latin1_general_cs latin1
  9277. latin1_spanish_ci latin1
  9278. latin2_czech_cs latin2
  9279. latin2_general_ci latin2
  9280. latin2_hungarian_ci latin2
  9281. latin2_croatian_ci latin2
  9282. latin2_bin latin2
  9283. swe7_swedish_ci swe7
  9284. swe7_bin swe7
  9285. ascii_general_ci ascii
  9286. ascii_bin ascii
  9287. ujis_japanese_ci ujis
  9288. ujis_bin ujis
  9289. sjis_japanese_ci sjis
  9290. sjis_bin sjis
  9291. hebrew_general_ci hebrew
  9292. hebrew_bin hebrew
  9293. filename filename
  9294. tis620_thai_ci tis620
  9295. tis620_bin tis620
  9296. euckr_korean_ci euckr
  9297. euckr_bin euckr
  9298. koi8u_general_ci koi8u
  9299. koi8u_bin koi8u
  9300. gb2312_chinese_ci gb2312
  9301. gb2312_bin gb2312
  9302. greek_general_ci greek
  9303. greek_bin greek
  9304. cp1250_general_ci cp1250
  9305. cp1250_czech_cs cp1250
  9306. cp1250_croatian_ci cp1250
  9307. cp1250_bin cp1250
  9308. cp1250_polish_ci cp1250
  9309. gbk_chinese_ci gbk
  9310. gbk_bin gbk
  9311. latin5_turkish_ci latin5
  9312. latin5_bin latin5
  9313. armscii8_general_ci armscii8
  9314. armscii8_bin armscii8
  9315. utf8_general_ci utf8
  9316. utf8_bin utf8
  9317. utf8_unicode_ci utf8
  9318. utf8_icelandic_ci utf8
  9319. utf8_latvian_ci utf8
  9320. utf8_romanian_ci utf8
  9321. utf8_slovenian_ci utf8
  9322. utf8_polish_ci utf8
  9323. utf8_estonian_ci utf8
  9324. utf8_spanish_ci utf8
  9325. utf8_swedish_ci utf8
  9326. utf8_turkish_ci utf8
  9327. utf8_czech_ci utf8
  9328. utf8_danish_ci utf8
  9329. utf8_lithuanian_ci utf8
  9330. utf8_slovak_ci utf8
  9331. utf8_spanish2_ci utf8
  9332. utf8_roman_ci utf8
  9333. utf8_persian_ci utf8
  9334. utf8_esperanto_ci utf8
  9335. utf8_hungarian_ci utf8
  9336. utf8_general_cs utf8
  9337. ucs2_general_ci ucs2
  9338. ucs2_bin ucs2
  9339. ucs2_unicode_ci ucs2
  9340. ucs2_icelandic_ci ucs2
  9341. ucs2_latvian_ci ucs2
  9342. ucs2_romanian_ci ucs2
  9343. ucs2_slovenian_ci ucs2
  9344. ucs2_polish_ci ucs2
  9345. ucs2_estonian_ci ucs2
  9346. ucs2_spanish_ci ucs2
  9347. ucs2_swedish_ci ucs2
  9348. ucs2_turkish_ci ucs2
  9349. ucs2_czech_ci ucs2
  9350. ucs2_danish_ci ucs2
  9351. ucs2_lithuanian_ci ucs2
  9352. ucs2_slovak_ci ucs2
  9353. ucs2_spanish2_ci ucs2
  9354. ucs2_roman_ci ucs2
  9355. ucs2_persian_ci ucs2
  9356. ucs2_esperanto_ci ucs2
  9357. ucs2_hungarian_ci ucs2
  9358. cp866_general_ci cp866
  9359. cp866_bin cp866
  9360. keybcs2_general_ci keybcs2
  9361. keybcs2_bin keybcs2
  9362. macce_general_ci macce
  9363. macce_bin macce
  9364. macroman_general_ci macroman
  9365. macroman_bin macroman
  9366. cp852_general_ci cp852
  9367. cp852_bin cp852
  9368. latin7_estonian_cs latin7
  9369. latin7_general_ci latin7
  9370. latin7_general_cs latin7
  9371. latin7_bin latin7
  9372. cp1251_bulgarian_ci cp1251
  9373. cp1251_ukrainian_ci cp1251
  9374. cp1251_bin cp1251
  9375. cp1251_general_ci cp1251
  9376. cp1251_general_cs cp1251
  9377. cp1256_general_ci cp1256
  9378. cp1256_bin cp1256
  9379. cp1257_lithuanian_ci cp1257
  9380. cp1257_bin cp1257
  9381. cp1257_general_ci cp1257
  9382. binary binary
  9383. geostd8_general_ci geostd8
  9384. geostd8_bin geostd8
  9385. cp932_japanese_ci cp932
  9386. cp932_bin cp932
  9387. eucjpms_japanese_ci eucjpms
  9388. eucjpms_bin eucjpms
  9389. Testcase 3.2.4.3:
  9390. --------------------------------------------------------------------------------
  9391. Testcase 3.2.5.1:
  9392. --------------------------------------------------------------------------------
  9393. USE information_schema;
  9394. DESC column_privileges;
  9395. Field Type Null Key Default Extra
  9396. GRANTEE varchar(81) NO
  9397. TABLE_CATALOG varchar(4096) YES NULL
  9398. TABLE_SCHEMA varchar(64) NO
  9399. TABLE_NAME varchar(64) NO
  9400. COLUMN_NAME varchar(64) NO
  9401. PRIVILEGE_TYPE varchar(64) NO
  9402. IS_GRANTABLE varchar(3) NO
  9403. SHOW CREATE TABLE column_privileges;
  9404. Table Create Table
  9405. COLUMN_PRIVILEGES CREATE TEMPORARY TABLE `COLUMN_PRIVILEGES` (
  9406. `GRANTEE` varchar(81) NOT NULL DEFAULT '',
  9407. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  9408. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  9409. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  9410. `COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
  9411. `PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
  9412. `IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''
  9413. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  9414. SELECT COUNT(*) FROM information_schema.columns
  9415. WHERE table_schema = 'information_schema'
  9416. AND table_name = 'column_privileges'
  9417. ORDER BY ordinal_position;
  9418. COUNT(*)
  9419. 7
  9420. SELECT * FROM information_schema.columns
  9421. WHERE table_schema = 'information_schema'
  9422. AND table_name = 'column_privileges'
  9423. ORDER BY ordinal_position;
  9424. 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
  9425. NULL information_schema column_privileges GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  9426. NULL information_schema column_privileges TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9427. NULL information_schema column_privileges TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9428. NULL information_schema column_privileges TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9429. NULL information_schema column_privileges COLUMN_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9430. NULL information_schema column_privileges PRIVILEGE_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9431. NULL information_schema column_privileges IS_GRANTABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9432. Testcase 3.2.5.2 + 3.2.5.3 + 3.2.5.4:
  9433. --------------------------------------------------------------------------------
  9434. CREATE USER 'user_1'@'localhost';
  9435. CREATE USER 'user_2'@'localhost';
  9436. CREATE USER 'user_3'@'localhost';
  9437. DROP DATABASE IF EXISTS db_datadict;
  9438. CREATE DATABASE db_datadict;
  9439. USE db_datadict;
  9440. CREATE TABLE db_datadict.res_t40502 (f1 INT, f2 DECIMAL, f3 TEXT);
  9441. GRANT SELECT(f1, f3) ON db_datadict.res_t40502 TO 'user_1'@'localhost';
  9442. GRANT INSERT(f1) ON db_datadict.res_t40502 TO 'user_1'@'localhost';
  9443. GRANT UPDATE(f2) ON db_datadict.res_t40502 TO 'user_1'@'localhost';
  9444. GRANT SELECT(f2) ON db_datadict.res_t40502 TO 'user_2'@'localhost';
  9445. GRANT INSERT, SELECT ON db_datadict.res_t40502 TO 'user_3'@'localhost';
  9446. GRANT SELECT(f3) ON db_datadict.res_t40502 TO 'user_3'@'localhost';
  9447. GRANT INSERT, SELECT ON db_datadict.res_t40502 TO 'user_3'@'localhost' WITH GRANT OPTION;
  9448. GRANT ALL ON db_datadict.* TO 'user_3'@'localhost';
  9449. SELECT * FROM information_schema.column_privileges
  9450. WHERE grantee LIKE "'user%"
  9451. ORDER BY grantee, table_name, column_name, privilege_type;
  9452. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9453. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 INSERT NO
  9454. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 SELECT NO
  9455. 'user_1'@'localhost' NULL db_datadict res_t40502 f2 UPDATE NO
  9456. 'user_1'@'localhost' NULL db_datadict res_t40502 f3 SELECT NO
  9457. 'user_2'@'localhost' NULL db_datadict res_t40502 f2 SELECT NO
  9458. 'user_3'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  9459. FIXME: Check it is correct that the following GRANT changes ALL privs that user_1 has
  9460. -------------------------------------------------------------------------------------
  9461. GRANT UPDATE(f3) ON db_datadict.res_t40502 TO 'user_1'@'localhost' WITH GRANT OPTION;
  9462. SELECT * FROM information_schema.column_privileges
  9463. WHERE grantee LIKE "'user%"
  9464. ORDER BY grantee, table_name, column_name, privilege_type;
  9465. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9466. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 INSERT YES
  9467. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 SELECT YES
  9468. 'user_1'@'localhost' NULL db_datadict res_t40502 f2 UPDATE YES
  9469. 'user_1'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  9470. 'user_1'@'localhost' NULL db_datadict res_t40502 f3 UPDATE YES
  9471. 'user_2'@'localhost' NULL db_datadict res_t40502 f2 SELECT NO
  9472. 'user_3'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  9473. FLUSH PRIVILEGES;
  9474. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  9475. SELECT * FROM information_schema.column_privileges
  9476. WHERE grantee LIKE "'user%"
  9477. ORDER BY grantee, table_name, column_name, privilege_type;
  9478. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9479. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 INSERT YES
  9480. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 SELECT YES
  9481. 'user_1'@'localhost' NULL db_datadict res_t40502 f2 UPDATE YES
  9482. 'user_1'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  9483. 'user_1'@'localhost' NULL db_datadict res_t40502 f3 UPDATE YES
  9484. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  9485. SELECT * FROM information_schema.column_privileges
  9486. WHERE grantee LIKE "'user%"
  9487. ORDER BY grantee, table_name, column_name, privilege_type;
  9488. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9489. 'user_2'@'localhost' NULL db_datadict res_t40502 f2 SELECT NO
  9490. connect(localhost,user_3,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  9491. FIXME: check it is correct that granted TABLES doesn_t occur in COLUMN_PRIVILEGES
  9492. ---------------------------------------------------------------------------------
  9493. SELECT * FROM information_schema.table_privileges WHERE grantee LIKE "'user%";
  9494. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9495. 'user_3'@'localhost' NULL db_datadict res_t40502 SELECT YES
  9496. 'user_3'@'localhost' NULL db_datadict res_t40502 INSERT YES
  9497. SELECT * FROM information_schema.schema_privileges WHERE grantee LIKE "'user%";
  9498. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  9499. 'user_3'@'localhost' NULL db_datadict SELECT NO
  9500. 'user_3'@'localhost' NULL db_datadict INSERT NO
  9501. 'user_3'@'localhost' NULL db_datadict UPDATE NO
  9502. 'user_3'@'localhost' NULL db_datadict DELETE NO
  9503. 'user_3'@'localhost' NULL db_datadict CREATE NO
  9504. 'user_3'@'localhost' NULL db_datadict DROP NO
  9505. 'user_3'@'localhost' NULL db_datadict REFERENCES NO
  9506. 'user_3'@'localhost' NULL db_datadict INDEX NO
  9507. 'user_3'@'localhost' NULL db_datadict ALTER NO
  9508. 'user_3'@'localhost' NULL db_datadict CREATE TEMPORARY TABLES NO
  9509. 'user_3'@'localhost' NULL db_datadict LOCK TABLES NO
  9510. 'user_3'@'localhost' NULL db_datadict EXECUTE NO
  9511. 'user_3'@'localhost' NULL db_datadict CREATE VIEW NO
  9512. 'user_3'@'localhost' NULL db_datadict SHOW VIEW NO
  9513. 'user_3'@'localhost' NULL db_datadict CREATE ROUTINE NO
  9514. 'user_3'@'localhost' NULL db_datadict ALTER ROUTINE NO
  9515. 'user_3'@'localhost' NULL db_datadict EVENT NO
  9516. 'user_3'@'localhost' NULL db_datadict TRIGGER NO
  9517. SELECT * FROM information_schema.column_privileges
  9518. WHERE grantee LIKE "'user%"
  9519. ORDER BY grantee, table_name, column_name, privilege_type;
  9520. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9521. 'user_3'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  9522. GRANT SELECT(f1, f3) ON db_datadict.res_t40502 TO 'user_2'@'localhost';
  9523. FIXME: check whether it is intended that *my* grants to others are *NOT* shown here
  9524. -----------------------------------------------------------------------------------
  9525. SELECT * FROM information_schema.column_privileges
  9526. WHERE grantee LIKE "'user%"
  9527. ORDER BY grantee, table_name, column_name, privilege_type;
  9528. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9529. 'user_3'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  9530. user_2@localhost db_datadict
  9531. SELECT * FROM information_schema.column_privileges
  9532. WHERE grantee LIKE "'user%"
  9533. ORDER BY grantee, table_name, column_name, privilege_type;
  9534. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9535. 'user_2'@'localhost' NULL db_datadict res_t40502 f1 SELECT NO
  9536. 'user_2'@'localhost' NULL db_datadict res_t40502 f2 SELECT NO
  9537. 'user_2'@'localhost' NULL db_datadict res_t40502 f3 SELECT NO
  9538. root@localhost db_datadict
  9539. DROP TABLE IF EXISTS db_datadict.res_t40502;
  9540. DROP DATABASE IF EXISTS db_datadict;
  9541. DROP USER 'user_1'@'localhost';
  9542. DROP USER 'user_2'@'localhost';
  9543. DROP USER 'user_3'@'localhost';
  9544. Testcase 3.2.6.1:
  9545. --------------------------------------------------------------------------------
  9546. USE information_schema;
  9547. DESC columns;
  9548. Field Type Null Key Default Extra
  9549. TABLE_CATALOG varchar(4096) YES NULL
  9550. TABLE_SCHEMA varchar(64) NO
  9551. TABLE_NAME varchar(64) NO
  9552. COLUMN_NAME varchar(64) NO
  9553. ORDINAL_POSITION bigint(21) unsigned NO 0
  9554. COLUMN_DEFAULT longtext YES NULL
  9555. IS_NULLABLE varchar(3) NO
  9556. DATA_TYPE varchar(64) NO
  9557. CHARACTER_MAXIMUM_LENGTH bigint(21) unsigned YES NULL
  9558. CHARACTER_OCTET_LENGTH bigint(21) unsigned YES NULL
  9559. NUMERIC_PRECISION bigint(21) unsigned YES NULL
  9560. NUMERIC_SCALE bigint(21) unsigned YES NULL
  9561. CHARACTER_SET_NAME varchar(64) YES NULL
  9562. COLLATION_NAME varchar(64) YES NULL
  9563. COLUMN_TYPE longtext NO
  9564. COLUMN_KEY varchar(3) NO
  9565. EXTRA varchar(20) NO
  9566. PRIVILEGES varchar(80) NO
  9567. COLUMN_COMMENT varchar(255) NO
  9568. SHOW CREATE TABLE columns;
  9569. Table Create Table
  9570. COLUMNS CREATE TEMPORARY TABLE `COLUMNS` (
  9571. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  9572. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  9573. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  9574. `COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
  9575. `ORDINAL_POSITION` bigint(21) unsigned NOT NULL DEFAULT '0',
  9576. `COLUMN_DEFAULT` longtext,
  9577. `IS_NULLABLE` varchar(3) NOT NULL DEFAULT '',
  9578. `DATA_TYPE` varchar(64) NOT NULL DEFAULT '',
  9579. `CHARACTER_MAXIMUM_LENGTH` bigint(21) unsigned DEFAULT NULL,
  9580. `CHARACTER_OCTET_LENGTH` bigint(21) unsigned DEFAULT NULL,
  9581. `NUMERIC_PRECISION` bigint(21) unsigned DEFAULT NULL,
  9582. `NUMERIC_SCALE` bigint(21) unsigned DEFAULT NULL,
  9583. `CHARACTER_SET_NAME` varchar(64) DEFAULT NULL,
  9584. `COLLATION_NAME` varchar(64) DEFAULT NULL,
  9585. `COLUMN_TYPE` longtext NOT NULL,
  9586. `COLUMN_KEY` varchar(3) NOT NULL DEFAULT '',
  9587. `EXTRA` varchar(20) NOT NULL DEFAULT '',
  9588. `PRIVILEGES` varchar(80) NOT NULL DEFAULT '',
  9589. `COLUMN_COMMENT` varchar(255) NOT NULL DEFAULT ''
  9590. ) ENGINE=MyISAM DEFAULT CHARSET=utf8
  9591. SELECT COUNT(*) FROM information_schema.columns
  9592. WHERE table_schema = 'information_schema'
  9593. AND table_name = 'columns'
  9594. ORDER BY ordinal_position;
  9595. COUNT(*)
  9596. 19
  9597. SELECT * FROM information_schema.columns
  9598. WHERE table_schema = 'information_schema'
  9599. AND table_name = 'columns'
  9600. ORDER BY ordinal_position;
  9601. 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
  9602. NULL information_schema columns TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9603. NULL information_schema columns TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9604. NULL information_schema columns TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9605. NULL information_schema columns COLUMN_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9606. NULL information_schema columns ORDINAL_POSITION 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9607. NULL information_schema columns COLUMN_DEFAULT 6 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9608. NULL information_schema columns IS_NULLABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9609. NULL information_schema columns DATA_TYPE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9610. NULL information_schema columns CHARACTER_MAXIMUM_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9611. NULL information_schema columns CHARACTER_OCTET_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9612. NULL information_schema columns NUMERIC_PRECISION 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9613. NULL information_schema columns NUMERIC_SCALE 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9614. NULL information_schema columns CHARACTER_SET_NAME 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9615. NULL information_schema columns COLLATION_NAME 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9616. NULL information_schema columns COLUMN_TYPE 15 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9617. NULL information_schema columns COLUMN_KEY 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9618. NULL information_schema columns EXTRA 17 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  9619. NULL information_schema columns PRIVILEGES 18 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  9620. NULL information_schema columns COLUMN_COMMENT 19 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  9621. Testcase 3.2.6.2 + 3.2.6.3:
  9622. --------------------------------------------------------------------------------
  9623. DROP DATABASE IF EXISTS db_datadict;
  9624. CREATE DATABASE db_datadict;
  9625. CREATE USER 'user_1'@'localhost';
  9626. CREATE USER 'user_2'@'localhost';
  9627. USE db_datadict;
  9628. create table t_6_406001(f1 char(10), f2 text, f3 date, f4 int);
  9629. grant select(f1, f2) on db_datadict.t_6_406001 to 'user_1'@'localhost';
  9630. create table t_6_406002(f1 char(10), f2 text, f3 date, f4 int);
  9631. GRANT INSERT(f1, f2) ON db_datadict.t_6_406002 TO 'user_2'@'localhost';
  9632. FLUSH PRIVILEGES;
  9633. SELECT * FROM information_schema.columns
  9634. ORDER BY table_schema, table_name, ordinal_position;
  9635. 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
  9636. 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
  9637. NULL db_datadict t_6_406001 f2 2 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  9638. NULL db_datadict t_6_406001 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  9639. NULL db_datadict t_6_406001 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  9640. 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
  9641. NULL db_datadict t_6_406002 f2 2 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  9642. NULL db_datadict t_6_406002 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  9643. NULL db_datadict t_6_406002 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  9644. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9645. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9646. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  9647. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  9648. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9649. NULL information_schema COLLATIONS CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9650. NULL information_schema COLLATIONS ID 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(11) select
  9651. NULL information_schema COLLATIONS IS_DEFAULT 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9652. NULL information_schema COLLATIONS IS_COMPILED 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9653. NULL information_schema COLLATIONS SORTLEN 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  9654. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9655. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9656. NULL information_schema COLUMNS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9657. NULL information_schema COLUMNS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9658. NULL information_schema COLUMNS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9659. NULL information_schema COLUMNS COLUMN_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9660. NULL information_schema COLUMNS ORDINAL_POSITION 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9661. NULL information_schema COLUMNS COLUMN_DEFAULT 6 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9662. NULL information_schema COLUMNS IS_NULLABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9663. NULL information_schema COLUMNS DATA_TYPE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9664. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9665. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9666. NULL information_schema COLUMNS NUMERIC_PRECISION 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9667. NULL information_schema COLUMNS NUMERIC_SCALE 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9668. NULL information_schema COLUMNS CHARACTER_SET_NAME 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9669. NULL information_schema COLUMNS COLLATION_NAME 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9670. NULL information_schema COLUMNS COLUMN_TYPE 15 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9671. NULL information_schema COLUMNS COLUMN_KEY 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9672. NULL information_schema COLUMNS EXTRA 17 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  9673. NULL information_schema COLUMNS PRIVILEGES 18 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  9674. NULL information_schema COLUMNS COLUMN_COMMENT 19 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  9675. NULL information_schema COLUMN_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  9676. NULL information_schema COLUMN_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9677. NULL information_schema COLUMN_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9678. NULL information_schema COLUMN_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9679. NULL information_schema COLUMN_PRIVILEGES COLUMN_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9680. NULL information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9681. NULL information_schema COLUMN_PRIVILEGES IS_GRANTABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9682. NULL information_schema ENGINES ENGINE 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9683. NULL information_schema ENGINES SUPPORT 2 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  9684. NULL information_schema ENGINES COMMENT 3 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  9685. NULL information_schema ENGINES TRANSACTIONS 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9686. NULL information_schema ENGINES XA 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9687. NULL information_schema ENGINES SAVEPOINTS 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9688. NULL information_schema EVENTS EVENT_CATALOG 1 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9689. NULL information_schema EVENTS EVENT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9690. NULL information_schema EVENTS EVENT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9691. NULL information_schema EVENTS DEFINER 4 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  9692. NULL information_schema EVENTS TIME_ZONE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9693. NULL information_schema EVENTS EVENT_BODY 6 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  9694. NULL information_schema EVENTS EVENT_DEFINITION 7 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9695. NULL information_schema EVENTS EVENT_TYPE 8 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  9696. NULL information_schema EVENTS EXECUTE_AT 9 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9697. NULL information_schema EVENTS INTERVAL_VALUE 10 NULL YES varchar 256 768 NULL NULL utf8 utf8_general_ci varchar(256) select
  9698. NULL information_schema EVENTS INTERVAL_FIELD 11 NULL YES varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  9699. NULL information_schema EVENTS SQL_MODE 12 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9700. NULL information_schema EVENTS STARTS 13 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9701. NULL information_schema EVENTS ENDS 14 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9702. NULL information_schema EVENTS STATUS 15 NO varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  9703. NULL information_schema EVENTS ON_COMPLETION 16 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  9704. NULL information_schema EVENTS CREATED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  9705. NULL information_schema EVENTS LAST_ALTERED 18 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  9706. NULL information_schema EVENTS LAST_EXECUTED 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9707. NULL information_schema EVENTS EVENT_COMMENT 20 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9708. NULL information_schema EVENTS ORIGINATOR 21 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  9709. NULL information_schema EVENTS CHARACTER_SET_CLIENT 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  9710. NULL information_schema EVENTS COLLATION_CONNECTION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  9711. NULL information_schema EVENTS DATABASE_COLLATION 24 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  9712. NULL information_schema FILES FILE_ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9713. NULL information_schema FILES FILE_NAME 2 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9714. NULL information_schema FILES FILE_TYPE 3 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  9715. NULL information_schema FILES TABLESPACE_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9716. NULL information_schema FILES TABLE_CATALOG 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9717. NULL information_schema FILES TABLE_SCHEMA 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9718. NULL information_schema FILES TABLE_NAME 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9719. NULL information_schema FILES LOGFILE_GROUP_NAME 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9720. NULL information_schema FILES LOGFILE_GROUP_NUMBER 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9721. NULL information_schema FILES ENGINE 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9722. NULL information_schema FILES FULLTEXT_KEYS 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9723. NULL information_schema FILES DELETED_ROWS 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9724. NULL information_schema FILES UPDATE_COUNT 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9725. NULL information_schema FILES FREE_EXTENTS 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9726. NULL information_schema FILES TOTAL_EXTENTS 15 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9727. NULL information_schema FILES EXTENT_SIZE 16 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9728. NULL information_schema FILES INITIAL_SIZE 17 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9729. NULL information_schema FILES MAXIMUM_SIZE 18 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9730. NULL information_schema FILES AUTOEXTEND_SIZE 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9731. NULL information_schema FILES CREATION_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9732. NULL information_schema FILES LAST_UPDATE_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9733. NULL information_schema FILES LAST_ACCESS_TIME 22 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9734. NULL information_schema FILES RECOVER_TIME 23 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9735. NULL information_schema FILES TRANSACTION_COUNTER 24 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9736. NULL information_schema FILES VERSION 25 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9737. NULL information_schema FILES ROW_FORMAT 26 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  9738. NULL information_schema FILES TABLE_ROWS 27 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9739. NULL information_schema FILES AVG_ROW_LENGTH 28 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9740. NULL information_schema FILES DATA_LENGTH 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9741. NULL information_schema FILES MAX_DATA_LENGTH 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9742. NULL information_schema FILES INDEX_LENGTH 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9743. NULL information_schema FILES DATA_FREE 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9744. NULL information_schema FILES CREATE_TIME 33 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9745. NULL information_schema FILES UPDATE_TIME 34 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9746. NULL information_schema FILES CHECK_TIME 35 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9747. NULL information_schema FILES CHECKSUM 36 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9748. NULL information_schema FILES STATUS 37 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  9749. NULL information_schema FILES EXTRA 38 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  9750. NULL information_schema GLOBAL_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9751. NULL information_schema GLOBAL_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  9752. NULL information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9753. NULL information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  9754. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9755. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9756. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9757. NULL information_schema KEY_COLUMN_USAGE TABLE_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9758. NULL information_schema KEY_COLUMN_USAGE TABLE_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9759. NULL information_schema KEY_COLUMN_USAGE TABLE_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9760. NULL information_schema KEY_COLUMN_USAGE COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9761. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  9762. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(10) select
  9763. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9764. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9765. NULL information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME 12 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9766. NULL information_schema PARTITIONS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9767. NULL information_schema PARTITIONS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9768. NULL information_schema PARTITIONS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9769. NULL information_schema PARTITIONS PARTITION_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9770. NULL information_schema PARTITIONS SUBPARTITION_NAME 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9771. NULL information_schema PARTITIONS PARTITION_ORDINAL_POSITION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9772. NULL information_schema PARTITIONS SUBPARTITION_ORDINAL_POSITION 7 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9773. NULL information_schema PARTITIONS PARTITION_METHOD 8 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  9774. NULL information_schema PARTITIONS SUBPARTITION_METHOD 9 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  9775. NULL information_schema PARTITIONS PARTITION_EXPRESSION 10 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9776. NULL information_schema PARTITIONS SUBPARTITION_EXPRESSION 11 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9777. NULL information_schema PARTITIONS PARTITION_DESCRIPTION 12 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9778. NULL information_schema PARTITIONS TABLE_ROWS 13 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9779. NULL information_schema PARTITIONS AVG_ROW_LENGTH 14 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9780. NULL information_schema PARTITIONS DATA_LENGTH 15 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9781. NULL information_schema PARTITIONS MAX_DATA_LENGTH 16 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9782. NULL information_schema PARTITIONS INDEX_LENGTH 17 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9783. NULL information_schema PARTITIONS DATA_FREE 18 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9784. NULL information_schema PARTITIONS CREATE_TIME 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9785. NULL information_schema PARTITIONS UPDATE_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9786. NULL information_schema PARTITIONS CHECK_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9787. NULL information_schema PARTITIONS CHECKSUM 22 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9788. NULL information_schema PARTITIONS PARTITION_COMMENT 23 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  9789. NULL information_schema PARTITIONS NODEGROUP 24 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  9790. NULL information_schema PARTITIONS TABLESPACE_NAME 25 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9791. NULL information_schema PLUGINS PLUGIN_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9792. NULL information_schema PLUGINS PLUGIN_VERSION 2 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  9793. NULL information_schema PLUGINS PLUGIN_STATUS 3 NO varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  9794. NULL information_schema PLUGINS PLUGIN_TYPE 4 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  9795. NULL information_schema PLUGINS PLUGIN_TYPE_VERSION 5 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  9796. NULL information_schema PLUGINS PLUGIN_LIBRARY 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9797. NULL information_schema PLUGINS PLUGIN_LIBRARY_VERSION 7 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  9798. NULL information_schema PLUGINS PLUGIN_AUTHOR 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9799. NULL information_schema PLUGINS PLUGIN_DESCRIPTION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9800. NULL information_schema PLUGINS PLUGIN_LICENSE 10 NULL YES varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  9801. NULL information_schema PROCESSLIST ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9802. NULL information_schema PROCESSLIST USER 2 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  9803. NULL information_schema PROCESSLIST HOST 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9804. NULL information_schema PROCESSLIST DB 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9805. NULL information_schema PROCESSLIST COMMAND 5 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  9806. NULL information_schema PROCESSLIST TIME 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(7) select
  9807. NULL information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9808. NULL information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9809. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9810. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9811. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9812. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9813. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9814. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9815. NULL information_schema REFERENTIAL_CONSTRAINTS MATCH_OPTION 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9816. NULL information_schema REFERENTIAL_CONSTRAINTS UPDATE_RULE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9817. NULL information_schema REFERENTIAL_CONSTRAINTS DELETE_RULE 9 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9818. NULL information_schema REFERENTIAL_CONSTRAINTS TABLE_NAME 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9819. NULL information_schema REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME 11 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9820. NULL information_schema ROUTINES SPECIFIC_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9821. NULL information_schema ROUTINES ROUTINE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9822. NULL information_schema ROUTINES ROUTINE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9823. NULL information_schema ROUTINES ROUTINE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9824. NULL information_schema ROUTINES ROUTINE_TYPE 5 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  9825. NULL information_schema ROUTINES DTD_IDENTIFIER 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9826. NULL information_schema ROUTINES ROUTINE_BODY 7 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  9827. NULL information_schema ROUTINES ROUTINE_DEFINITION 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9828. NULL information_schema ROUTINES EXTERNAL_NAME 9 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9829. NULL information_schema ROUTINES EXTERNAL_LANGUAGE 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9830. NULL information_schema ROUTINES PARAMETER_STYLE 11 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  9831. NULL information_schema ROUTINES IS_DETERMINISTIC 12 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9832. NULL information_schema ROUTINES SQL_DATA_ACCESS 13 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9833. NULL information_schema ROUTINES SQL_PATH 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9834. NULL information_schema ROUTINES SECURITY_TYPE 15 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  9835. NULL information_schema ROUTINES CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  9836. NULL information_schema ROUTINES LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  9837. NULL information_schema ROUTINES SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9838. NULL information_schema ROUTINES ROUTINE_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9839. NULL information_schema ROUTINES DEFINER 20 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  9840. NULL information_schema ROUTINES CHARACTER_SET_CLIENT 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  9841. NULL information_schema ROUTINES COLLATION_CONNECTION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  9842. NULL information_schema ROUTINES DATABASE_COLLATION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  9843. NULL information_schema SCHEMATA CATALOG_NAME 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9844. NULL information_schema SCHEMATA SCHEMA_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9845. NULL information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9846. NULL information_schema SCHEMATA DEFAULT_COLLATION_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9847. NULL information_schema SCHEMATA SQL_PATH 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9848. NULL information_schema SCHEMA_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  9849. NULL information_schema SCHEMA_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9850. NULL information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9851. NULL information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9852. NULL information_schema SCHEMA_PRIVILEGES IS_GRANTABLE 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9853. NULL information_schema SESSION_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9854. NULL information_schema SESSION_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  9855. NULL information_schema SESSION_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9856. NULL information_schema SESSION_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  9857. NULL information_schema STATISTICS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9858. NULL information_schema STATISTICS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9859. NULL information_schema STATISTICS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9860. NULL information_schema STATISTICS NON_UNIQUE 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(1) select
  9861. NULL information_schema STATISTICS INDEX_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9862. NULL information_schema STATISTICS INDEX_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9863. NULL information_schema STATISTICS SEQ_IN_INDEX 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(2) select
  9864. NULL information_schema STATISTICS COLUMN_NAME 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9865. NULL information_schema STATISTICS COLLATION 9 NULL YES varchar 1 3 NULL NULL utf8 utf8_general_ci varchar(1) select
  9866. NULL information_schema STATISTICS CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9867. NULL information_schema STATISTICS SUB_PART 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(3) select
  9868. NULL information_schema STATISTICS PACKED 12 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  9869. NULL information_schema STATISTICS NULLABLE 13 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9870. NULL information_schema STATISTICS INDEX_TYPE 14 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  9871. NULL information_schema STATISTICS COMMENT 15 NULL YES varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  9872. NULL information_schema TABLES TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9873. NULL information_schema TABLES TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9874. NULL information_schema TABLES TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9875. NULL information_schema TABLES TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9876. NULL information_schema TABLES ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9877. NULL information_schema TABLES VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9878. NULL information_schema TABLES ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  9879. NULL information_schema TABLES TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9880. NULL information_schema TABLES AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9881. NULL information_schema TABLES DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9882. NULL information_schema TABLES MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9883. NULL information_schema TABLES INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9884. NULL information_schema TABLES DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9885. NULL information_schema TABLES AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9886. NULL information_schema TABLES CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9887. NULL information_schema TABLES UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9888. NULL information_schema TABLES CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9889. NULL information_schema TABLES TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9890. NULL information_schema TABLES CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  9891. NULL information_schema TABLES CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  9892. NULL information_schema TABLES TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  9893. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9894. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9895. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9896. NULL information_schema TABLE_CONSTRAINTS TABLE_SCHEMA 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9897. NULL information_schema TABLE_CONSTRAINTS TABLE_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9898. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9899. NULL information_schema TABLE_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  9900. NULL information_schema TABLE_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9901. NULL information_schema TABLE_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9902. NULL information_schema TABLE_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9903. NULL information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9904. NULL information_schema TABLE_PRIVILEGES IS_GRANTABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9905. NULL information_schema TRIGGERS TRIGGER_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9906. NULL information_schema TRIGGERS TRIGGER_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9907. NULL information_schema TRIGGERS TRIGGER_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9908. NULL information_schema TRIGGERS EVENT_MANIPULATION 4 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  9909. NULL information_schema TRIGGERS EVENT_OBJECT_CATALOG 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9910. NULL information_schema TRIGGERS EVENT_OBJECT_SCHEMA 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9911. NULL information_schema TRIGGERS EVENT_OBJECT_TABLE 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9912. NULL information_schema TRIGGERS ACTION_ORDER 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9913. NULL information_schema TRIGGERS ACTION_CONDITION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9914. NULL information_schema TRIGGERS ACTION_STATEMENT 10 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9915. NULL information_schema TRIGGERS ACTION_ORIENTATION 11 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  9916. NULL information_schema TRIGGERS ACTION_TIMING 12 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  9917. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9918. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9919. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW 15 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9920. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9921. NULL information_schema TRIGGERS CREATED 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9922. NULL information_schema TRIGGERS SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9923. NULL information_schema TRIGGERS DEFINER 19 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9924. NULL information_schema TRIGGERS CHARACTER_SET_CLIENT 20 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  9925. NULL information_schema TRIGGERS COLLATION_CONNECTION 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  9926. NULL information_schema TRIGGERS DATABASE_COLLATION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  9927. NULL information_schema USER_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  9928. NULL information_schema USER_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9929. NULL information_schema USER_PRIVILEGES PRIVILEGE_TYPE 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9930. NULL information_schema USER_PRIVILEGES IS_GRANTABLE 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9931. NULL information_schema VIEWS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9932. NULL information_schema VIEWS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9933. NULL information_schema VIEWS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9934. NULL information_schema VIEWS VIEW_DEFINITION 4 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9935. NULL information_schema VIEWS CHECK_OPTION 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  9936. NULL information_schema VIEWS IS_UPDATABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9937. NULL information_schema VIEWS DEFINER 7 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  9938. NULL information_schema VIEWS SECURITY_TYPE 8 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  9939. NULL information_schema VIEWS CHARACTER_SET_CLIENT 9 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  9940. NULL information_schema VIEWS COLLATION_CONNECTION 10 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  9941. NULL mysql columns_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  9942. NULL mysql columns_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  9943. NULL mysql columns_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  9944. NULL mysql columns_priv Table_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  9945. NULL mysql columns_priv Column_name 5 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  9946. NULL mysql columns_priv Timestamp 6 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  9947. 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
  9948. NULL mysql db Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  9949. NULL mysql db Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  9950. NULL mysql db User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  9951. NULL mysql db Select_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  9952. NULL mysql db Insert_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  9953. NULL mysql db Update_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  9954. NULL mysql db Delete_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  9955. NULL mysql db Create_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  9956. NULL mysql db Drop_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  9957. NULL mysql db Grant_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  9958. NULL mysql db References_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  9959. NULL mysql db Index_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  9960. NULL mysql db Alter_priv 13 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  9961. 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
  9962. 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
  9963. 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
  9964. 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
  9965. 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
  9966. 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
  9967. NULL mysql db Execute_priv 20 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  9968. NULL mysql db Event_priv 21 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  9969. NULL mysql db Trigger_priv 22 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  9970. NULL mysql event db 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  9971. NULL mysql event name 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  9972. NULL mysql event body 3 NULL NO longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  9973. NULL mysql event definer 4 NO char 77 231 NULL NULL utf8 utf8_bin char(77) select,insert,update,references
  9974. NULL mysql event execute_at 5 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  9975. NULL mysql event interval_value 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  9976. 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
  9977. NULL mysql event created 8 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  9978. NULL mysql event modified 9 0000-00-00 00:00:00 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  9979. NULL mysql event last_executed 10 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  9980. NULL mysql event starts 11 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  9981. NULL mysql event ends 12 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  9982. 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
  9983. NULL mysql event on_completion 14 DROP NO enum 8 24 NULL NULL utf8 utf8_general_ci enum('DROP','PRESERVE') select,insert,update,references
  9984. 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
  9985. NULL mysql event comment 16 NO char 64 192 NULL NULL utf8 utf8_bin char(64) select,insert,update,references
  9986. NULL mysql event originator 17 NULL NO int NULL NULL 10 0 NULL NULL int(10) select,insert,update,references
  9987. NULL mysql event time_zone 18 SYSTEM NO char 64 64 NULL NULL latin1 latin1_swedish_ci char(64) select,insert,update,references
  9988. NULL mysql event character_set_client 19 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  9989. NULL mysql event collation_connection 20 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  9990. NULL mysql event db_collation 21 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  9991. NULL mysql event body_utf8 22 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  9992. NULL mysql func name 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  9993. NULL mysql func ret 2 0 NO tinyint NULL NULL 3 0 NULL NULL tinyint(1) select,insert,update,references
  9994. NULL mysql func dl 3 NO char 128 384 NULL NULL utf8 utf8_bin char(128) select,insert,update,references
  9995. NULL mysql func type 4 NULL NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('function','aggregate') select,insert,update,references
  9996. NULL mysql general_log event_time 1 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  9997. NULL mysql general_log user_host 2 NULL YES mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  9998. NULL mysql general_log thread_id 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  9999. NULL mysql general_log server_id 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10000. NULL mysql general_log command_type 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  10001. NULL mysql general_log argument 6 NULL YES mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  10002. 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
  10003. NULL mysql help_category name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  10004. NULL mysql help_category parent_category_id 3 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  10005. NULL mysql help_category url 4 NULL NO char 128 384 NULL NULL utf8 utf8_general_ci char(128) select,insert,update,references
  10006. 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
  10007. NULL mysql help_keyword name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  10008. 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
  10009. 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
  10010. 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
  10011. NULL mysql help_topic name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  10012. NULL mysql help_topic help_category_id 3 NULL NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  10013. NULL mysql help_topic description 4 NULL NO text 65535 65535 NULL NULL utf8 utf8_general_ci text select,insert,update,references
  10014. NULL mysql help_topic example 5 NULL NO text 65535 65535 NULL NULL utf8 utf8_general_ci text select,insert,update,references
  10015. NULL mysql help_topic url 6 NULL NO char 128 384 NULL NULL utf8 utf8_general_ci char(128) select,insert,update,references
  10016. NULL mysql host Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10017. NULL mysql host Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10018. NULL mysql host Select_priv 3 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10019. NULL mysql host Insert_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10020. NULL mysql host Update_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10021. NULL mysql host Delete_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10022. NULL mysql host Create_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10023. NULL mysql host Drop_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10024. NULL mysql host Grant_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10025. NULL mysql host References_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10026. NULL mysql host Index_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10027. NULL mysql host Alter_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10028. 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
  10029. 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
  10030. 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
  10031. 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
  10032. 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
  10033. 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
  10034. NULL mysql host Execute_priv 19 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10035. NULL mysql host Trigger_priv 20 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10036. NULL mysql ndb_apply_status server_id 1 NULL NO int NULL NULL 10 0 NULL NULL int(10) unsigned PRI select,insert,update,references
  10037. NULL mysql ndb_apply_status epoch 2 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10038. NULL mysql ndb_apply_status log_name 3 NULL NO varchar 255 255 NULL NULL latin1 latin1_bin varchar(255) select,insert,update,references
  10039. NULL mysql ndb_apply_status start_pos 4 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10040. NULL mysql ndb_apply_status end_pos 5 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10041. NULL mysql ndb_binlog_index Position 1 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10042. NULL mysql ndb_binlog_index File 2 NULL NO varchar 255 255 NULL NULL latin1 latin1_swedish_ci varchar(255) select,insert,update,references
  10043. NULL mysql ndb_binlog_index epoch 3 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned PRI select,insert,update,references
  10044. NULL mysql ndb_binlog_index inserts 4 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10045. NULL mysql ndb_binlog_index updates 5 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10046. NULL mysql ndb_binlog_index deletes 6 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10047. NULL mysql ndb_binlog_index schemaops 7 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10048. NULL mysql plugin name 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10049. NULL mysql plugin dl 2 NO char 128 384 NULL NULL utf8 utf8_bin char(128) select,insert,update,references
  10050. NULL mysql proc db 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10051. NULL mysql proc name 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  10052. NULL mysql proc type 3 NULL NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('FUNCTION','PROCEDURE') PRI select,insert,update,references
  10053. NULL mysql proc specific_name 4 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10054. NULL mysql proc language 5 SQL NO enum 3 9 NULL NULL utf8 utf8_general_ci enum('SQL') select,insert,update,references
  10055. 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
  10056. NULL mysql proc is_deterministic 7 NO NO enum 3 9 NULL NULL utf8 utf8_general_ci enum('YES','NO') select,insert,update,references
  10057. NULL mysql proc security_type 8 DEFINER NO enum 7 21 NULL NULL utf8 utf8_general_ci enum('INVOKER','DEFINER') select,insert,update,references
  10058. NULL mysql proc param_list 9 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10059. NULL mysql proc returns 10 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10060. NULL mysql proc body 11 NULL NO longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10061. NULL mysql proc definer 12 NO char 77 231 NULL NULL utf8 utf8_bin char(77) select,insert,update,references
  10062. NULL mysql proc created 13 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10063. NULL mysql proc modified 14 0000-00-00 00:00:00 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10064. 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
  10065. NULL mysql proc comment 16 NO char 64 192 NULL NULL utf8 utf8_bin char(64) select,insert,update,references
  10066. NULL mysql proc character_set_client 17 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  10067. NULL mysql proc collation_connection 18 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  10068. NULL mysql proc db_collation 19 NULL YES char 32 96 NULL NULL utf8 utf8_bin char(32) select,insert,update,references
  10069. NULL mysql proc body_utf8 20 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10070. NULL mysql procs_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10071. NULL mysql procs_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10072. NULL mysql procs_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  10073. NULL mysql procs_priv Routine_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10074. 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
  10075. NULL mysql procs_priv Grantor 6 NO char 77 231 NULL NULL utf8 utf8_bin char(77) MUL select,insert,update,references
  10076. 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
  10077. NULL mysql procs_priv Timestamp 8 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10078. NULL mysql servers Server_name 1 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  10079. NULL mysql servers Host 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10080. NULL mysql servers Db 3 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10081. NULL mysql servers Username 4 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10082. NULL mysql servers Password 5 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10083. NULL mysql servers Port 6 0 NO int NULL NULL 10 0 NULL NULL int(4) select,insert,update,references
  10084. NULL mysql servers Socket 7 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10085. NULL mysql servers Wrapper 8 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10086. NULL mysql servers Owner 9 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10087. NULL mysql slow_log start_time 1 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10088. NULL mysql slow_log user_host 2 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  10089. NULL mysql slow_log query_time 3 NULL NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  10090. NULL mysql slow_log lock_time 4 NULL NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  10091. NULL mysql slow_log rows_sent 5 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10092. NULL mysql slow_log rows_examined 6 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10093. NULL mysql slow_log db 7 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select,insert,update,references
  10094. NULL mysql slow_log last_insert_id 8 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10095. NULL mysql slow_log insert_id 9 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10096. NULL mysql slow_log server_id 10 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10097. NULL mysql slow_log sql_text 11 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  10098. NULL mysql tables_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10099. NULL mysql tables_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10100. NULL mysql tables_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  10101. NULL mysql tables_priv Table_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10102. NULL mysql tables_priv Grantor 5 NO char 77 231 NULL NULL utf8 utf8_bin char(77) MUL select,insert,update,references
  10103. NULL mysql tables_priv Timestamp 6 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10104. 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
  10105. 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
  10106. 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
  10107. 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
  10108. 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
  10109. NULL mysql time_zone_leap_second Correction 2 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10110. 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
  10111. 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
  10112. 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
  10113. NULL mysql time_zone_transition Transition_time 2 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) PRI select,insert,update,references
  10114. 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
  10115. 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
  10116. 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
  10117. NULL mysql time_zone_transition_type Offset 3 0 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10118. 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
  10119. NULL mysql time_zone_transition_type Abbreviation 5 NO char 8 24 NULL NULL utf8 utf8_general_ci char(8) select,insert,update,references
  10120. NULL mysql user Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10121. NULL mysql user User 2 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  10122. NULL mysql user Password 3 NO char 41 41 NULL NULL latin1 latin1_bin char(41) select,insert,update,references
  10123. NULL mysql user Select_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10124. NULL mysql user Insert_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10125. NULL mysql user Update_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10126. NULL mysql user Delete_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10127. NULL mysql user Create_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10128. NULL mysql user Drop_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10129. NULL mysql user Reload_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10130. NULL mysql user Shutdown_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10131. NULL mysql user Process_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10132. NULL mysql user File_priv 13 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10133. NULL mysql user Grant_priv 14 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10134. NULL mysql user References_priv 15 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10135. NULL mysql user Index_priv 16 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10136. NULL mysql user Alter_priv 17 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10137. 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
  10138. NULL mysql user Super_priv 19 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10139. 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
  10140. 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
  10141. NULL mysql user Execute_priv 22 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10142. 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
  10143. 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
  10144. 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
  10145. 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
  10146. 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
  10147. 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
  10148. 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
  10149. NULL mysql user Event_priv 30 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10150. NULL mysql user Trigger_priv 31 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10151. NULL mysql user ssl_type 32 NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('','ANY','X509','SPECIFIED') select,insert,update,references
  10152. NULL mysql user ssl_cipher 33 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10153. NULL mysql user x509_issuer 34 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10154. NULL mysql user x509_subject 35 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10155. NULL mysql user max_questions 36 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  10156. NULL mysql user max_updates 37 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  10157. NULL mysql user max_connections 38 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  10158. NULL mysql user max_user_connections 39 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  10159. NULL test t1 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10160. NULL test t1 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10161. NULL test t1 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10162. NULL test t1 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10163. NULL test t1 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10164. NULL test t1 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10165. NULL test t10 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10166. NULL test t10 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10167. NULL test t10 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10168. NULL test t10 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10169. NULL test t10 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10170. NULL test t10 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10171. NULL test t11 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10172. NULL test t11 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10173. NULL test t11 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10174. NULL test t11 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10175. NULL test t11 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10176. NULL test t11 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10177. NULL test t2 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10178. NULL test t2 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10179. NULL test t2 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10180. NULL test t2 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10181. NULL test t2 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10182. NULL test t2 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10183. NULL test t3 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10184. NULL test t3 f2 2 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10185. NULL test t3 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10186. NULL test t4 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10187. NULL test t4 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10188. NULL test t4 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10189. NULL test t4 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10190. NULL test t4 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10191. NULL test t4 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10192. NULL test t7 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10193. NULL test t7 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10194. NULL test t7 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10195. NULL test t7 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10196. NULL test t8 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10197. NULL test t8 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10198. NULL test t8 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10199. NULL test t8 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10200. NULL test t9 f1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10201. NULL test t9 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10202. NULL test t9 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10203. NULL test tb1 f1 1 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10204. NULL test tb1 f2 2 NULL YES char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  10205. NULL test tb1 f3 3 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10206. NULL test tb1 f4 4 NULL YES tinytext 127 255 NULL NULL ucs2 ucs2_general_ci tinytext select,insert,update,references
  10207. NULL test tb1 f5 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  10208. NULL test tb1 f6 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  10209. NULL test tb1 f7 7 NULL YES longtext 4294967295 4294967295 NULL NULL latin1 latin1_swedish_ci longtext select,insert,update,references
  10210. NULL test tb1 f8 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  10211. NULL test tb1 f9 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10212. NULL test tb1 f10 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  10213. NULL test tb1 f11 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10214. NULL test tb1 f12 12 NULL YES binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  10215. NULL test tb1 f13 13 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  10216. NULL test tb1 f14 14 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  10217. NULL test tb1 f15 15 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10218. NULL test tb1 f16 16 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10219. NULL test tb1 f17 17 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  10220. NULL test tb1 f18 18 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  10221. NULL test tb1 f19 19 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10222. NULL test tb1 f20 20 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10223. NULL test tb1 f21 21 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  10224. NULL test tb1 f22 22 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  10225. NULL test tb1 f23 23 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10226. NULL test tb1 f24 24 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10227. NULL test tb1 f25 25 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10228. NULL test tb1 f26 26 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  10229. NULL test tb1 f27 27 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10230. NULL test tb1 f28 28 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10231. NULL test tb1 f29 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  10232. NULL test tb1 f30 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10233. NULL test tb1 f31 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10234. NULL test tb1 f32 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10235. NULL test tb1 f33 33 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10236. NULL test tb1 f34 34 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10237. NULL test tb1 f35 35 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10238. NULL test tb1 f36 36 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10239. NULL test tb1 f37 37 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10240. NULL test tb1 f38 38 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10241. NULL test tb1 f39 39 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10242. NULL test tb1 f40 40 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10243. NULL test tb1 f41 41 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10244. NULL test tb1 f42 42 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10245. NULL test tb1 f43 43 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10246. NULL test tb1 f44 44 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10247. NULL test tb1 f45 45 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10248. NULL test tb1 f46 46 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10249. NULL test tb1 f47 47 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10250. NULL test tb1 f48 48 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10251. NULL test tb1 f49 49 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10252. NULL test tb1 f50 50 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10253. NULL test tb1 f51 51 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10254. NULL test tb1 f52 52 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10255. NULL test tb1 f53 53 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10256. NULL test tb1 f54 54 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10257. NULL test tb1 f55 55 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10258. NULL test tb1 f56 56 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10259. NULL test tb1 f57 57 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10260. NULL test tb1 f58 58 99 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10261. NULL test tb2 f59 1 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10262. NULL test tb2 f60 2 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10263. NULL test tb2 f61 3 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10264. NULL test tb2 f62 4 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10265. NULL test tb2 f63 5 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10266. NULL test tb2 f64 6 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10267. NULL test tb2 f65 7 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10268. NULL test tb2 f66 8 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10269. NULL test tb2 f67 9 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10270. NULL test tb2 f68 10 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10271. NULL test tb2 f69 11 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10272. NULL test tb2 f70 12 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10273. NULL test tb2 f71 13 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10274. NULL test tb2 f72 14 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10275. NULL test tb2 f73 15 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10276. NULL test tb2 f74 16 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10277. NULL test tb2 f75 17 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10278. NULL test tb2 f76 18 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10279. NULL test tb2 f77 19 7.7 YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10280. NULL test tb2 f78 20 7.7 YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10281. NULL test tb2 f79 21 00000000000000000007.7 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10282. NULL test tb2 f80 22 00000000000000000008.8 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10283. NULL test tb2 f81 23 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10284. NULL test tb2 f82 24 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10285. NULL test tb2 f83 25 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10286. NULL test tb2 f84 26 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10287. NULL test tb2 f85 27 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10288. NULL test tb2 f86 28 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10289. NULL test tb2 f87 29 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10290. NULL test tb2 f88 30 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10291. NULL test tb2 f89 31 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10292. NULL test tb2 f90 32 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10293. NULL test tb2 f91 33 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10294. NULL test tb2 f92 34 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10295. NULL test tb2 f93 35 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10296. NULL test tb2 f94 36 8.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10297. NULL test tb2 f95 37 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10298. NULL test tb2 f96 38 8.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10299. NULL test tb2 f97 39 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10300. NULL test tb2 f98 40 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10301. NULL test tb2 f99 41 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10302. NULL test tb2 f100 42 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10303. NULL test tb2 f101 43 2000-01-01 NO date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10304. NULL test tb2 f102 44 00:00:20 NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  10305. NULL test tb2 f103 45 0002-02-02 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  10306. NULL test tb2 f104 46 2000-12-31 23:59:59 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10307. NULL test tb2 f105 47 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10308. NULL test tb2 f106 48 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10309. NULL test tb2 f107 49 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10310. NULL test tb2 f108 50 1enum NO enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  10311. NULL test tb2 f109 51 1set NO set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  10312. NULL test tb2 f110 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  10313. NULL test tb2 f111 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  10314. NULL test tb2 f112 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  10315. NULL test tb2 f113 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  10316. NULL test tb2 f114 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  10317. NULL test tb2 f115 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  10318. NULL test tb2 f116 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  10319. NULL test tb2 f117 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  10320. NULL test tb3 f118 1 a NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10321. NULL test tb3 f119 2  NO char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  10322. NULL test tb3 f120 3  NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10323. NULL test tb3 f121 4 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  10324. NULL test tb3 f122 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  10325. NULL test tb3 f123 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  10326. NULL test tb3 f124 7 NULL YES longtext 2147483647 4294967295 NULL NULL ucs2 ucs2_general_ci longtext select,insert,update,references
  10327. NULL test tb3 f125 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  10328. NULL test tb3 f126 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10329. NULL test tb3 f127 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  10330. NULL test tb3 f128 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10331. NULL test tb3 f129 12  NO binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  10332. NULL test tb3 f130 13 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  10333. NULL test tb3 f131 14 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  10334. NULL test tb3 f132 15 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10335. NULL test tb3 f133 16 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10336. NULL test tb3 f134 17 999 NO smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  10337. NULL test tb3 f135 18 999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  10338. NULL test tb3 f136 19 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10339. NULL test tb3 f137 20 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10340. NULL test tb3 f138 21 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  10341. NULL test tb3 f139 22 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  10342. NULL test tb3 f140 23 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10343. NULL test tb3 f141 24 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10344. NULL test tb3 f142 25 99999 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10345. NULL test tb3 f143 26 99999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  10346. NULL test tb3 f144 27 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10347. NULL test tb3 f145 28 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10348. NULL test tb3 f146 29 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  10349. NULL test tb3 f147 30 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10350. NULL test tb3 f148 31 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10351. NULL test tb3 f149 32 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10352. NULL test tb3 f150 33 1000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10353. NULL test tb3 f151 34 999 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10354. NULL test tb3 f152 35 0000001000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10355. NULL test tb3 f153 36 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10356. NULL test tb3 f154 37 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10357. NULL test tb3 f155 38 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10358. NULL test tb3 f156 39 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10359. NULL test tb3 f157 40 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10360. NULL test tb3 f158 41 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10361. NULL test tb3 f159 42 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10362. NULL test tb3 f160 43 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10363. NULL test tb3 f161 44 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10364. NULL test tb3 f162 45 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10365. NULL test tb3 f163 46 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10366. NULL test tb3 f164 47 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10367. NULL test tb3 f165 48 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10368. NULL test tb3 f166 49 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10369. NULL test tb3 f167 50 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10370. NULL test tb3 f168 51 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10371. NULL test tb3 f169 52 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10372. NULL test tb3 f170 53 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10373. NULL test tb3 f171 54 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10374. NULL test tb3 f172 55 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10375. NULL test tb3 f173 56 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10376. NULL test tb3 f174 57 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10377. NULL test tb3 f175 58 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10378. NULL test tb4 f176 1 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10379. NULL test tb4 f177 2 9 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10380. NULL test tb4 f178 3 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10381. NULL test tb4 f179 4 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10382. NULL test tb4 f180 5 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10383. NULL test tb4 f181 6 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10384. NULL test tb4 f182 7 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10385. NULL test tb4 f183 8 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10386. NULL test tb4 f184 9 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10387. NULL test tb4 f185 10 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10388. NULL test tb4 f186 11 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10389. NULL test tb4 f187 12 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10390. NULL test tb4 f188 13 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10391. NULL test tb4 f189 14 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10392. NULL test tb4 f190 15 88.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10393. NULL test tb4 f191 16 88.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10394. NULL test tb4 f192 17 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10395. NULL test tb4 f193 18 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10396. NULL test tb4 f194 19 55.5 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10397. NULL test tb4 f195 20 55.5 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10398. NULL test tb4 f196 21 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10399. NULL test tb4 f197 22 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10400. NULL test tb4 f198 23 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10401. NULL test tb4 f199 24 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10402. NULL test tb4 f200 25 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10403. NULL test tb4 f201 26 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10404. NULL test tb4 f202 27 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10405. NULL test tb4 f203 28 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10406. NULL test tb4 f204 29 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10407. NULL test tb4 f205 30 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10408. NULL test tb4 f206 31 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10409. NULL test tb4 f207 32 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10410. NULL test tb4 f208 33 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10411. NULL test tb4 f209 34 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10412. NULL test tb4 f210 35 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10413. NULL test tb4 f211 36 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10414. NULL test tb4 f212 37 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10415. NULL test tb4 f213 38 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10416. NULL test tb4 f214 39 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10417. NULL test tb4 f215 40 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10418. NULL test tb4 f216 41 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10419. NULL test tb4 f217 42 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10420. NULL test tb4 f218 43 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10421. NULL test tb4 f219 44 NULL YES time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  10422. NULL test tb4 f220 45 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  10423. NULL test tb4 f221 46 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10424. NULL test tb4 f222 47 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10425. NULL test tb4 f223 48 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10426. NULL test tb4 f224 49 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10427. NULL test tb4 f225 50 NULL YES enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  10428. NULL test tb4 f226 51 NULL YES set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  10429. NULL test tb4 f227 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  10430. NULL test tb4 f228 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  10431. NULL test tb4 f229 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  10432. NULL test tb4 f230 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  10433. NULL test tb4 f231 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  10434. NULL test tb4 f232 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  10435. NULL test tb4 f233 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  10436. NULL test tb4 f234 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  10437. NULL test tb4 f235 60 NULL YES char 255 510 NULL NULL ucs2 ucs2_general_ci char(255) select,insert,update,references
  10438. NULL test tb4 f236 61 NULL YES char 60 60 NULL NULL latin1 latin1_swedish_ci char(60) select,insert,update,references
  10439. NULL test tb4 f237 62 NULL YES char 255 255 NULL NULL latin1 latin1_bin char(255) select,insert,update,references
  10440. NULL test tb4 f238 63 NULL YES varchar 0 0 NULL NULL latin1 latin1_bin varchar(0) select,insert,update,references
  10441. NULL test tb4 f239 64 NULL YES varbinary 1000 1000 NULL NULL NULL NULL varbinary(1000) select,insert,update,references
  10442. NULL test tb4 f240 65 NULL YES varchar 120 240 NULL NULL ucs2 ucs2_general_ci varchar(120) select,insert,update,references
  10443. NULL test tb4 f241 66 NULL YES char 100 200 NULL NULL ucs2 ucs2_general_ci char(100) select,insert,update,references
  10444. NULL test tb4 f242 67 NULL YES bit NULL NULL 30 NULL NULL NULL bit(30) select,insert,update,references
  10445. NULL test4 t6 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10446. NULL test4 t6 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10447. NULL test4 t6 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10448. NULL test4 t6 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10449. NULL test4 t6 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10450. NULL test4 t6 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10451. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  10452. SELECT * FROM information_schema.columns
  10453. ORDER BY table_schema, table_name, ordinal_position;
  10454. 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
  10455. NULL db_datadict t_6_406001 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select
  10456. NULL db_datadict t_6_406001 f2 2 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select
  10457. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10458. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10459. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  10460. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  10461. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10462. NULL information_schema COLLATIONS CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10463. NULL information_schema COLLATIONS ID 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(11) select
  10464. NULL information_schema COLLATIONS IS_DEFAULT 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10465. NULL information_schema COLLATIONS IS_COMPILED 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10466. NULL information_schema COLLATIONS SORTLEN 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  10467. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10468. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10469. NULL information_schema COLUMNS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10470. NULL information_schema COLUMNS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10471. NULL information_schema COLUMNS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10472. NULL information_schema COLUMNS COLUMN_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10473. NULL information_schema COLUMNS ORDINAL_POSITION 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10474. NULL information_schema COLUMNS COLUMN_DEFAULT 6 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10475. NULL information_schema COLUMNS IS_NULLABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10476. NULL information_schema COLUMNS DATA_TYPE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10477. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10478. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10479. NULL information_schema COLUMNS NUMERIC_PRECISION 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10480. NULL information_schema COLUMNS NUMERIC_SCALE 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10481. NULL information_schema COLUMNS CHARACTER_SET_NAME 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10482. NULL information_schema COLUMNS COLLATION_NAME 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10483. NULL information_schema COLUMNS COLUMN_TYPE 15 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10484. NULL information_schema COLUMNS COLUMN_KEY 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10485. NULL information_schema COLUMNS EXTRA 17 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10486. NULL information_schema COLUMNS PRIVILEGES 18 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10487. NULL information_schema COLUMNS COLUMN_COMMENT 19 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  10488. NULL information_schema COLUMN_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  10489. NULL information_schema COLUMN_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10490. NULL information_schema COLUMN_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10491. NULL information_schema COLUMN_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10492. NULL information_schema COLUMN_PRIVILEGES COLUMN_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10493. NULL information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10494. NULL information_schema COLUMN_PRIVILEGES IS_GRANTABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10495. NULL information_schema ENGINES ENGINE 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10496. NULL information_schema ENGINES SUPPORT 2 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10497. NULL information_schema ENGINES COMMENT 3 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10498. NULL information_schema ENGINES TRANSACTIONS 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10499. NULL information_schema ENGINES XA 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10500. NULL information_schema ENGINES SAVEPOINTS 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10501. NULL information_schema EVENTS EVENT_CATALOG 1 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10502. NULL information_schema EVENTS EVENT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10503. NULL information_schema EVENTS EVENT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10504. NULL information_schema EVENTS DEFINER 4 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  10505. NULL information_schema EVENTS TIME_ZONE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10506. NULL information_schema EVENTS EVENT_BODY 6 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10507. NULL information_schema EVENTS EVENT_DEFINITION 7 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10508. NULL information_schema EVENTS EVENT_TYPE 8 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  10509. NULL information_schema EVENTS EXECUTE_AT 9 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10510. NULL information_schema EVENTS INTERVAL_VALUE 10 NULL YES varchar 256 768 NULL NULL utf8 utf8_general_ci varchar(256) select
  10511. NULL information_schema EVENTS INTERVAL_FIELD 11 NULL YES varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  10512. NULL information_schema EVENTS SQL_MODE 12 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10513. NULL information_schema EVENTS STARTS 13 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10514. NULL information_schema EVENTS ENDS 14 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10515. NULL information_schema EVENTS STATUS 15 NO varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  10516. NULL information_schema EVENTS ON_COMPLETION 16 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  10517. NULL information_schema EVENTS CREATED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  10518. NULL information_schema EVENTS LAST_ALTERED 18 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  10519. NULL information_schema EVENTS LAST_EXECUTED 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10520. NULL information_schema EVENTS EVENT_COMMENT 20 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10521. NULL information_schema EVENTS ORIGINATOR 21 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  10522. NULL information_schema EVENTS CHARACTER_SET_CLIENT 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10523. NULL information_schema EVENTS COLLATION_CONNECTION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10524. NULL information_schema EVENTS DATABASE_COLLATION 24 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10525. NULL information_schema FILES FILE_ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10526. NULL information_schema FILES FILE_NAME 2 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10527. NULL information_schema FILES FILE_TYPE 3 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10528. NULL information_schema FILES TABLESPACE_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10529. NULL information_schema FILES TABLE_CATALOG 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10530. NULL information_schema FILES TABLE_SCHEMA 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10531. NULL information_schema FILES TABLE_NAME 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10532. NULL information_schema FILES LOGFILE_GROUP_NAME 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10533. NULL information_schema FILES LOGFILE_GROUP_NUMBER 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10534. NULL information_schema FILES ENGINE 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10535. NULL information_schema FILES FULLTEXT_KEYS 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10536. NULL information_schema FILES DELETED_ROWS 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10537. NULL information_schema FILES UPDATE_COUNT 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10538. NULL information_schema FILES FREE_EXTENTS 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10539. NULL information_schema FILES TOTAL_EXTENTS 15 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10540. NULL information_schema FILES EXTENT_SIZE 16 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10541. NULL information_schema FILES INITIAL_SIZE 17 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10542. NULL information_schema FILES MAXIMUM_SIZE 18 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10543. NULL information_schema FILES AUTOEXTEND_SIZE 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10544. NULL information_schema FILES CREATION_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10545. NULL information_schema FILES LAST_UPDATE_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10546. NULL information_schema FILES LAST_ACCESS_TIME 22 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10547. NULL information_schema FILES RECOVER_TIME 23 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10548. NULL information_schema FILES TRANSACTION_COUNTER 24 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10549. NULL information_schema FILES VERSION 25 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10550. NULL information_schema FILES ROW_FORMAT 26 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  10551. NULL information_schema FILES TABLE_ROWS 27 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10552. NULL information_schema FILES AVG_ROW_LENGTH 28 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10553. NULL information_schema FILES DATA_LENGTH 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10554. NULL information_schema FILES MAX_DATA_LENGTH 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10555. NULL information_schema FILES INDEX_LENGTH 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10556. NULL information_schema FILES DATA_FREE 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10557. NULL information_schema FILES CREATE_TIME 33 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10558. NULL information_schema FILES UPDATE_TIME 34 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10559. NULL information_schema FILES CHECK_TIME 35 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10560. NULL information_schema FILES CHECKSUM 36 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10561. NULL information_schema FILES STATUS 37 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10562. NULL information_schema FILES EXTRA 38 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  10563. NULL information_schema GLOBAL_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10564. NULL information_schema GLOBAL_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  10565. NULL information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10566. NULL information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  10567. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10568. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10569. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10570. NULL information_schema KEY_COLUMN_USAGE TABLE_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10571. NULL information_schema KEY_COLUMN_USAGE TABLE_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10572. NULL information_schema KEY_COLUMN_USAGE TABLE_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10573. NULL information_schema KEY_COLUMN_USAGE COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10574. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  10575. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(10) select
  10576. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10577. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10578. NULL information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME 12 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10579. NULL information_schema PARTITIONS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10580. NULL information_schema PARTITIONS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10581. NULL information_schema PARTITIONS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10582. NULL information_schema PARTITIONS PARTITION_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10583. NULL information_schema PARTITIONS SUBPARTITION_NAME 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10584. NULL information_schema PARTITIONS PARTITION_ORDINAL_POSITION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10585. NULL information_schema PARTITIONS SUBPARTITION_ORDINAL_POSITION 7 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10586. NULL information_schema PARTITIONS PARTITION_METHOD 8 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  10587. NULL information_schema PARTITIONS SUBPARTITION_METHOD 9 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  10588. NULL information_schema PARTITIONS PARTITION_EXPRESSION 10 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10589. NULL information_schema PARTITIONS SUBPARTITION_EXPRESSION 11 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10590. NULL information_schema PARTITIONS PARTITION_DESCRIPTION 12 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10591. NULL information_schema PARTITIONS TABLE_ROWS 13 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10592. NULL information_schema PARTITIONS AVG_ROW_LENGTH 14 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10593. NULL information_schema PARTITIONS DATA_LENGTH 15 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10594. NULL information_schema PARTITIONS MAX_DATA_LENGTH 16 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10595. NULL information_schema PARTITIONS INDEX_LENGTH 17 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10596. NULL information_schema PARTITIONS DATA_FREE 18 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10597. NULL information_schema PARTITIONS CREATE_TIME 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10598. NULL information_schema PARTITIONS UPDATE_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10599. NULL information_schema PARTITIONS CHECK_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10600. NULL information_schema PARTITIONS CHECKSUM 22 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10601. NULL information_schema PARTITIONS PARTITION_COMMENT 23 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10602. NULL information_schema PARTITIONS NODEGROUP 24 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  10603. NULL information_schema PARTITIONS TABLESPACE_NAME 25 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10604. NULL information_schema PLUGINS PLUGIN_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10605. NULL information_schema PLUGINS PLUGIN_VERSION 2 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10606. NULL information_schema PLUGINS PLUGIN_STATUS 3 NO varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  10607. NULL information_schema PLUGINS PLUGIN_TYPE 4 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10608. NULL information_schema PLUGINS PLUGIN_TYPE_VERSION 5 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10609. NULL information_schema PLUGINS PLUGIN_LIBRARY 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10610. NULL information_schema PLUGINS PLUGIN_LIBRARY_VERSION 7 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10611. NULL information_schema PLUGINS PLUGIN_AUTHOR 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10612. NULL information_schema PLUGINS PLUGIN_DESCRIPTION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10613. NULL information_schema PLUGINS PLUGIN_LICENSE 10 NULL YES varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10614. NULL information_schema PROCESSLIST ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10615. NULL information_schema PROCESSLIST USER 2 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10616. NULL information_schema PROCESSLIST HOST 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10617. NULL information_schema PROCESSLIST DB 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10618. NULL information_schema PROCESSLIST COMMAND 5 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10619. NULL information_schema PROCESSLIST TIME 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(7) select
  10620. NULL information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10621. NULL information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10622. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10623. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10624. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10625. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10626. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10627. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10628. NULL information_schema REFERENTIAL_CONSTRAINTS MATCH_OPTION 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10629. NULL information_schema REFERENTIAL_CONSTRAINTS UPDATE_RULE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10630. NULL information_schema REFERENTIAL_CONSTRAINTS DELETE_RULE 9 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10631. NULL information_schema REFERENTIAL_CONSTRAINTS TABLE_NAME 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10632. NULL information_schema REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME 11 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10633. NULL information_schema ROUTINES SPECIFIC_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10634. NULL information_schema ROUTINES ROUTINE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10635. NULL information_schema ROUTINES ROUTINE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10636. NULL information_schema ROUTINES ROUTINE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10637. NULL information_schema ROUTINES ROUTINE_TYPE 5 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  10638. NULL information_schema ROUTINES DTD_IDENTIFIER 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10639. NULL information_schema ROUTINES ROUTINE_BODY 7 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10640. NULL information_schema ROUTINES ROUTINE_DEFINITION 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10641. NULL information_schema ROUTINES EXTERNAL_NAME 9 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10642. NULL information_schema ROUTINES EXTERNAL_LANGUAGE 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10643. NULL information_schema ROUTINES PARAMETER_STYLE 11 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10644. NULL information_schema ROUTINES IS_DETERMINISTIC 12 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10645. NULL information_schema ROUTINES SQL_DATA_ACCESS 13 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10646. NULL information_schema ROUTINES SQL_PATH 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10647. NULL information_schema ROUTINES SECURITY_TYPE 15 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  10648. NULL information_schema ROUTINES CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  10649. NULL information_schema ROUTINES LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  10650. NULL information_schema ROUTINES SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10651. NULL information_schema ROUTINES ROUTINE_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10652. NULL information_schema ROUTINES DEFINER 20 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  10653. NULL information_schema ROUTINES CHARACTER_SET_CLIENT 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10654. NULL information_schema ROUTINES COLLATION_CONNECTION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10655. NULL information_schema ROUTINES DATABASE_COLLATION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10656. NULL information_schema SCHEMATA CATALOG_NAME 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10657. NULL information_schema SCHEMATA SCHEMA_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10658. NULL information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10659. NULL information_schema SCHEMATA DEFAULT_COLLATION_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10660. NULL information_schema SCHEMATA SQL_PATH 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10661. NULL information_schema SCHEMA_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  10662. NULL information_schema SCHEMA_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10663. NULL information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10664. NULL information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10665. NULL information_schema SCHEMA_PRIVILEGES IS_GRANTABLE 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10666. NULL information_schema SESSION_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10667. NULL information_schema SESSION_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  10668. NULL information_schema SESSION_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10669. NULL information_schema SESSION_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  10670. NULL information_schema STATISTICS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10671. NULL information_schema STATISTICS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10672. NULL information_schema STATISTICS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10673. NULL information_schema STATISTICS NON_UNIQUE 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(1) select
  10674. NULL information_schema STATISTICS INDEX_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10675. NULL information_schema STATISTICS INDEX_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10676. NULL information_schema STATISTICS SEQ_IN_INDEX 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(2) select
  10677. NULL information_schema STATISTICS COLUMN_NAME 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10678. NULL information_schema STATISTICS COLLATION 9 NULL YES varchar 1 3 NULL NULL utf8 utf8_general_ci varchar(1) select
  10679. NULL information_schema STATISTICS CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10680. NULL information_schema STATISTICS SUB_PART 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(3) select
  10681. NULL information_schema STATISTICS PACKED 12 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  10682. NULL information_schema STATISTICS NULLABLE 13 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10683. NULL information_schema STATISTICS INDEX_TYPE 14 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10684. NULL information_schema STATISTICS COMMENT 15 NULL YES varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10685. NULL information_schema TABLES TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10686. NULL information_schema TABLES TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10687. NULL information_schema TABLES TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10688. NULL information_schema TABLES TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10689. NULL information_schema TABLES ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10690. NULL information_schema TABLES VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10691. NULL information_schema TABLES ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  10692. NULL information_schema TABLES TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10693. NULL information_schema TABLES AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10694. NULL information_schema TABLES DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10695. NULL information_schema TABLES MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10696. NULL information_schema TABLES INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10697. NULL information_schema TABLES DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10698. NULL information_schema TABLES AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10699. NULL information_schema TABLES CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10700. NULL information_schema TABLES UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10701. NULL information_schema TABLES CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10702. NULL information_schema TABLES TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10703. NULL information_schema TABLES CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  10704. NULL information_schema TABLES CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  10705. NULL information_schema TABLES TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10706. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10707. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10708. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10709. NULL information_schema TABLE_CONSTRAINTS TABLE_SCHEMA 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10710. NULL information_schema TABLE_CONSTRAINTS TABLE_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10711. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10712. NULL information_schema TABLE_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  10713. NULL information_schema TABLE_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10714. NULL information_schema TABLE_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10715. NULL information_schema TABLE_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10716. NULL information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10717. NULL information_schema TABLE_PRIVILEGES IS_GRANTABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10718. NULL information_schema TRIGGERS TRIGGER_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10719. NULL information_schema TRIGGERS TRIGGER_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10720. NULL information_schema TRIGGERS TRIGGER_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10721. NULL information_schema TRIGGERS EVENT_MANIPULATION 4 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  10722. NULL information_schema TRIGGERS EVENT_OBJECT_CATALOG 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10723. NULL information_schema TRIGGERS EVENT_OBJECT_SCHEMA 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10724. NULL information_schema TRIGGERS EVENT_OBJECT_TABLE 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10725. NULL information_schema TRIGGERS ACTION_ORDER 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10726. NULL information_schema TRIGGERS ACTION_CONDITION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10727. NULL information_schema TRIGGERS ACTION_STATEMENT 10 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10728. NULL information_schema TRIGGERS ACTION_ORIENTATION 11 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  10729. NULL information_schema TRIGGERS ACTION_TIMING 12 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  10730. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10731. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10732. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW 15 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10733. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10734. NULL information_schema TRIGGERS CREATED 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10735. NULL information_schema TRIGGERS SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10736. NULL information_schema TRIGGERS DEFINER 19 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10737. NULL information_schema TRIGGERS CHARACTER_SET_CLIENT 20 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10738. NULL information_schema TRIGGERS COLLATION_CONNECTION 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10739. NULL information_schema TRIGGERS DATABASE_COLLATION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10740. NULL information_schema USER_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  10741. NULL information_schema USER_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10742. NULL information_schema USER_PRIVILEGES PRIVILEGE_TYPE 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10743. NULL information_schema USER_PRIVILEGES IS_GRANTABLE 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10744. NULL information_schema VIEWS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10745. NULL information_schema VIEWS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10746. NULL information_schema VIEWS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10747. NULL information_schema VIEWS VIEW_DEFINITION 4 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10748. NULL information_schema VIEWS CHECK_OPTION 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10749. NULL information_schema VIEWS IS_UPDATABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10750. NULL information_schema VIEWS DEFINER 7 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  10751. NULL information_schema VIEWS SECURITY_TYPE 8 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  10752. NULL information_schema VIEWS CHARACTER_SET_CLIENT 9 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10753. NULL information_schema VIEWS COLLATION_CONNECTION 10 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  10754. NULL test t1 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10755. NULL test t1 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10756. NULL test t1 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10757. NULL test t1 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10758. NULL test t1 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10759. NULL test t1 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10760. NULL test t10 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10761. NULL test t10 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10762. NULL test t10 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10763. NULL test t10 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10764. NULL test t10 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10765. NULL test t10 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10766. NULL test t11 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10767. NULL test t11 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10768. NULL test t11 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10769. NULL test t11 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10770. NULL test t11 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10771. NULL test t11 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10772. NULL test t2 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10773. NULL test t2 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10774. NULL test t2 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10775. NULL test t2 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10776. NULL test t2 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10777. NULL test t2 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10778. NULL test t3 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10779. NULL test t3 f2 2 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10780. NULL test t3 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10781. NULL test t4 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10782. NULL test t4 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10783. NULL test t4 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10784. NULL test t4 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10785. NULL test t4 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10786. NULL test t4 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10787. NULL test t7 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10788. NULL test t7 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10789. NULL test t7 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10790. NULL test t7 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10791. NULL test t8 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10792. NULL test t8 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10793. NULL test t8 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10794. NULL test t8 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10795. NULL test t9 f1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10796. NULL test t9 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10797. NULL test t9 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10798. NULL test tb1 f1 1 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10799. NULL test tb1 f2 2 NULL YES char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  10800. NULL test tb1 f3 3 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10801. NULL test tb1 f4 4 NULL YES tinytext 127 255 NULL NULL ucs2 ucs2_general_ci tinytext select,insert,update,references
  10802. NULL test tb1 f5 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  10803. NULL test tb1 f6 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  10804. NULL test tb1 f7 7 NULL YES longtext 4294967295 4294967295 NULL NULL latin1 latin1_swedish_ci longtext select,insert,update,references
  10805. NULL test tb1 f8 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  10806. NULL test tb1 f9 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10807. NULL test tb1 f10 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  10808. NULL test tb1 f11 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10809. NULL test tb1 f12 12 NULL YES binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  10810. NULL test tb1 f13 13 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  10811. NULL test tb1 f14 14 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  10812. NULL test tb1 f15 15 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10813. NULL test tb1 f16 16 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10814. NULL test tb1 f17 17 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  10815. NULL test tb1 f18 18 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  10816. NULL test tb1 f19 19 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10817. NULL test tb1 f20 20 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10818. NULL test tb1 f21 21 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  10819. NULL test tb1 f22 22 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  10820. NULL test tb1 f23 23 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10821. NULL test tb1 f24 24 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10822. NULL test tb1 f25 25 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10823. NULL test tb1 f26 26 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  10824. NULL test tb1 f27 27 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10825. NULL test tb1 f28 28 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10826. NULL test tb1 f29 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  10827. NULL test tb1 f30 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10828. NULL test tb1 f31 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10829. NULL test tb1 f32 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10830. NULL test tb1 f33 33 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10831. NULL test tb1 f34 34 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10832. NULL test tb1 f35 35 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10833. NULL test tb1 f36 36 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10834. NULL test tb1 f37 37 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10835. NULL test tb1 f38 38 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10836. NULL test tb1 f39 39 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10837. NULL test tb1 f40 40 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10838. NULL test tb1 f41 41 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10839. NULL test tb1 f42 42 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10840. NULL test tb1 f43 43 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10841. NULL test tb1 f44 44 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10842. NULL test tb1 f45 45 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10843. NULL test tb1 f46 46 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10844. NULL test tb1 f47 47 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10845. NULL test tb1 f48 48 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10846. NULL test tb1 f49 49 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10847. NULL test tb1 f50 50 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10848. NULL test tb1 f51 51 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10849. NULL test tb1 f52 52 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10850. NULL test tb1 f53 53 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10851. NULL test tb1 f54 54 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10852. NULL test tb1 f55 55 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10853. NULL test tb1 f56 56 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10854. NULL test tb1 f57 57 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10855. NULL test tb1 f58 58 99 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10856. NULL test tb2 f59 1 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10857. NULL test tb2 f60 2 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10858. NULL test tb2 f61 3 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10859. NULL test tb2 f62 4 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10860. NULL test tb2 f63 5 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10861. NULL test tb2 f64 6 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10862. NULL test tb2 f65 7 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10863. NULL test tb2 f66 8 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10864. NULL test tb2 f67 9 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10865. NULL test tb2 f68 10 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10866. NULL test tb2 f69 11 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10867. NULL test tb2 f70 12 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10868. NULL test tb2 f71 13 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10869. NULL test tb2 f72 14 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10870. NULL test tb2 f73 15 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10871. NULL test tb2 f74 16 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10872. NULL test tb2 f75 17 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10873. NULL test tb2 f76 18 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10874. NULL test tb2 f77 19 7.7 YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10875. NULL test tb2 f78 20 7.7 YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10876. NULL test tb2 f79 21 00000000000000000007.7 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10877. NULL test tb2 f80 22 00000000000000000008.8 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10878. NULL test tb2 f81 23 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10879. NULL test tb2 f82 24 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10880. NULL test tb2 f83 25 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10881. NULL test tb2 f84 26 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10882. NULL test tb2 f85 27 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10883. NULL test tb2 f86 28 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10884. NULL test tb2 f87 29 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10885. NULL test tb2 f88 30 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10886. NULL test tb2 f89 31 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10887. NULL test tb2 f90 32 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10888. NULL test tb2 f91 33 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10889. NULL test tb2 f92 34 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10890. NULL test tb2 f93 35 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10891. NULL test tb2 f94 36 8.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10892. NULL test tb2 f95 37 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10893. NULL test tb2 f96 38 8.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10894. NULL test tb2 f97 39 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10895. NULL test tb2 f98 40 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10896. NULL test tb2 f99 41 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10897. NULL test tb2 f100 42 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10898. NULL test tb2 f101 43 2000-01-01 NO date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10899. NULL test tb2 f102 44 00:00:20 NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  10900. NULL test tb2 f103 45 0002-02-02 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  10901. NULL test tb2 f104 46 2000-12-31 23:59:59 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10902. NULL test tb2 f105 47 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10903. NULL test tb2 f106 48 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10904. NULL test tb2 f107 49 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10905. NULL test tb2 f108 50 1enum NO enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  10906. NULL test tb2 f109 51 1set NO set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  10907. NULL test tb2 f110 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  10908. NULL test tb2 f111 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  10909. NULL test tb2 f112 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  10910. NULL test tb2 f113 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  10911. NULL test tb2 f114 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  10912. NULL test tb2 f115 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  10913. NULL test tb2 f116 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  10914. NULL test tb2 f117 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  10915. NULL test tb3 f118 1 a NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10916. NULL test tb3 f119 2  NO char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  10917. NULL test tb3 f120 3  NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10918. NULL test tb3 f121 4 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  10919. NULL test tb3 f122 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  10920. NULL test tb3 f123 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  10921. NULL test tb3 f124 7 NULL YES longtext 2147483647 4294967295 NULL NULL ucs2 ucs2_general_ci longtext select,insert,update,references
  10922. NULL test tb3 f125 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  10923. NULL test tb3 f126 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10924. NULL test tb3 f127 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  10925. NULL test tb3 f128 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10926. NULL test tb3 f129 12  NO binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  10927. NULL test tb3 f130 13 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  10928. NULL test tb3 f131 14 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  10929. NULL test tb3 f132 15 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10930. NULL test tb3 f133 16 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10931. NULL test tb3 f134 17 999 NO smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  10932. NULL test tb3 f135 18 999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  10933. NULL test tb3 f136 19 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10934. NULL test tb3 f137 20 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10935. NULL test tb3 f138 21 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  10936. NULL test tb3 f139 22 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  10937. NULL test tb3 f140 23 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10938. NULL test tb3 f141 24 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10939. NULL test tb3 f142 25 99999 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10940. NULL test tb3 f143 26 99999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  10941. NULL test tb3 f144 27 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10942. NULL test tb3 f145 28 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10943. NULL test tb3 f146 29 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  10944. NULL test tb3 f147 30 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10945. NULL test tb3 f148 31 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10946. NULL test tb3 f149 32 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10947. NULL test tb3 f150 33 1000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10948. NULL test tb3 f151 34 999 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10949. NULL test tb3 f152 35 0000001000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10950. NULL test tb3 f153 36 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10951. NULL test tb3 f154 37 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10952. NULL test tb3 f155 38 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10953. NULL test tb3 f156 39 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10954. NULL test tb3 f157 40 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10955. NULL test tb3 f158 41 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10956. NULL test tb3 f159 42 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10957. NULL test tb3 f160 43 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10958. NULL test tb3 f161 44 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10959. NULL test tb3 f162 45 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10960. NULL test tb3 f163 46 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10961. NULL test tb3 f164 47 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10962. NULL test tb3 f165 48 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10963. NULL test tb3 f166 49 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10964. NULL test tb3 f167 50 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10965. NULL test tb3 f168 51 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10966. NULL test tb3 f169 52 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10967. NULL test tb3 f170 53 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10968. NULL test tb3 f171 54 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10969. NULL test tb3 f172 55 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10970. NULL test tb3 f173 56 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10971. NULL test tb3 f174 57 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10972. NULL test tb3 f175 58 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10973. NULL test tb4 f176 1 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10974. NULL test tb4 f177 2 9 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10975. NULL test tb4 f178 3 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10976. NULL test tb4 f179 4 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10977. NULL test tb4 f180 5 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10978. NULL test tb4 f181 6 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10979. NULL test tb4 f182 7 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10980. NULL test tb4 f183 8 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10981. NULL test tb4 f184 9 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10982. NULL test tb4 f185 10 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10983. NULL test tb4 f186 11 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10984. NULL test tb4 f187 12 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10985. NULL test tb4 f188 13 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10986. NULL test tb4 f189 14 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10987. NULL test tb4 f190 15 88.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10988. NULL test tb4 f191 16 88.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10989. NULL test tb4 f192 17 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10990. NULL test tb4 f193 18 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10991. NULL test tb4 f194 19 55.5 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10992. NULL test tb4 f195 20 55.5 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10993. NULL test tb4 f196 21 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10994. NULL test tb4 f197 22 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10995. NULL test tb4 f198 23 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10996. NULL test tb4 f199 24 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10997. NULL test tb4 f200 25 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10998. NULL test tb4 f201 26 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10999. NULL test tb4 f202 27 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11000. NULL test tb4 f203 28 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11001. NULL test tb4 f204 29 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11002. NULL test tb4 f205 30 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11003. NULL test tb4 f206 31 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11004. NULL test tb4 f207 32 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11005. NULL test tb4 f208 33 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11006. NULL test tb4 f209 34 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11007. NULL test tb4 f210 35 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11008. NULL test tb4 f211 36 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11009. NULL test tb4 f212 37 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11010. NULL test tb4 f213 38 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11011. NULL test tb4 f214 39 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11012. NULL test tb4 f215 40 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11013. NULL test tb4 f216 41 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11014. NULL test tb4 f217 42 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11015. NULL test tb4 f218 43 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11016. NULL test tb4 f219 44 NULL YES time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  11017. NULL test tb4 f220 45 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  11018. NULL test tb4 f221 46 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  11019. NULL test tb4 f222 47 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11020. NULL test tb4 f223 48 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11021. NULL test tb4 f224 49 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11022. NULL test tb4 f225 50 NULL YES enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  11023. NULL test tb4 f226 51 NULL YES set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  11024. NULL test tb4 f227 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11025. NULL test tb4 f228 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  11026. NULL test tb4 f229 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11027. NULL test tb4 f230 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11028. NULL test tb4 f231 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11029. NULL test tb4 f232 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  11030. NULL test tb4 f233 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11031. NULL test tb4 f234 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11032. NULL test tb4 f235 60 NULL YES char 255 510 NULL NULL ucs2 ucs2_general_ci char(255) select,insert,update,references
  11033. NULL test tb4 f236 61 NULL YES char 60 60 NULL NULL latin1 latin1_swedish_ci char(60) select,insert,update,references
  11034. NULL test tb4 f237 62 NULL YES char 255 255 NULL NULL latin1 latin1_bin char(255) select,insert,update,references
  11035. NULL test tb4 f238 63 NULL YES varchar 0 0 NULL NULL latin1 latin1_bin varchar(0) select,insert,update,references
  11036. NULL test tb4 f239 64 NULL YES varbinary 1000 1000 NULL NULL NULL NULL varbinary(1000) select,insert,update,references
  11037. NULL test tb4 f240 65 NULL YES varchar 120 240 NULL NULL ucs2 ucs2_general_ci varchar(120) select,insert,update,references
  11038. NULL test tb4 f241 66 NULL YES char 100 200 NULL NULL ucs2 ucs2_general_ci char(100) select,insert,update,references
  11039. NULL test tb4 f242 67 NULL YES bit NULL NULL 30 NULL NULL NULL bit(30) select,insert,update,references
  11040. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  11041. SELECT * FROM information_schema.columns
  11042. ORDER BY table_schema, table_name, ordinal_position;
  11043. 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
  11044. NULL db_datadict t_6_406002 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) insert
  11045. NULL db_datadict t_6_406002 f2 2 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text insert
  11046. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11047. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11048. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  11049. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  11050. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11051. NULL information_schema COLLATIONS CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11052. NULL information_schema COLLATIONS ID 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(11) select
  11053. NULL information_schema COLLATIONS IS_DEFAULT 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11054. NULL information_schema COLLATIONS IS_COMPILED 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11055. NULL information_schema COLLATIONS SORTLEN 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  11056. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11057. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11058. NULL information_schema COLUMNS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11059. NULL information_schema COLUMNS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11060. NULL information_schema COLUMNS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11061. NULL information_schema COLUMNS COLUMN_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11062. NULL information_schema COLUMNS ORDINAL_POSITION 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11063. NULL information_schema COLUMNS COLUMN_DEFAULT 6 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11064. NULL information_schema COLUMNS IS_NULLABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11065. NULL information_schema COLUMNS DATA_TYPE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11066. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11067. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11068. NULL information_schema COLUMNS NUMERIC_PRECISION 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11069. NULL information_schema COLUMNS NUMERIC_SCALE 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11070. NULL information_schema COLUMNS CHARACTER_SET_NAME 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11071. NULL information_schema COLUMNS COLLATION_NAME 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11072. NULL information_schema COLUMNS COLUMN_TYPE 15 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11073. NULL information_schema COLUMNS COLUMN_KEY 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11074. NULL information_schema COLUMNS EXTRA 17 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11075. NULL information_schema COLUMNS PRIVILEGES 18 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11076. NULL information_schema COLUMNS COLUMN_COMMENT 19 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  11077. NULL information_schema COLUMN_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11078. NULL information_schema COLUMN_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11079. NULL information_schema COLUMN_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11080. NULL information_schema COLUMN_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11081. NULL information_schema COLUMN_PRIVILEGES COLUMN_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11082. NULL information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11083. NULL information_schema COLUMN_PRIVILEGES IS_GRANTABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11084. NULL information_schema ENGINES ENGINE 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11085. NULL information_schema ENGINES SUPPORT 2 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11086. NULL information_schema ENGINES COMMENT 3 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11087. NULL information_schema ENGINES TRANSACTIONS 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11088. NULL information_schema ENGINES XA 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11089. NULL information_schema ENGINES SAVEPOINTS 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11090. NULL information_schema EVENTS EVENT_CATALOG 1 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11091. NULL information_schema EVENTS EVENT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11092. NULL information_schema EVENTS EVENT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11093. NULL information_schema EVENTS DEFINER 4 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  11094. NULL information_schema EVENTS TIME_ZONE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11095. NULL information_schema EVENTS EVENT_BODY 6 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11096. NULL information_schema EVENTS EVENT_DEFINITION 7 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11097. NULL information_schema EVENTS EVENT_TYPE 8 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  11098. NULL information_schema EVENTS EXECUTE_AT 9 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11099. NULL information_schema EVENTS INTERVAL_VALUE 10 NULL YES varchar 256 768 NULL NULL utf8 utf8_general_ci varchar(256) select
  11100. NULL information_schema EVENTS INTERVAL_FIELD 11 NULL YES varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  11101. NULL information_schema EVENTS SQL_MODE 12 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11102. NULL information_schema EVENTS STARTS 13 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11103. NULL information_schema EVENTS ENDS 14 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11104. NULL information_schema EVENTS STATUS 15 NO varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  11105. NULL information_schema EVENTS ON_COMPLETION 16 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11106. NULL information_schema EVENTS CREATED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11107. NULL information_schema EVENTS LAST_ALTERED 18 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11108. NULL information_schema EVENTS LAST_EXECUTED 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11109. NULL information_schema EVENTS EVENT_COMMENT 20 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11110. NULL information_schema EVENTS ORIGINATOR 21 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  11111. NULL information_schema EVENTS CHARACTER_SET_CLIENT 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11112. NULL information_schema EVENTS COLLATION_CONNECTION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11113. NULL information_schema EVENTS DATABASE_COLLATION 24 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11114. NULL information_schema FILES FILE_ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11115. NULL information_schema FILES FILE_NAME 2 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11116. NULL information_schema FILES FILE_TYPE 3 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11117. NULL information_schema FILES TABLESPACE_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11118. NULL information_schema FILES TABLE_CATALOG 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11119. NULL information_schema FILES TABLE_SCHEMA 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11120. NULL information_schema FILES TABLE_NAME 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11121. NULL information_schema FILES LOGFILE_GROUP_NAME 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11122. NULL information_schema FILES LOGFILE_GROUP_NUMBER 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11123. NULL information_schema FILES ENGINE 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11124. NULL information_schema FILES FULLTEXT_KEYS 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11125. NULL information_schema FILES DELETED_ROWS 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11126. NULL information_schema FILES UPDATE_COUNT 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11127. NULL information_schema FILES FREE_EXTENTS 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11128. NULL information_schema FILES TOTAL_EXTENTS 15 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11129. NULL information_schema FILES EXTENT_SIZE 16 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11130. NULL information_schema FILES INITIAL_SIZE 17 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11131. NULL information_schema FILES MAXIMUM_SIZE 18 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11132. NULL information_schema FILES AUTOEXTEND_SIZE 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11133. NULL information_schema FILES CREATION_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11134. NULL information_schema FILES LAST_UPDATE_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11135. NULL information_schema FILES LAST_ACCESS_TIME 22 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11136. NULL information_schema FILES RECOVER_TIME 23 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11137. NULL information_schema FILES TRANSACTION_COUNTER 24 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11138. NULL information_schema FILES VERSION 25 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11139. NULL information_schema FILES ROW_FORMAT 26 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11140. NULL information_schema FILES TABLE_ROWS 27 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11141. NULL information_schema FILES AVG_ROW_LENGTH 28 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11142. NULL information_schema FILES DATA_LENGTH 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11143. NULL information_schema FILES MAX_DATA_LENGTH 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11144. NULL information_schema FILES INDEX_LENGTH 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11145. NULL information_schema FILES DATA_FREE 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11146. NULL information_schema FILES CREATE_TIME 33 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11147. NULL information_schema FILES UPDATE_TIME 34 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11148. NULL information_schema FILES CHECK_TIME 35 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11149. NULL information_schema FILES CHECKSUM 36 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11150. NULL information_schema FILES STATUS 37 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11151. NULL information_schema FILES EXTRA 38 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  11152. NULL information_schema GLOBAL_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11153. NULL information_schema GLOBAL_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  11154. NULL information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11155. NULL information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  11156. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11157. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11158. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11159. NULL information_schema KEY_COLUMN_USAGE TABLE_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11160. NULL information_schema KEY_COLUMN_USAGE TABLE_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11161. NULL information_schema KEY_COLUMN_USAGE TABLE_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11162. NULL information_schema KEY_COLUMN_USAGE COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11163. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  11164. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(10) select
  11165. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11166. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11167. NULL information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME 12 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11168. NULL information_schema PARTITIONS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11169. NULL information_schema PARTITIONS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11170. NULL information_schema PARTITIONS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11171. NULL information_schema PARTITIONS PARTITION_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11172. NULL information_schema PARTITIONS SUBPARTITION_NAME 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11173. NULL information_schema PARTITIONS PARTITION_ORDINAL_POSITION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11174. NULL information_schema PARTITIONS SUBPARTITION_ORDINAL_POSITION 7 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11175. NULL information_schema PARTITIONS PARTITION_METHOD 8 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11176. NULL information_schema PARTITIONS SUBPARTITION_METHOD 9 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11177. NULL information_schema PARTITIONS PARTITION_EXPRESSION 10 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11178. NULL information_schema PARTITIONS SUBPARTITION_EXPRESSION 11 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11179. NULL information_schema PARTITIONS PARTITION_DESCRIPTION 12 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11180. NULL information_schema PARTITIONS TABLE_ROWS 13 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11181. NULL information_schema PARTITIONS AVG_ROW_LENGTH 14 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11182. NULL information_schema PARTITIONS DATA_LENGTH 15 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11183. NULL information_schema PARTITIONS MAX_DATA_LENGTH 16 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11184. NULL information_schema PARTITIONS INDEX_LENGTH 17 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11185. NULL information_schema PARTITIONS DATA_FREE 18 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11186. NULL information_schema PARTITIONS CREATE_TIME 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11187. NULL information_schema PARTITIONS UPDATE_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11188. NULL information_schema PARTITIONS CHECK_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11189. NULL information_schema PARTITIONS CHECKSUM 22 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11190. NULL information_schema PARTITIONS PARTITION_COMMENT 23 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11191. NULL information_schema PARTITIONS NODEGROUP 24 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11192. NULL information_schema PARTITIONS TABLESPACE_NAME 25 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11193. NULL information_schema PLUGINS PLUGIN_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11194. NULL information_schema PLUGINS PLUGIN_VERSION 2 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11195. NULL information_schema PLUGINS PLUGIN_STATUS 3 NO varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11196. NULL information_schema PLUGINS PLUGIN_TYPE 4 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11197. NULL information_schema PLUGINS PLUGIN_TYPE_VERSION 5 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11198. NULL information_schema PLUGINS PLUGIN_LIBRARY 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11199. NULL information_schema PLUGINS PLUGIN_LIBRARY_VERSION 7 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11200. NULL information_schema PLUGINS PLUGIN_AUTHOR 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11201. NULL information_schema PLUGINS PLUGIN_DESCRIPTION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11202. NULL information_schema PLUGINS PLUGIN_LICENSE 10 NULL YES varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11203. NULL information_schema PROCESSLIST ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11204. NULL information_schema PROCESSLIST USER 2 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11205. NULL information_schema PROCESSLIST HOST 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11206. NULL information_schema PROCESSLIST DB 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11207. NULL information_schema PROCESSLIST COMMAND 5 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11208. NULL information_schema PROCESSLIST TIME 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(7) select
  11209. NULL information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11210. NULL information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11211. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11212. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11213. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11214. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11215. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11216. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11217. NULL information_schema REFERENTIAL_CONSTRAINTS MATCH_OPTION 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11218. NULL information_schema REFERENTIAL_CONSTRAINTS UPDATE_RULE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11219. NULL information_schema REFERENTIAL_CONSTRAINTS DELETE_RULE 9 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11220. NULL information_schema REFERENTIAL_CONSTRAINTS TABLE_NAME 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11221. NULL information_schema REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME 11 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11222. NULL information_schema ROUTINES SPECIFIC_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11223. NULL information_schema ROUTINES ROUTINE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11224. NULL information_schema ROUTINES ROUTINE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11225. NULL information_schema ROUTINES ROUTINE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11226. NULL information_schema ROUTINES ROUTINE_TYPE 5 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  11227. NULL information_schema ROUTINES DTD_IDENTIFIER 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11228. NULL information_schema ROUTINES ROUTINE_BODY 7 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11229. NULL information_schema ROUTINES ROUTINE_DEFINITION 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11230. NULL information_schema ROUTINES EXTERNAL_NAME 9 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11231. NULL information_schema ROUTINES EXTERNAL_LANGUAGE 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11232. NULL information_schema ROUTINES PARAMETER_STYLE 11 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11233. NULL information_schema ROUTINES IS_DETERMINISTIC 12 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11234. NULL information_schema ROUTINES SQL_DATA_ACCESS 13 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11235. NULL information_schema ROUTINES SQL_PATH 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11236. NULL information_schema ROUTINES SECURITY_TYPE 15 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  11237. NULL information_schema ROUTINES CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11238. NULL information_schema ROUTINES LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11239. NULL information_schema ROUTINES SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11240. NULL information_schema ROUTINES ROUTINE_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11241. NULL information_schema ROUTINES DEFINER 20 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  11242. NULL information_schema ROUTINES CHARACTER_SET_CLIENT 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11243. NULL information_schema ROUTINES COLLATION_CONNECTION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11244. NULL information_schema ROUTINES DATABASE_COLLATION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11245. NULL information_schema SCHEMATA CATALOG_NAME 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11246. NULL information_schema SCHEMATA SCHEMA_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11247. NULL information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11248. NULL information_schema SCHEMATA DEFAULT_COLLATION_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11249. NULL information_schema SCHEMATA SQL_PATH 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11250. NULL information_schema SCHEMA_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11251. NULL information_schema SCHEMA_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11252. NULL information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11253. NULL information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11254. NULL information_schema SCHEMA_PRIVILEGES IS_GRANTABLE 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11255. NULL information_schema SESSION_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11256. NULL information_schema SESSION_STATUS VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  11257. NULL information_schema SESSION_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11258. NULL information_schema SESSION_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 20480 61440 NULL NULL utf8 utf8_general_ci varchar(20480) select
  11259. NULL information_schema STATISTICS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11260. NULL information_schema STATISTICS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11261. NULL information_schema STATISTICS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11262. NULL information_schema STATISTICS NON_UNIQUE 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(1) select
  11263. NULL information_schema STATISTICS INDEX_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11264. NULL information_schema STATISTICS INDEX_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11265. NULL information_schema STATISTICS SEQ_IN_INDEX 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(2) select
  11266. NULL information_schema STATISTICS COLUMN_NAME 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11267. NULL information_schema STATISTICS COLLATION 9 NULL YES varchar 1 3 NULL NULL utf8 utf8_general_ci varchar(1) select
  11268. NULL information_schema STATISTICS CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11269. NULL information_schema STATISTICS SUB_PART 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(3) select
  11270. NULL information_schema STATISTICS PACKED 12 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11271. NULL information_schema STATISTICS NULLABLE 13 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11272. NULL information_schema STATISTICS INDEX_TYPE 14 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11273. NULL information_schema STATISTICS COMMENT 15 NULL YES varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11274. NULL information_schema TABLES TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11275. NULL information_schema TABLES TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11276. NULL information_schema TABLES TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11277. NULL information_schema TABLES TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11278. NULL information_schema TABLES ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11279. NULL information_schema TABLES VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11280. NULL information_schema TABLES ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11281. NULL information_schema TABLES TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11282. NULL information_schema TABLES AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11283. NULL information_schema TABLES DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11284. NULL information_schema TABLES MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11285. NULL information_schema TABLES INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11286. NULL information_schema TABLES DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11287. NULL information_schema TABLES AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11288. NULL information_schema TABLES CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11289. NULL information_schema TABLES UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11290. NULL information_schema TABLES CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11291. NULL information_schema TABLES TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11292. NULL information_schema TABLES CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  11293. NULL information_schema TABLES CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  11294. NULL information_schema TABLES TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11295. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11296. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11297. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11298. NULL information_schema TABLE_CONSTRAINTS TABLE_SCHEMA 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11299. NULL information_schema TABLE_CONSTRAINTS TABLE_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11300. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11301. NULL information_schema TABLE_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11302. NULL information_schema TABLE_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11303. NULL information_schema TABLE_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11304. NULL information_schema TABLE_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11305. NULL information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11306. NULL information_schema TABLE_PRIVILEGES IS_GRANTABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11307. NULL information_schema TRIGGERS TRIGGER_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11308. NULL information_schema TRIGGERS TRIGGER_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11309. NULL information_schema TRIGGERS TRIGGER_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11310. NULL information_schema TRIGGERS EVENT_MANIPULATION 4 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  11311. NULL information_schema TRIGGERS EVENT_OBJECT_CATALOG 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11312. NULL information_schema TRIGGERS EVENT_OBJECT_SCHEMA 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11313. NULL information_schema TRIGGERS EVENT_OBJECT_TABLE 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11314. NULL information_schema TRIGGERS ACTION_ORDER 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11315. NULL information_schema TRIGGERS ACTION_CONDITION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11316. NULL information_schema TRIGGERS ACTION_STATEMENT 10 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11317. NULL information_schema TRIGGERS ACTION_ORIENTATION 11 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  11318. NULL information_schema TRIGGERS ACTION_TIMING 12 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  11319. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11320. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11321. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW 15 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11322. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11323. NULL information_schema TRIGGERS CREATED 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11324. NULL information_schema TRIGGERS SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11325. NULL information_schema TRIGGERS DEFINER 19 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11326. NULL information_schema TRIGGERS CHARACTER_SET_CLIENT 20 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11327. NULL information_schema TRIGGERS COLLATION_CONNECTION 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11328. NULL information_schema TRIGGERS DATABASE_COLLATION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11329. NULL information_schema USER_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11330. NULL information_schema USER_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11331. NULL information_schema USER_PRIVILEGES PRIVILEGE_TYPE 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11332. NULL information_schema USER_PRIVILEGES IS_GRANTABLE 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11333. NULL information_schema VIEWS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11334. NULL information_schema VIEWS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11335. NULL information_schema VIEWS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11336. NULL information_schema VIEWS VIEW_DEFINITION 4 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11337. NULL information_schema VIEWS CHECK_OPTION 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11338. NULL information_schema VIEWS IS_UPDATABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11339. NULL information_schema VIEWS DEFINER 7 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  11340. NULL information_schema VIEWS SECURITY_TYPE 8 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  11341. NULL information_schema VIEWS CHARACTER_SET_CLIENT 9 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11342. NULL information_schema VIEWS COLLATION_CONNECTION 10 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  11343. NULL test t1 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11344. NULL test t1 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11345. NULL test t1 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11346. NULL test t1 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11347. NULL test t1 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11348. NULL test t1 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11349. NULL test t10 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11350. NULL test t10 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11351. NULL test t10 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11352. NULL test t10 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11353. NULL test t10 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11354. NULL test t10 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11355. NULL test t11 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11356. NULL test t11 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11357. NULL test t11 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11358. NULL test t11 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11359. NULL test t11 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11360. NULL test t11 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11361. NULL test t2 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11362. NULL test t2 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11363. NULL test t2 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11364. NULL test t2 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11365. NULL test t2 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11366. NULL test t2 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11367. NULL test t3 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11368. NULL test t3 f2 2 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11369. NULL test t3 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11370. NULL test t4 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11371. NULL test t4 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11372. NULL test t4 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11373. NULL test t4 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11374. NULL test t4 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11375. NULL test t4 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11376. NULL test t7 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11377. NULL test t7 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11378. NULL test t7 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11379. NULL test t7 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11380. NULL test t8 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11381. NULL test t8 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11382. NULL test t8 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11383. NULL test t8 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11384. NULL test t9 f1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11385. NULL test t9 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11386. NULL test t9 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11387. NULL test tb1 f1 1 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  11388. NULL test tb1 f2 2 NULL YES char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  11389. NULL test tb1 f3 3 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  11390. NULL test tb1 f4 4 NULL YES tinytext 127 255 NULL NULL ucs2 ucs2_general_ci tinytext select,insert,update,references
  11391. NULL test tb1 f5 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  11392. NULL test tb1 f6 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  11393. NULL test tb1 f7 7 NULL YES longtext 4294967295 4294967295 NULL NULL latin1 latin1_swedish_ci longtext select,insert,update,references
  11394. NULL test tb1 f8 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  11395. NULL test tb1 f9 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  11396. NULL test tb1 f10 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  11397. NULL test tb1 f11 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  11398. NULL test tb1 f12 12 NULL YES binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  11399. NULL test tb1 f13 13 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  11400. NULL test tb1 f14 14 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  11401. NULL test tb1 f15 15 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11402. NULL test tb1 f16 16 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11403. NULL test tb1 f17 17 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  11404. NULL test tb1 f18 18 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  11405. NULL test tb1 f19 19 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11406. NULL test tb1 f20 20 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11407. NULL test tb1 f21 21 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  11408. NULL test tb1 f22 22 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  11409. NULL test tb1 f23 23 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11410. NULL test tb1 f24 24 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11411. NULL test tb1 f25 25 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11412. NULL test tb1 f26 26 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  11413. NULL test tb1 f27 27 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11414. NULL test tb1 f28 28 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11415. NULL test tb1 f29 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  11416. NULL test tb1 f30 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  11417. NULL test tb1 f31 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11418. NULL test tb1 f32 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11419. NULL test tb1 f33 33 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11420. NULL test tb1 f34 34 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11421. NULL test tb1 f35 35 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11422. NULL test tb1 f36 36 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11423. NULL test tb1 f37 37 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11424. NULL test tb1 f38 38 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11425. NULL test tb1 f39 39 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11426. NULL test tb1 f40 40 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11427. NULL test tb1 f41 41 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11428. NULL test tb1 f42 42 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11429. NULL test tb1 f43 43 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11430. NULL test tb1 f44 44 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11431. NULL test tb1 f45 45 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11432. NULL test tb1 f46 46 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11433. NULL test tb1 f47 47 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11434. NULL test tb1 f48 48 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11435. NULL test tb1 f49 49 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11436. NULL test tb1 f50 50 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11437. NULL test tb1 f51 51 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11438. NULL test tb1 f52 52 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11439. NULL test tb1 f53 53 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11440. NULL test tb1 f54 54 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11441. NULL test tb1 f55 55 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11442. NULL test tb1 f56 56 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11443. NULL test tb1 f57 57 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11444. NULL test tb1 f58 58 99 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11445. NULL test tb2 f59 1 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11446. NULL test tb2 f60 2 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11447. NULL test tb2 f61 3 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11448. NULL test tb2 f62 4 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11449. NULL test tb2 f63 5 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11450. NULL test tb2 f64 6 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11451. NULL test tb2 f65 7 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11452. NULL test tb2 f66 8 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11453. NULL test tb2 f67 9 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11454. NULL test tb2 f68 10 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11455. NULL test tb2 f69 11 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11456. NULL test tb2 f70 12 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11457. NULL test tb2 f71 13 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11458. NULL test tb2 f72 14 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11459. NULL test tb2 f73 15 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11460. NULL test tb2 f74 16 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11461. NULL test tb2 f75 17 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11462. NULL test tb2 f76 18 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11463. NULL test tb2 f77 19 7.7 YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11464. NULL test tb2 f78 20 7.7 YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11465. NULL test tb2 f79 21 00000000000000000007.7 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11466. NULL test tb2 f80 22 00000000000000000008.8 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11467. NULL test tb2 f81 23 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11468. NULL test tb2 f82 24 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11469. NULL test tb2 f83 25 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11470. NULL test tb2 f84 26 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11471. NULL test tb2 f85 27 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11472. NULL test tb2 f86 28 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11473. NULL test tb2 f87 29 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11474. NULL test tb2 f88 30 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11475. NULL test tb2 f89 31 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11476. NULL test tb2 f90 32 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11477. NULL test tb2 f91 33 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11478. NULL test tb2 f92 34 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11479. NULL test tb2 f93 35 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11480. NULL test tb2 f94 36 8.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11481. NULL test tb2 f95 37 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11482. NULL test tb2 f96 38 8.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11483. NULL test tb2 f97 39 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11484. NULL test tb2 f98 40 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11485. NULL test tb2 f99 41 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11486. NULL test tb2 f100 42 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11487. NULL test tb2 f101 43 2000-01-01 NO date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11488. NULL test tb2 f102 44 00:00:20 NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  11489. NULL test tb2 f103 45 0002-02-02 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  11490. NULL test tb2 f104 46 2000-12-31 23:59:59 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  11491. NULL test tb2 f105 47 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11492. NULL test tb2 f106 48 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11493. NULL test tb2 f107 49 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11494. NULL test tb2 f108 50 1enum NO enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  11495. NULL test tb2 f109 51 1set NO set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  11496. NULL test tb2 f110 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11497. NULL test tb2 f111 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  11498. NULL test tb2 f112 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11499. NULL test tb2 f113 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11500. NULL test tb2 f114 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11501. NULL test tb2 f115 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  11502. NULL test tb2 f116 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11503. NULL test tb2 f117 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11504. NULL test tb3 f118 1 a NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  11505. NULL test tb3 f119 2  NO char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  11506. NULL test tb3 f120 3  NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  11507. NULL test tb3 f121 4 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  11508. NULL test tb3 f122 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  11509. NULL test tb3 f123 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  11510. NULL test tb3 f124 7 NULL YES longtext 2147483647 4294967295 NULL NULL ucs2 ucs2_general_ci longtext select,insert,update,references
  11511. NULL test tb3 f125 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  11512. NULL test tb3 f126 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  11513. NULL test tb3 f127 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  11514. NULL test tb3 f128 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  11515. NULL test tb3 f129 12  NO binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  11516. NULL test tb3 f130 13 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  11517. NULL test tb3 f131 14 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  11518. NULL test tb3 f132 15 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11519. NULL test tb3 f133 16 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11520. NULL test tb3 f134 17 999 NO smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  11521. NULL test tb3 f135 18 999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  11522. NULL test tb3 f136 19 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11523. NULL test tb3 f137 20 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11524. NULL test tb3 f138 21 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  11525. NULL test tb3 f139 22 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  11526. NULL test tb3 f140 23 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11527. NULL test tb3 f141 24 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11528. NULL test tb3 f142 25 99999 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11529. NULL test tb3 f143 26 99999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  11530. NULL test tb3 f144 27 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11531. NULL test tb3 f145 28 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11532. NULL test tb3 f146 29 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  11533. NULL test tb3 f147 30 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  11534. NULL test tb3 f148 31 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11535. NULL test tb3 f149 32 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11536. NULL test tb3 f150 33 1000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11537. NULL test tb3 f151 34 999 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11538. NULL test tb3 f152 35 0000001000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11539. NULL test tb3 f153 36 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11540. NULL test tb3 f154 37 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11541. NULL test tb3 f155 38 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11542. NULL test tb3 f156 39 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11543. NULL test tb3 f157 40 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11544. NULL test tb3 f158 41 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11545. NULL test tb3 f159 42 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11546. NULL test tb3 f160 43 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11547. NULL test tb3 f161 44 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11548. NULL test tb3 f162 45 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11549. NULL test tb3 f163 46 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11550. NULL test tb3 f164 47 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11551. NULL test tb3 f165 48 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11552. NULL test tb3 f166 49 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11553. NULL test tb3 f167 50 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11554. NULL test tb3 f168 51 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11555. NULL test tb3 f169 52 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11556. NULL test tb3 f170 53 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11557. NULL test tb3 f171 54 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11558. NULL test tb3 f172 55 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11559. NULL test tb3 f173 56 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11560. NULL test tb3 f174 57 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11561. NULL test tb3 f175 58 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11562. NULL test tb4 f176 1 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11563. NULL test tb4 f177 2 9 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11564. NULL test tb4 f178 3 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11565. NULL test tb4 f179 4 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11566. NULL test tb4 f180 5 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11567. NULL test tb4 f181 6 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11568. NULL test tb4 f182 7 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11569. NULL test tb4 f183 8 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11570. NULL test tb4 f184 9 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11571. NULL test tb4 f185 10 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11572. NULL test tb4 f186 11 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11573. NULL test tb4 f187 12 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11574. NULL test tb4 f188 13 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11575. NULL test tb4 f189 14 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11576. NULL test tb4 f190 15 88.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11577. NULL test tb4 f191 16 88.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11578. NULL test tb4 f192 17 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11579. NULL test tb4 f193 18 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11580. NULL test tb4 f194 19 55.5 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11581. NULL test tb4 f195 20 55.5 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11582. NULL test tb4 f196 21 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11583. NULL test tb4 f197 22 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11584. NULL test tb4 f198 23 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11585. NULL test tb4 f199 24 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11586. NULL test tb4 f200 25 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11587. NULL test tb4 f201 26 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11588. NULL test tb4 f202 27 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11589. NULL test tb4 f203 28 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11590. NULL test tb4 f204 29 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11591. NULL test tb4 f205 30 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11592. NULL test tb4 f206 31 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11593. NULL test tb4 f207 32 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11594. NULL test tb4 f208 33 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11595. NULL test tb4 f209 34 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11596. NULL test tb4 f210 35 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11597. NULL test tb4 f211 36 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11598. NULL test tb4 f212 37 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11599. NULL test tb4 f213 38 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11600. NULL test tb4 f214 39 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11601. NULL test tb4 f215 40 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11602. NULL test tb4 f216 41 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11603. NULL test tb4 f217 42 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11604. NULL test tb4 f218 43 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11605. NULL test tb4 f219 44 NULL YES time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  11606. NULL test tb4 f220 45 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  11607. NULL test tb4 f221 46 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  11608. NULL test tb4 f222 47 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11609. NULL test tb4 f223 48 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11610. NULL test tb4 f224 49 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11611. NULL test tb4 f225 50 NULL YES enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  11612. NULL test tb4 f226 51 NULL YES set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  11613. NULL test tb4 f227 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11614. NULL test tb4 f228 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  11615. NULL test tb4 f229 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11616. NULL test tb4 f230 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11617. NULL test tb4 f231 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11618. NULL test tb4 f232 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  11619. NULL test tb4 f233 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11620. NULL test tb4 f234 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11621. NULL test tb4 f235 60 NULL YES char 255 510 NULL NULL ucs2 ucs2_general_ci char(255) select,insert,update,references
  11622. NULL test tb4 f236 61 NULL YES char 60 60 NULL NULL latin1 latin1_swedish_ci char(60) select,insert,update,references
  11623. NULL test tb4 f237 62 NULL YES char 255 255 NULL NULL latin1 latin1_bin char(255) select,insert,update,references
  11624. NULL test tb4 f238 63 NULL YES varchar 0 0 NULL NULL latin1 latin1_bin varchar(0) select,insert,update,references
  11625. NULL test tb4 f239 64 NULL YES varbinary 1000 1000 NULL NULL NULL NULL varbinary(1000) select,insert,update,references
  11626. NULL test tb4 f240 65 NULL YES varchar 120 240 NULL NULL ucs2 ucs2_general_ci varchar(120) select,insert,update,references
  11627. NULL test tb4 f241 66 NULL YES char 100 200 NULL NULL ucs2 ucs2_general_ci char(100) select,insert,update,references
  11628. NULL test tb4 f242 67 NULL YES bit NULL NULL 30 NULL NULL NULL bit(30) select,insert,update,references
  11629. root@localhost db_datadict
  11630. Show the quotient of COL and CML for all COLUMNS
  11631. ------------------------------------------------
  11632. SELECT DISTINCT
  11633. CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH AS COL_CML,
  11634. DATA_TYPE,
  11635. CHARACTER_SET_NAME,
  11636. COLLATION_NAME
  11637. FROM information_schema.columns
  11638. WHERE CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH = 1
  11639. ORDER BY CHARACTER_SET_NAME, COLLATION_NAME, COL_CML;
  11640. COL_CML DATA_TYPE CHARACTER_SET_NAME COLLATION_NAME
  11641. 1.0000 binary NULL NULL
  11642. 1.0000 blob NULL NULL
  11643. 1.0000 longblob NULL NULL
  11644. 1.0000 mediumblob NULL NULL
  11645. 1.0000 tinyblob NULL NULL
  11646. 1.0000 varbinary NULL NULL
  11647. 1.0000 char latin1 latin1_bin
  11648. 1.0000 varchar latin1 latin1_bin
  11649. 1.0000 char latin1 latin1_swedish_ci
  11650. 1.0000 enum latin1 latin1_swedish_ci
  11651. 1.0000 longtext latin1 latin1_swedish_ci
  11652. 1.0000 mediumtext latin1 latin1_swedish_ci
  11653. 1.0000 set latin1 latin1_swedish_ci
  11654. 1.0000 text latin1 latin1_swedish_ci
  11655. 1.0000 tinytext latin1 latin1_swedish_ci
  11656. 1.0000 varchar latin1 latin1_swedish_ci
  11657. 1.0000 longtext utf8 utf8_general_ci
  11658. 1.0000 mediumtext utf8 utf8_general_ci
  11659. 1.0000 text utf8 utf8_general_ci
  11660. SELECT DISTINCT
  11661. CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH AS COL_CML,
  11662. DATA_TYPE,
  11663. CHARACTER_SET_NAME,
  11664. COLLATION_NAME
  11665. FROM information_schema.columns
  11666. WHERE CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH <> 1
  11667. ORDER BY CHARACTER_SET_NAME, COLLATION_NAME, COL_CML;
  11668. COL_CML DATA_TYPE CHARACTER_SET_NAME COLLATION_NAME
  11669. 2.0000 char ucs2 ucs2_general_ci
  11670. 2.0000 longtext ucs2 ucs2_general_ci
  11671. 2.0000 varchar ucs2 ucs2_general_ci
  11672. 2.0079 tinytext ucs2 ucs2_general_ci
  11673. 3.0000 char utf8 utf8_bin
  11674. 3.0000 enum utf8 utf8_bin
  11675. 3.0000 char utf8 utf8_general_ci
  11676. 3.0000 enum utf8 utf8_general_ci
  11677. 3.0000 set utf8 utf8_general_ci
  11678. 3.0000 varchar utf8 utf8_general_ci
  11679. SELECT DISTINCT
  11680. CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH AS COL_CML,
  11681. DATA_TYPE,
  11682. CHARACTER_SET_NAME,
  11683. COLLATION_NAME
  11684. FROM information_schema.columns
  11685. WHERE CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH IS NULL
  11686. ORDER BY CHARACTER_SET_NAME, COLLATION_NAME, COL_CML;
  11687. COL_CML DATA_TYPE CHARACTER_SET_NAME COLLATION_NAME
  11688. NULL bigint NULL NULL
  11689. NULL bit NULL NULL
  11690. NULL date NULL NULL
  11691. NULL datetime NULL NULL
  11692. NULL decimal NULL NULL
  11693. NULL double NULL NULL
  11694. NULL double unsigned NULL NULL
  11695. NULL double unsigned zerofill NULL NULL
  11696. NULL float NULL NULL
  11697. NULL float unsigned NULL NULL
  11698. NULL float unsigned zerofill NULL NULL
  11699. NULL int NULL NULL
  11700. NULL mediumint NULL NULL
  11701. NULL smallint NULL NULL
  11702. NULL time NULL NULL
  11703. NULL timestamp NULL NULL
  11704. NULL tinyint NULL NULL
  11705. NULL year NULL NULL
  11706. NULL varchar latin1 latin1_bin
  11707. --> CHAR(0) is allowed (see manual), and here both CHARACHTER_* values
  11708. --> are 0, which is intended behavior, and the result of 0 / 0 IS NULL
  11709. SELECT CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH AS COL_CML,
  11710. TABLE_SCHEMA,
  11711. TABLE_NAME,
  11712. COLUMN_NAME,
  11713. DATA_TYPE,
  11714. CHARACTER_MAXIMUM_LENGTH,
  11715. CHARACTER_OCTET_LENGTH,
  11716. CHARACTER_SET_NAME,
  11717. COLLATION_NAME,
  11718. COLUMN_TYPE
  11719. FROM information_schema.columns
  11720. ORDER BY TABLE_SCHEMA, TABLE_NAME, ORDINAL_POSITION;
  11721. COL_CML TABLE_SCHEMA TABLE_NAME COLUMN_NAME DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE
  11722. 1.0000 db_datadict t_6_406001 f1 char 10 10 latin1 latin1_swedish_ci char(10)
  11723. 1.0000 db_datadict t_6_406001 f2 text 65535 65535 latin1 latin1_swedish_ci text
  11724. NULL db_datadict t_6_406001 f3 date NULL NULL NULL NULL date
  11725. NULL db_datadict t_6_406001 f4 int NULL NULL NULL NULL int(11)
  11726. 1.0000 db_datadict t_6_406002 f1 char 10 10 latin1 latin1_swedish_ci char(10)
  11727. 1.0000 db_datadict t_6_406002 f2 text 65535 65535 latin1 latin1_swedish_ci text
  11728. NULL db_datadict t_6_406002 f3 date NULL NULL NULL NULL date
  11729. NULL db_datadict t_6_406002 f4 int NULL NULL NULL NULL int(11)
  11730. 3.0000 information_schema CHARACTER_SETS CHARACTER_SET_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11731. 3.0000 information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11732. 3.0000 information_schema CHARACTER_SETS DESCRIPTION varchar 60 180 utf8 utf8_general_ci varchar(60)
  11733. NULL information_schema CHARACTER_SETS MAXLEN bigint NULL NULL NULL NULL bigint(3)
  11734. 3.0000 information_schema COLLATIONS COLLATION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11735. 3.0000 information_schema COLLATIONS CHARACTER_SET_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11736. NULL information_schema COLLATIONS ID bigint NULL NULL NULL NULL bigint(11)
  11737. 3.0000 information_schema COLLATIONS IS_DEFAULT varchar 3 9 utf8 utf8_general_ci varchar(3)
  11738. 3.0000 information_schema COLLATIONS IS_COMPILED varchar 3 9 utf8 utf8_general_ci varchar(3)
  11739. NULL information_schema COLLATIONS SORTLEN bigint NULL NULL NULL NULL bigint(3)
  11740. 3.0000 information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11741. 3.0000 information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11742. 3.0000 information_schema COLUMNS TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11743. 3.0000 information_schema COLUMNS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11744. 3.0000 information_schema COLUMNS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11745. 3.0000 information_schema COLUMNS COLUMN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11746. NULL information_schema COLUMNS ORDINAL_POSITION bigint NULL NULL NULL NULL bigint(21) unsigned
  11747. 1.0000 information_schema COLUMNS COLUMN_DEFAULT longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  11748. 3.0000 information_schema COLUMNS IS_NULLABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  11749. 3.0000 information_schema COLUMNS DATA_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11750. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  11751. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  11752. NULL information_schema COLUMNS NUMERIC_PRECISION bigint NULL NULL NULL NULL bigint(21) unsigned
  11753. NULL information_schema COLUMNS NUMERIC_SCALE bigint NULL NULL NULL NULL bigint(21) unsigned
  11754. 3.0000 information_schema COLUMNS CHARACTER_SET_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11755. 3.0000 information_schema COLUMNS COLLATION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11756. 1.0000 information_schema COLUMNS COLUMN_TYPE longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  11757. 3.0000 information_schema COLUMNS COLUMN_KEY varchar 3 9 utf8 utf8_general_ci varchar(3)
  11758. 3.0000 information_schema COLUMNS EXTRA varchar 20 60 utf8 utf8_general_ci varchar(20)
  11759. 3.0000 information_schema COLUMNS PRIVILEGES varchar 80 240 utf8 utf8_general_ci varchar(80)
  11760. 3.0000 information_schema COLUMNS COLUMN_COMMENT varchar 255 765 utf8 utf8_general_ci varchar(255)
  11761. 3.0000 information_schema COLUMN_PRIVILEGES GRANTEE varchar 81 243 utf8 utf8_general_ci varchar(81)
  11762. 3.0000 information_schema COLUMN_PRIVILEGES TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11763. 3.0000 information_schema COLUMN_PRIVILEGES TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11764. 3.0000 information_schema COLUMN_PRIVILEGES TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11765. 3.0000 information_schema COLUMN_PRIVILEGES COLUMN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11766. 3.0000 information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11767. 3.0000 information_schema COLUMN_PRIVILEGES IS_GRANTABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  11768. 3.0000 information_schema ENGINES ENGINE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11769. 3.0000 information_schema ENGINES SUPPORT varchar 8 24 utf8 utf8_general_ci varchar(8)
  11770. 3.0000 information_schema ENGINES COMMENT varchar 80 240 utf8 utf8_general_ci varchar(80)
  11771. 3.0000 information_schema ENGINES TRANSACTIONS varchar 3 9 utf8 utf8_general_ci varchar(3)
  11772. 3.0000 information_schema ENGINES XA varchar 3 9 utf8 utf8_general_ci varchar(3)
  11773. 3.0000 information_schema ENGINES SAVEPOINTS varchar 3 9 utf8 utf8_general_ci varchar(3)
  11774. 3.0000 information_schema EVENTS EVENT_CATALOG varchar 64 192 utf8 utf8_general_ci varchar(64)
  11775. 3.0000 information_schema EVENTS EVENT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11776. 3.0000 information_schema EVENTS EVENT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11777. 3.0000 information_schema EVENTS DEFINER varchar 77 231 utf8 utf8_general_ci varchar(77)
  11778. 3.0000 information_schema EVENTS TIME_ZONE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11779. 3.0000 information_schema EVENTS EVENT_BODY varchar 8 24 utf8 utf8_general_ci varchar(8)
  11780. 1.0000 information_schema EVENTS EVENT_DEFINITION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  11781. 3.0000 information_schema EVENTS EVENT_TYPE varchar 9 27 utf8 utf8_general_ci varchar(9)
  11782. NULL information_schema EVENTS EXECUTE_AT datetime NULL NULL NULL NULL datetime
  11783. 3.0000 information_schema EVENTS INTERVAL_VALUE varchar 256 768 utf8 utf8_general_ci varchar(256)
  11784. 3.0000 information_schema EVENTS INTERVAL_FIELD varchar 18 54 utf8 utf8_general_ci varchar(18)
  11785. 1.0000 information_schema EVENTS SQL_MODE longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  11786. NULL information_schema EVENTS STARTS datetime NULL NULL NULL NULL datetime
  11787. NULL information_schema EVENTS ENDS datetime NULL NULL NULL NULL datetime
  11788. 3.0000 information_schema EVENTS STATUS varchar 18 54 utf8 utf8_general_ci varchar(18)
  11789. 3.0000 information_schema EVENTS ON_COMPLETION varchar 12 36 utf8 utf8_general_ci varchar(12)
  11790. NULL information_schema EVENTS CREATED datetime NULL NULL NULL NULL datetime
  11791. NULL information_schema EVENTS LAST_ALTERED datetime NULL NULL NULL NULL datetime
  11792. NULL information_schema EVENTS LAST_EXECUTED datetime NULL NULL NULL NULL datetime
  11793. 3.0000 information_schema EVENTS EVENT_COMMENT varchar 64 192 utf8 utf8_general_ci varchar(64)
  11794. NULL information_schema EVENTS ORIGINATOR bigint NULL NULL NULL NULL bigint(10)
  11795. 3.0000 information_schema EVENTS CHARACTER_SET_CLIENT varchar 32 96 utf8 utf8_general_ci varchar(32)
  11796. 3.0000 information_schema EVENTS COLLATION_CONNECTION varchar 32 96 utf8 utf8_general_ci varchar(32)
  11797. 3.0000 information_schema EVENTS DATABASE_COLLATION varchar 32 96 utf8 utf8_general_ci varchar(32)
  11798. NULL information_schema FILES FILE_ID bigint NULL NULL NULL NULL bigint(4)
  11799. 3.0000 information_schema FILES FILE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11800. 3.0000 information_schema FILES FILE_TYPE varchar 20 60 utf8 utf8_general_ci varchar(20)
  11801. 3.0000 information_schema FILES TABLESPACE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11802. 3.0000 information_schema FILES TABLE_CATALOG varchar 64 192 utf8 utf8_general_ci varchar(64)
  11803. 3.0000 information_schema FILES TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11804. 3.0000 information_schema FILES TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11805. 3.0000 information_schema FILES LOGFILE_GROUP_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11806. NULL information_schema FILES LOGFILE_GROUP_NUMBER bigint NULL NULL NULL NULL bigint(4)
  11807. 3.0000 information_schema FILES ENGINE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11808. 3.0000 information_schema FILES FULLTEXT_KEYS varchar 64 192 utf8 utf8_general_ci varchar(64)
  11809. NULL information_schema FILES DELETED_ROWS bigint NULL NULL NULL NULL bigint(4)
  11810. NULL information_schema FILES UPDATE_COUNT bigint NULL NULL NULL NULL bigint(4)
  11811. NULL information_schema FILES FREE_EXTENTS bigint NULL NULL NULL NULL bigint(4)
  11812. NULL information_schema FILES TOTAL_EXTENTS bigint NULL NULL NULL NULL bigint(4)
  11813. NULL information_schema FILES EXTENT_SIZE bigint NULL NULL NULL NULL bigint(4)
  11814. NULL information_schema FILES INITIAL_SIZE bigint NULL NULL NULL NULL bigint(21) unsigned
  11815. NULL information_schema FILES MAXIMUM_SIZE bigint NULL NULL NULL NULL bigint(21) unsigned
  11816. NULL information_schema FILES AUTOEXTEND_SIZE bigint NULL NULL NULL NULL bigint(21) unsigned
  11817. NULL information_schema FILES CREATION_TIME datetime NULL NULL NULL NULL datetime
  11818. NULL information_schema FILES LAST_UPDATE_TIME datetime NULL NULL NULL NULL datetime
  11819. NULL information_schema FILES LAST_ACCESS_TIME datetime NULL NULL NULL NULL datetime
  11820. NULL information_schema FILES RECOVER_TIME bigint NULL NULL NULL NULL bigint(4)
  11821. NULL information_schema FILES TRANSACTION_COUNTER bigint NULL NULL NULL NULL bigint(4)
  11822. NULL information_schema FILES VERSION bigint NULL NULL NULL NULL bigint(21) unsigned
  11823. 3.0000 information_schema FILES ROW_FORMAT varchar 10 30 utf8 utf8_general_ci varchar(10)
  11824. NULL information_schema FILES TABLE_ROWS bigint NULL NULL NULL NULL bigint(21) unsigned
  11825. NULL information_schema FILES AVG_ROW_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  11826. NULL information_schema FILES DATA_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  11827. NULL information_schema FILES MAX_DATA_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  11828. NULL information_schema FILES INDEX_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  11829. NULL information_schema FILES DATA_FREE bigint NULL NULL NULL NULL bigint(21) unsigned
  11830. NULL information_schema FILES CREATE_TIME datetime NULL NULL NULL NULL datetime
  11831. NULL information_schema FILES UPDATE_TIME datetime NULL NULL NULL NULL datetime
  11832. NULL information_schema FILES CHECK_TIME datetime NULL NULL NULL NULL datetime
  11833. NULL information_schema FILES CHECKSUM bigint NULL NULL NULL NULL bigint(21) unsigned
  11834. 3.0000 information_schema FILES STATUS varchar 20 60 utf8 utf8_general_ci varchar(20)
  11835. 3.0000 information_schema FILES EXTRA varchar 255 765 utf8 utf8_general_ci varchar(255)
  11836. 3.0000 information_schema GLOBAL_STATUS VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11837. 3.0000 information_schema GLOBAL_STATUS VARIABLE_VALUE varchar 20480 61440 utf8 utf8_general_ci varchar(20480)
  11838. 3.0000 information_schema GLOBAL_VARIABLES VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11839. 3.0000 information_schema GLOBAL_VARIABLES VARIABLE_VALUE varchar 20480 61440 utf8 utf8_general_ci varchar(20480)
  11840. 3.0000 information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11841. 3.0000 information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11842. 3.0000 information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11843. 3.0000 information_schema KEY_COLUMN_USAGE TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11844. 3.0000 information_schema KEY_COLUMN_USAGE TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11845. 3.0000 information_schema KEY_COLUMN_USAGE TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11846. 3.0000 information_schema KEY_COLUMN_USAGE COLUMN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11847. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION bigint NULL NULL NULL NULL bigint(10)
  11848. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT bigint NULL NULL NULL NULL bigint(10)
  11849. 3.0000 information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11850. 3.0000 information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11851. 3.0000 information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11852. 3.0000 information_schema PARTITIONS TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11853. 3.0000 information_schema PARTITIONS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11854. 3.0000 information_schema PARTITIONS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11855. 3.0000 information_schema PARTITIONS PARTITION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11856. 3.0000 information_schema PARTITIONS SUBPARTITION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11857. NULL information_schema PARTITIONS PARTITION_ORDINAL_POSITION bigint NULL NULL NULL NULL bigint(21) unsigned
  11858. NULL information_schema PARTITIONS SUBPARTITION_ORDINAL_POSITION bigint NULL NULL NULL NULL bigint(21) unsigned
  11859. 3.0000 information_schema PARTITIONS PARTITION_METHOD varchar 12 36 utf8 utf8_general_ci varchar(12)
  11860. 3.0000 information_schema PARTITIONS SUBPARTITION_METHOD varchar 12 36 utf8 utf8_general_ci varchar(12)
  11861. 1.0000 information_schema PARTITIONS PARTITION_EXPRESSION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  11862. 1.0000 information_schema PARTITIONS SUBPARTITION_EXPRESSION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  11863. 1.0000 information_schema PARTITIONS PARTITION_DESCRIPTION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  11864. NULL information_schema PARTITIONS TABLE_ROWS bigint NULL NULL NULL NULL bigint(21) unsigned
  11865. NULL information_schema PARTITIONS AVG_ROW_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  11866. NULL information_schema PARTITIONS DATA_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  11867. NULL information_schema PARTITIONS MAX_DATA_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  11868. NULL information_schema PARTITIONS INDEX_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  11869. NULL information_schema PARTITIONS DATA_FREE bigint NULL NULL NULL NULL bigint(21) unsigned
  11870. NULL information_schema PARTITIONS CREATE_TIME datetime NULL NULL NULL NULL datetime
  11871. NULL information_schema PARTITIONS UPDATE_TIME datetime NULL NULL NULL NULL datetime
  11872. NULL information_schema PARTITIONS CHECK_TIME datetime NULL NULL NULL NULL datetime
  11873. NULL information_schema PARTITIONS CHECKSUM bigint NULL NULL NULL NULL bigint(21) unsigned
  11874. 3.0000 information_schema PARTITIONS PARTITION_COMMENT varchar 80 240 utf8 utf8_general_ci varchar(80)
  11875. 3.0000 information_schema PARTITIONS NODEGROUP varchar 12 36 utf8 utf8_general_ci varchar(12)
  11876. 3.0000 information_schema PARTITIONS TABLESPACE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11877. 3.0000 information_schema PLUGINS PLUGIN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11878. 3.0000 information_schema PLUGINS PLUGIN_VERSION varchar 20 60 utf8 utf8_general_ci varchar(20)
  11879. 3.0000 information_schema PLUGINS PLUGIN_STATUS varchar 10 30 utf8 utf8_general_ci varchar(10)
  11880. 3.0000 information_schema PLUGINS PLUGIN_TYPE varchar 80 240 utf8 utf8_general_ci varchar(80)
  11881. 3.0000 information_schema PLUGINS PLUGIN_TYPE_VERSION varchar 20 60 utf8 utf8_general_ci varchar(20)
  11882. 3.0000 information_schema PLUGINS PLUGIN_LIBRARY varchar 64 192 utf8 utf8_general_ci varchar(64)
  11883. 3.0000 information_schema PLUGINS PLUGIN_LIBRARY_VERSION varchar 20 60 utf8 utf8_general_ci varchar(20)
  11884. 3.0000 information_schema PLUGINS PLUGIN_AUTHOR varchar 64 192 utf8 utf8_general_ci varchar(64)
  11885. 1.0000 information_schema PLUGINS PLUGIN_DESCRIPTION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  11886. 3.0000 information_schema PLUGINS PLUGIN_LICENSE varchar 80 240 utf8 utf8_general_ci varchar(80)
  11887. NULL information_schema PROCESSLIST ID bigint NULL NULL NULL NULL bigint(4)
  11888. 3.0000 information_schema PROCESSLIST USER varchar 16 48 utf8 utf8_general_ci varchar(16)
  11889. 3.0000 information_schema PROCESSLIST HOST varchar 64 192 utf8 utf8_general_ci varchar(64)
  11890. 3.0000 information_schema PROCESSLIST DB varchar 64 192 utf8 utf8_general_ci varchar(64)
  11891. 3.0000 information_schema PROCESSLIST COMMAND varchar 16 48 utf8 utf8_general_ci varchar(16)
  11892. NULL information_schema PROCESSLIST TIME bigint NULL NULL NULL NULL bigint(7)
  11893. 3.0000 information_schema PROCESSLIST STATE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11894. 1.0000 information_schema PROCESSLIST INFO longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  11895. 3.0000 information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11896. 3.0000 information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11897. 3.0000 information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11898. 3.0000 information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11899. 3.0000 information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11900. 3.0000 information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11901. 3.0000 information_schema REFERENTIAL_CONSTRAINTS MATCH_OPTION varchar 64 192 utf8 utf8_general_ci varchar(64)
  11902. 3.0000 information_schema REFERENTIAL_CONSTRAINTS UPDATE_RULE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11903. 3.0000 information_schema REFERENTIAL_CONSTRAINTS DELETE_RULE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11904. 3.0000 information_schema REFERENTIAL_CONSTRAINTS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11905. 3.0000 information_schema REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11906. 3.0000 information_schema ROUTINES SPECIFIC_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11907. 3.0000 information_schema ROUTINES ROUTINE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11908. 3.0000 information_schema ROUTINES ROUTINE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11909. 3.0000 information_schema ROUTINES ROUTINE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11910. 3.0000 information_schema ROUTINES ROUTINE_TYPE varchar 9 27 utf8 utf8_general_ci varchar(9)
  11911. 3.0000 information_schema ROUTINES DTD_IDENTIFIER varchar 64 192 utf8 utf8_general_ci varchar(64)
  11912. 3.0000 information_schema ROUTINES ROUTINE_BODY varchar 8 24 utf8 utf8_general_ci varchar(8)
  11913. 1.0000 information_schema ROUTINES ROUTINE_DEFINITION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  11914. 3.0000 information_schema ROUTINES EXTERNAL_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11915. 3.0000 information_schema ROUTINES EXTERNAL_LANGUAGE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11916. 3.0000 information_schema ROUTINES PARAMETER_STYLE varchar 8 24 utf8 utf8_general_ci varchar(8)
  11917. 3.0000 information_schema ROUTINES IS_DETERMINISTIC varchar 3 9 utf8 utf8_general_ci varchar(3)
  11918. 3.0000 information_schema ROUTINES SQL_DATA_ACCESS varchar 64 192 utf8 utf8_general_ci varchar(64)
  11919. 3.0000 information_schema ROUTINES SQL_PATH varchar 64 192 utf8 utf8_general_ci varchar(64)
  11920. 3.0000 information_schema ROUTINES SECURITY_TYPE varchar 7 21 utf8 utf8_general_ci varchar(7)
  11921. NULL information_schema ROUTINES CREATED datetime NULL NULL NULL NULL datetime
  11922. NULL information_schema ROUTINES LAST_ALTERED datetime NULL NULL NULL NULL datetime
  11923. 1.0000 information_schema ROUTINES SQL_MODE longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  11924. 3.0000 information_schema ROUTINES ROUTINE_COMMENT varchar 64 192 utf8 utf8_general_ci varchar(64)
  11925. 3.0000 information_schema ROUTINES DEFINER varchar 77 231 utf8 utf8_general_ci varchar(77)
  11926. 3.0000 information_schema ROUTINES CHARACTER_SET_CLIENT varchar 32 96 utf8 utf8_general_ci varchar(32)
  11927. 3.0000 information_schema ROUTINES COLLATION_CONNECTION varchar 32 96 utf8 utf8_general_ci varchar(32)
  11928. 3.0000 information_schema ROUTINES DATABASE_COLLATION varchar 32 96 utf8 utf8_general_ci varchar(32)
  11929. 3.0000 information_schema SCHEMATA CATALOG_NAME varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11930. 3.0000 information_schema SCHEMATA SCHEMA_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11931. 3.0000 information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11932. 3.0000 information_schema SCHEMATA DEFAULT_COLLATION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11933. 3.0000 information_schema SCHEMATA SQL_PATH varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11934. 3.0000 information_schema SCHEMA_PRIVILEGES GRANTEE varchar 81 243 utf8 utf8_general_ci varchar(81)
  11935. 3.0000 information_schema SCHEMA_PRIVILEGES TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11936. 3.0000 information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11937. 3.0000 information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11938. 3.0000 information_schema SCHEMA_PRIVILEGES IS_GRANTABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  11939. 3.0000 information_schema SESSION_STATUS VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11940. 3.0000 information_schema SESSION_STATUS VARIABLE_VALUE varchar 20480 61440 utf8 utf8_general_ci varchar(20480)
  11941. 3.0000 information_schema SESSION_VARIABLES VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11942. 3.0000 information_schema SESSION_VARIABLES VARIABLE_VALUE varchar 20480 61440 utf8 utf8_general_ci varchar(20480)
  11943. 3.0000 information_schema STATISTICS TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11944. 3.0000 information_schema STATISTICS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11945. 3.0000 information_schema STATISTICS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11946. NULL information_schema STATISTICS NON_UNIQUE bigint NULL NULL NULL NULL bigint(1)
  11947. 3.0000 information_schema STATISTICS INDEX_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11948. 3.0000 information_schema STATISTICS INDEX_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11949. NULL information_schema STATISTICS SEQ_IN_INDEX bigint NULL NULL NULL NULL bigint(2)
  11950. 3.0000 information_schema STATISTICS COLUMN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11951. 3.0000 information_schema STATISTICS COLLATION varchar 1 3 utf8 utf8_general_ci varchar(1)
  11952. NULL information_schema STATISTICS CARDINALITY bigint NULL NULL NULL NULL bigint(21)
  11953. NULL information_schema STATISTICS SUB_PART bigint NULL NULL NULL NULL bigint(3)
  11954. 3.0000 information_schema STATISTICS PACKED varchar 10 30 utf8 utf8_general_ci varchar(10)
  11955. 3.0000 information_schema STATISTICS NULLABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  11956. 3.0000 information_schema STATISTICS INDEX_TYPE varchar 16 48 utf8 utf8_general_ci varchar(16)
  11957. 3.0000 information_schema STATISTICS COMMENT varchar 16 48 utf8 utf8_general_ci varchar(16)
  11958. 3.0000 information_schema TABLES TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11959. 3.0000 information_schema TABLES TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11960. 3.0000 information_schema TABLES TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11961. 3.0000 information_schema TABLES TABLE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11962. 3.0000 information_schema TABLES ENGINE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11963. NULL information_schema TABLES VERSION bigint NULL NULL NULL NULL bigint(21) unsigned
  11964. 3.0000 information_schema TABLES ROW_FORMAT varchar 10 30 utf8 utf8_general_ci varchar(10)
  11965. NULL information_schema TABLES TABLE_ROWS bigint NULL NULL NULL NULL bigint(21) unsigned
  11966. NULL information_schema TABLES AVG_ROW_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  11967. NULL information_schema TABLES DATA_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  11968. NULL information_schema TABLES MAX_DATA_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  11969. NULL information_schema TABLES INDEX_LENGTH bigint NULL NULL NULL NULL bigint(21) unsigned
  11970. NULL information_schema TABLES DATA_FREE bigint NULL NULL NULL NULL bigint(21) unsigned
  11971. NULL information_schema TABLES AUTO_INCREMENT bigint NULL NULL NULL NULL bigint(21) unsigned
  11972. NULL information_schema TABLES CREATE_TIME datetime NULL NULL NULL NULL datetime
  11973. NULL information_schema TABLES UPDATE_TIME datetime NULL NULL NULL NULL datetime
  11974. NULL information_schema TABLES CHECK_TIME datetime NULL NULL NULL NULL datetime
  11975. 3.0000 information_schema TABLES TABLE_COLLATION varchar 64 192 utf8 utf8_general_ci varchar(64)
  11976. NULL information_schema TABLES CHECKSUM bigint NULL NULL NULL NULL bigint(21) unsigned
  11977. 3.0000 information_schema TABLES CREATE_OPTIONS varchar 255 765 utf8 utf8_general_ci varchar(255)
  11978. 3.0000 information_schema TABLES TABLE_COMMENT varchar 80 240 utf8 utf8_general_ci varchar(80)
  11979. 3.0000 information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11980. 3.0000 information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11981. 3.0000 information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11982. 3.0000 information_schema TABLE_CONSTRAINTS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11983. 3.0000 information_schema TABLE_CONSTRAINTS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11984. 3.0000 information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11985. 3.0000 information_schema TABLE_PRIVILEGES GRANTEE varchar 81 243 utf8 utf8_general_ci varchar(81)
  11986. 3.0000 information_schema TABLE_PRIVILEGES TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11987. 3.0000 information_schema TABLE_PRIVILEGES TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11988. 3.0000 information_schema TABLE_PRIVILEGES TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11989. 3.0000 information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11990. 3.0000 information_schema TABLE_PRIVILEGES IS_GRANTABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  11991. 3.0000 information_schema TRIGGERS TRIGGER_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11992. 3.0000 information_schema TRIGGERS TRIGGER_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11993. 3.0000 information_schema TRIGGERS TRIGGER_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11994. 3.0000 information_schema TRIGGERS EVENT_MANIPULATION varchar 6 18 utf8 utf8_general_ci varchar(6)
  11995. 3.0000 information_schema TRIGGERS EVENT_OBJECT_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11996. 3.0000 information_schema TRIGGERS EVENT_OBJECT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11997. 3.0000 information_schema TRIGGERS EVENT_OBJECT_TABLE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11998. NULL information_schema TRIGGERS ACTION_ORDER bigint NULL NULL NULL NULL bigint(4)
  11999. 1.0000 information_schema TRIGGERS ACTION_CONDITION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12000. 1.0000 information_schema TRIGGERS ACTION_STATEMENT longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12001. 3.0000 information_schema TRIGGERS ACTION_ORIENTATION varchar 9 27 utf8 utf8_general_ci varchar(9)
  12002. 3.0000 information_schema TRIGGERS ACTION_TIMING varchar 6 18 utf8 utf8_general_ci varchar(6)
  12003. 3.0000 information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12004. 3.0000 information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12005. 3.0000 information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW varchar 3 9 utf8 utf8_general_ci varchar(3)
  12006. 3.0000 information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW varchar 3 9 utf8 utf8_general_ci varchar(3)
  12007. NULL information_schema TRIGGERS CREATED datetime NULL NULL NULL NULL datetime
  12008. 1.0000 information_schema TRIGGERS SQL_MODE longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12009. 1.0000 information_schema TRIGGERS DEFINER longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12010. 3.0000 information_schema TRIGGERS CHARACTER_SET_CLIENT varchar 32 96 utf8 utf8_general_ci varchar(32)
  12011. 3.0000 information_schema TRIGGERS COLLATION_CONNECTION varchar 32 96 utf8 utf8_general_ci varchar(32)
  12012. 3.0000 information_schema TRIGGERS DATABASE_COLLATION varchar 32 96 utf8 utf8_general_ci varchar(32)
  12013. 3.0000 information_schema USER_PRIVILEGES GRANTEE varchar 81 243 utf8 utf8_general_ci varchar(81)
  12014. 3.0000 information_schema USER_PRIVILEGES TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12015. 3.0000 information_schema USER_PRIVILEGES PRIVILEGE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12016. 3.0000 information_schema USER_PRIVILEGES IS_GRANTABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  12017. 3.0000 information_schema VIEWS TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12018. 3.0000 information_schema VIEWS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12019. 3.0000 information_schema VIEWS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12020. 1.0000 information_schema VIEWS VIEW_DEFINITION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12021. 3.0000 information_schema VIEWS CHECK_OPTION varchar 8 24 utf8 utf8_general_ci varchar(8)
  12022. 3.0000 information_schema VIEWS IS_UPDATABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  12023. 3.0000 information_schema VIEWS DEFINER varchar 77 231 utf8 utf8_general_ci varchar(77)
  12024. 3.0000 information_schema VIEWS SECURITY_TYPE varchar 7 21 utf8 utf8_general_ci varchar(7)
  12025. 3.0000 information_schema VIEWS CHARACTER_SET_CLIENT varchar 32 96 utf8 utf8_general_ci varchar(32)
  12026. 3.0000 information_schema VIEWS COLLATION_CONNECTION varchar 32 96 utf8 utf8_general_ci varchar(32)
  12027. 3.0000 mysql columns_priv Host char 60 180 utf8 utf8_bin char(60)
  12028. 3.0000 mysql columns_priv Db char 64 192 utf8 utf8_bin char(64)
  12029. 3.0000 mysql columns_priv User char 16 48 utf8 utf8_bin char(16)
  12030. 3.0000 mysql columns_priv Table_name char 64 192 utf8 utf8_bin char(64)
  12031. 3.0000 mysql columns_priv Column_name char 64 192 utf8 utf8_bin char(64)
  12032. NULL mysql columns_priv Timestamp timestamp NULL NULL NULL NULL timestamp
  12033. 3.0000 mysql columns_priv Column_priv set 31 93 utf8 utf8_general_ci set('Select','Insert','Update','References')
  12034. 3.0000 mysql db Host char 60 180 utf8 utf8_bin char(60)
  12035. 3.0000 mysql db Db char 64 192 utf8 utf8_bin char(64)
  12036. 3.0000 mysql db User char 16 48 utf8 utf8_bin char(16)
  12037. 3.0000 mysql db Select_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12038. 3.0000 mysql db Insert_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12039. 3.0000 mysql db Update_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12040. 3.0000 mysql db Delete_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12041. 3.0000 mysql db Create_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12042. 3.0000 mysql db Drop_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12043. 3.0000 mysql db Grant_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12044. 3.0000 mysql db References_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12045. 3.0000 mysql db Index_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12046. 3.0000 mysql db Alter_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12047. 3.0000 mysql db Create_tmp_table_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12048. 3.0000 mysql db Lock_tables_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12049. 3.0000 mysql db Create_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12050. 3.0000 mysql db Show_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12051. 3.0000 mysql db Create_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12052. 3.0000 mysql db Alter_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12053. 3.0000 mysql db Execute_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12054. 3.0000 mysql db Event_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12055. 3.0000 mysql db Trigger_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12056. 3.0000 mysql event db char 64 192 utf8 utf8_bin char(64)
  12057. 3.0000 mysql event name char 64 192 utf8 utf8_general_ci char(64)
  12058. 1.0000 mysql event body longblob 4294967295 4294967295 NULL NULL longblob
  12059. 3.0000 mysql event definer char 77 231 utf8 utf8_bin char(77)
  12060. NULL mysql event execute_at datetime NULL NULL NULL NULL datetime
  12061. NULL mysql event interval_value int NULL NULL NULL NULL int(11)
  12062. 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')
  12063. NULL mysql event created timestamp NULL NULL NULL NULL timestamp
  12064. NULL mysql event modified timestamp NULL NULL NULL NULL timestamp
  12065. NULL mysql event last_executed datetime NULL NULL NULL NULL datetime
  12066. NULL mysql event starts datetime NULL NULL NULL NULL datetime
  12067. NULL mysql event ends datetime NULL NULL NULL NULL datetime
  12068. 3.0000 mysql event status enum 18 54 utf8 utf8_general_ci enum('ENABLED','DISABLED','SLAVESIDE_DISABLED')
  12069. 3.0000 mysql event on_completion enum 8 24 utf8 utf8_general_ci enum('DROP','PRESERVE')
  12070. 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')
  12071. 3.0000 mysql event comment char 64 192 utf8 utf8_bin char(64)
  12072. NULL mysql event originator int NULL NULL NULL NULL int(10)
  12073. 1.0000 mysql event time_zone char 64 64 latin1 latin1_swedish_ci char(64)
  12074. 3.0000 mysql event character_set_client char 32 96 utf8 utf8_bin char(32)
  12075. 3.0000 mysql event collation_connection char 32 96 utf8 utf8_bin char(32)
  12076. 3.0000 mysql event db_collation char 32 96 utf8 utf8_bin char(32)
  12077. 1.0000 mysql event body_utf8 longblob 4294967295 4294967295 NULL NULL longblob
  12078. 3.0000 mysql func name char 64 192 utf8 utf8_bin char(64)
  12079. NULL mysql func ret tinyint NULL NULL NULL NULL tinyint(1)
  12080. 3.0000 mysql func dl char 128 384 utf8 utf8_bin char(128)
  12081. 3.0000 mysql func type enum 9 27 utf8 utf8_general_ci enum('function','aggregate')
  12082. NULL mysql general_log event_time timestamp NULL NULL NULL NULL timestamp
  12083. 1.0000 mysql general_log user_host mediumtext 16777215 16777215 utf8 utf8_general_ci mediumtext
  12084. NULL mysql general_log thread_id int NULL NULL NULL NULL int(11)
  12085. NULL mysql general_log server_id int NULL NULL NULL NULL int(11)
  12086. 3.0000 mysql general_log command_type varchar 64 192 utf8 utf8_general_ci varchar(64)
  12087. 1.0000 mysql general_log argument mediumtext 16777215 16777215 utf8 utf8_general_ci mediumtext
  12088. NULL mysql help_category help_category_id smallint NULL NULL NULL NULL smallint(5) unsigned
  12089. 3.0000 mysql help_category name char 64 192 utf8 utf8_general_ci char(64)
  12090. NULL mysql help_category parent_category_id smallint NULL NULL NULL NULL smallint(5) unsigned
  12091. 3.0000 mysql help_category url char 128 384 utf8 utf8_general_ci char(128)
  12092. NULL mysql help_keyword help_keyword_id int NULL NULL NULL NULL int(10) unsigned
  12093. 3.0000 mysql help_keyword name char 64 192 utf8 utf8_general_ci char(64)
  12094. NULL mysql help_relation help_topic_id int NULL NULL NULL NULL int(10) unsigned
  12095. NULL mysql help_relation help_keyword_id int NULL NULL NULL NULL int(10) unsigned
  12096. NULL mysql help_topic help_topic_id int NULL NULL NULL NULL int(10) unsigned
  12097. 3.0000 mysql help_topic name char 64 192 utf8 utf8_general_ci char(64)
  12098. NULL mysql help_topic help_category_id smallint NULL NULL NULL NULL smallint(5) unsigned
  12099. 1.0000 mysql help_topic description text 65535 65535 utf8 utf8_general_ci text
  12100. 1.0000 mysql help_topic example text 65535 65535 utf8 utf8_general_ci text
  12101. 3.0000 mysql help_topic url char 128 384 utf8 utf8_general_ci char(128)
  12102. 3.0000 mysql host Host char 60 180 utf8 utf8_bin char(60)
  12103. 3.0000 mysql host Db char 64 192 utf8 utf8_bin char(64)
  12104. 3.0000 mysql host Select_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12105. 3.0000 mysql host Insert_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12106. 3.0000 mysql host Update_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12107. 3.0000 mysql host Delete_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12108. 3.0000 mysql host Create_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12109. 3.0000 mysql host Drop_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12110. 3.0000 mysql host Grant_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12111. 3.0000 mysql host References_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12112. 3.0000 mysql host Index_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12113. 3.0000 mysql host Alter_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12114. 3.0000 mysql host Create_tmp_table_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12115. 3.0000 mysql host Lock_tables_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12116. 3.0000 mysql host Create_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12117. 3.0000 mysql host Show_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12118. 3.0000 mysql host Create_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12119. 3.0000 mysql host Alter_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12120. 3.0000 mysql host Execute_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12121. 3.0000 mysql host Trigger_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12122. NULL mysql ndb_apply_status server_id int NULL NULL NULL NULL int(10) unsigned
  12123. NULL mysql ndb_apply_status epoch bigint NULL NULL NULL NULL bigint(20) unsigned
  12124. 1.0000 mysql ndb_apply_status log_name varchar 255 255 latin1 latin1_bin varchar(255)
  12125. NULL mysql ndb_apply_status start_pos bigint NULL NULL NULL NULL bigint(20) unsigned
  12126. NULL mysql ndb_apply_status end_pos bigint NULL NULL NULL NULL bigint(20) unsigned
  12127. NULL mysql ndb_binlog_index Position bigint NULL NULL NULL NULL bigint(20) unsigned
  12128. 1.0000 mysql ndb_binlog_index File varchar 255 255 latin1 latin1_swedish_ci varchar(255)
  12129. NULL mysql ndb_binlog_index epoch bigint NULL NULL NULL NULL bigint(20) unsigned
  12130. NULL mysql ndb_binlog_index inserts bigint NULL NULL NULL NULL bigint(20) unsigned
  12131. NULL mysql ndb_binlog_index updates bigint NULL NULL NULL NULL bigint(20) unsigned
  12132. NULL mysql ndb_binlog_index deletes bigint NULL NULL NULL NULL bigint(20) unsigned
  12133. NULL mysql ndb_binlog_index schemaops bigint NULL NULL NULL NULL bigint(20) unsigned
  12134. 3.0000 mysql plugin name char 64 192 utf8 utf8_bin char(64)
  12135. 3.0000 mysql plugin dl char 128 384 utf8 utf8_bin char(128)
  12136. 3.0000 mysql proc db char 64 192 utf8 utf8_bin char(64)
  12137. 3.0000 mysql proc name char 64 192 utf8 utf8_general_ci char(64)
  12138. 3.0000 mysql proc type enum 9 27 utf8 utf8_general_ci enum('FUNCTION','PROCEDURE')
  12139. 3.0000 mysql proc specific_name char 64 192 utf8 utf8_general_ci char(64)
  12140. 3.0000 mysql proc language enum 3 9 utf8 utf8_general_ci enum('SQL')
  12141. 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')
  12142. 3.0000 mysql proc is_deterministic enum 3 9 utf8 utf8_general_ci enum('YES','NO')
  12143. 3.0000 mysql proc security_type enum 7 21 utf8 utf8_general_ci enum('INVOKER','DEFINER')
  12144. 1.0000 mysql proc param_list blob 65535 65535 NULL NULL blob
  12145. 3.0000 mysql proc returns char 64 192 utf8 utf8_general_ci char(64)
  12146. 1.0000 mysql proc body longblob 4294967295 4294967295 NULL NULL longblob
  12147. 3.0000 mysql proc definer char 77 231 utf8 utf8_bin char(77)
  12148. NULL mysql proc created timestamp NULL NULL NULL NULL timestamp
  12149. NULL mysql proc modified timestamp NULL NULL NULL NULL timestamp
  12150. 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')
  12151. 3.0000 mysql proc comment char 64 192 utf8 utf8_bin char(64)
  12152. 3.0000 mysql proc character_set_client char 32 96 utf8 utf8_bin char(32)
  12153. 3.0000 mysql proc collation_connection char 32 96 utf8 utf8_bin char(32)
  12154. 3.0000 mysql proc db_collation char 32 96 utf8 utf8_bin char(32)
  12155. 1.0000 mysql proc body_utf8 longblob 4294967295 4294967295 NULL NULL longblob
  12156. 3.0000 mysql procs_priv Host char 60 180 utf8 utf8_bin char(60)
  12157. 3.0000 mysql procs_priv Db char 64 192 utf8 utf8_bin char(64)
  12158. 3.0000 mysql procs_priv User char 16 48 utf8 utf8_bin char(16)
  12159. 3.0000 mysql procs_priv Routine_name char 64 192 utf8 utf8_bin char(64)
  12160. 3.0000 mysql procs_priv Routine_type enum 9 27 utf8 utf8_bin enum('FUNCTION','PROCEDURE')
  12161. 3.0000 mysql procs_priv Grantor char 77 231 utf8 utf8_bin char(77)
  12162. 3.0000 mysql procs_priv Proc_priv set 27 81 utf8 utf8_general_ci set('Execute','Alter Routine','Grant')
  12163. NULL mysql procs_priv Timestamp timestamp NULL NULL NULL NULL timestamp
  12164. 3.0000 mysql servers Server_name char 64 192 utf8 utf8_general_ci char(64)
  12165. 3.0000 mysql servers Host char 64 192 utf8 utf8_general_ci char(64)
  12166. 3.0000 mysql servers Db char 64 192 utf8 utf8_general_ci char(64)
  12167. 3.0000 mysql servers Username char 64 192 utf8 utf8_general_ci char(64)
  12168. 3.0000 mysql servers Password char 64 192 utf8 utf8_general_ci char(64)
  12169. NULL mysql servers Port int NULL NULL NULL NULL int(4)
  12170. 3.0000 mysql servers Socket char 64 192 utf8 utf8_general_ci char(64)
  12171. 3.0000 mysql servers Wrapper char 64 192 utf8 utf8_general_ci char(64)
  12172. 3.0000 mysql servers Owner char 64 192 utf8 utf8_general_ci char(64)
  12173. NULL mysql slow_log start_time timestamp NULL NULL NULL NULL timestamp
  12174. 1.0000 mysql slow_log user_host mediumtext 16777215 16777215 utf8 utf8_general_ci mediumtext
  12175. NULL mysql slow_log query_time time NULL NULL NULL NULL time
  12176. NULL mysql slow_log lock_time time NULL NULL NULL NULL time
  12177. NULL mysql slow_log rows_sent int NULL NULL NULL NULL int(11)
  12178. NULL mysql slow_log rows_examined int NULL NULL NULL NULL int(11)
  12179. 3.0000 mysql slow_log db varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12180. NULL mysql slow_log last_insert_id int NULL NULL NULL NULL int(11)
  12181. NULL mysql slow_log insert_id int NULL NULL NULL NULL int(11)
  12182. NULL mysql slow_log server_id int NULL NULL NULL NULL int(11)
  12183. 1.0000 mysql slow_log sql_text mediumtext 16777215 16777215 utf8 utf8_general_ci mediumtext
  12184. 3.0000 mysql tables_priv Host char 60 180 utf8 utf8_bin char(60)
  12185. 3.0000 mysql tables_priv Db char 64 192 utf8 utf8_bin char(64)
  12186. 3.0000 mysql tables_priv User char 16 48 utf8 utf8_bin char(16)
  12187. 3.0000 mysql tables_priv Table_name char 64 192 utf8 utf8_bin char(64)
  12188. 3.0000 mysql tables_priv Grantor char 77 231 utf8 utf8_bin char(77)
  12189. NULL mysql tables_priv Timestamp timestamp NULL NULL NULL NULL timestamp
  12190. 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')
  12191. 3.0000 mysql tables_priv Column_priv set 31 93 utf8 utf8_general_ci set('Select','Insert','Update','References')
  12192. NULL mysql time_zone Time_zone_id int NULL NULL NULL NULL int(10) unsigned
  12193. 3.0000 mysql time_zone Use_leap_seconds enum 1 3 utf8 utf8_general_ci enum('Y','N')
  12194. NULL mysql time_zone_leap_second Transition_time bigint NULL NULL NULL NULL bigint(20)
  12195. NULL mysql time_zone_leap_second Correction int NULL NULL NULL NULL int(11)
  12196. 3.0000 mysql time_zone_name Name char 64 192 utf8 utf8_general_ci char(64)
  12197. NULL mysql time_zone_name Time_zone_id int NULL NULL NULL NULL int(10) unsigned
  12198. NULL mysql time_zone_transition Time_zone_id int NULL NULL NULL NULL int(10) unsigned
  12199. NULL mysql time_zone_transition Transition_time bigint NULL NULL NULL NULL bigint(20)
  12200. NULL mysql time_zone_transition Transition_type_id int NULL NULL NULL NULL int(10) unsigned
  12201. NULL mysql time_zone_transition_type Time_zone_id int NULL NULL NULL NULL int(10) unsigned
  12202. NULL mysql time_zone_transition_type Transition_type_id int NULL NULL NULL NULL int(10) unsigned
  12203. NULL mysql time_zone_transition_type Offset int NULL NULL NULL NULL int(11)
  12204. NULL mysql time_zone_transition_type Is_DST tinyint NULL NULL NULL NULL tinyint(3) unsigned
  12205. 3.0000 mysql time_zone_transition_type Abbreviation char 8 24 utf8 utf8_general_ci char(8)
  12206. 3.0000 mysql user Host char 60 180 utf8 utf8_bin char(60)
  12207. 3.0000 mysql user User char 16 48 utf8 utf8_bin char(16)
  12208. 1.0000 mysql user Password char 41 41 latin1 latin1_bin char(41)
  12209. 3.0000 mysql user Select_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12210. 3.0000 mysql user Insert_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12211. 3.0000 mysql user Update_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12212. 3.0000 mysql user Delete_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12213. 3.0000 mysql user Create_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12214. 3.0000 mysql user Drop_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12215. 3.0000 mysql user Reload_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12216. 3.0000 mysql user Shutdown_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12217. 3.0000 mysql user Process_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12218. 3.0000 mysql user File_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12219. 3.0000 mysql user Grant_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12220. 3.0000 mysql user References_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12221. 3.0000 mysql user Index_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12222. 3.0000 mysql user Alter_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12223. 3.0000 mysql user Show_db_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12224. 3.0000 mysql user Super_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12225. 3.0000 mysql user Create_tmp_table_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12226. 3.0000 mysql user Lock_tables_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12227. 3.0000 mysql user Execute_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12228. 3.0000 mysql user Repl_slave_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12229. 3.0000 mysql user Repl_client_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12230. 3.0000 mysql user Create_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12231. 3.0000 mysql user Show_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12232. 3.0000 mysql user Create_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12233. 3.0000 mysql user Alter_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12234. 3.0000 mysql user Create_user_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12235. 3.0000 mysql user Event_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12236. 3.0000 mysql user Trigger_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12237. 3.0000 mysql user ssl_type enum 9 27 utf8 utf8_general_ci enum('','ANY','X509','SPECIFIED')
  12238. 1.0000 mysql user ssl_cipher blob 65535 65535 NULL NULL blob
  12239. 1.0000 mysql user x509_issuer blob 65535 65535 NULL NULL blob
  12240. 1.0000 mysql user x509_subject blob 65535 65535 NULL NULL blob
  12241. NULL mysql user max_questions int NULL NULL NULL NULL int(11) unsigned
  12242. NULL mysql user max_updates int NULL NULL NULL NULL int(11) unsigned
  12243. NULL mysql user max_connections int NULL NULL NULL NULL int(11) unsigned
  12244. NULL mysql user max_user_connections int NULL NULL NULL NULL int(11) unsigned
  12245. 1.0000 test t1 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12246. 1.0000 test t1 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12247. NULL test t1 f3 date NULL NULL NULL NULL date
  12248. NULL test t1 f4 int NULL NULL NULL NULL int(11)
  12249. 1.0000 test t1 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12250. NULL test t1 f6 int NULL NULL NULL NULL int(11)
  12251. 1.0000 test t10 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12252. 1.0000 test t10 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12253. NULL test t10 f3 date NULL NULL NULL NULL date
  12254. NULL test t10 f4 int NULL NULL NULL NULL int(11)
  12255. 1.0000 test t10 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12256. NULL test t10 f6 int NULL NULL NULL NULL int(11)
  12257. 1.0000 test t11 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12258. 1.0000 test t11 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12259. NULL test t11 f3 date NULL NULL NULL NULL date
  12260. NULL test t11 f4 int NULL NULL NULL NULL int(11)
  12261. 1.0000 test t11 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12262. NULL test t11 f6 int NULL NULL NULL NULL int(11)
  12263. 1.0000 test t2 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12264. 1.0000 test t2 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12265. NULL test t2 f3 date NULL NULL NULL NULL date
  12266. NULL test t2 f4 int NULL NULL NULL NULL int(11)
  12267. 1.0000 test t2 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12268. NULL test t2 f6 int NULL NULL NULL NULL int(11)
  12269. 1.0000 test t3 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12270. 1.0000 test t3 f2 char 20 20 latin1 latin1_swedish_ci char(20)
  12271. NULL test t3 f3 int NULL NULL NULL NULL int(11)
  12272. 1.0000 test t4 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12273. 1.0000 test t4 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12274. NULL test t4 f3 date NULL NULL NULL NULL date
  12275. NULL test t4 f4 int NULL NULL NULL NULL int(11)
  12276. 1.0000 test t4 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12277. NULL test t4 f6 int NULL NULL NULL NULL int(11)
  12278. 1.0000 test t7 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12279. 1.0000 test t7 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12280. NULL test t7 f3 date NULL NULL NULL NULL date
  12281. NULL test t7 f4 int NULL NULL NULL NULL int(11)
  12282. 1.0000 test t8 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12283. 1.0000 test t8 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12284. NULL test t8 f3 date NULL NULL NULL NULL date
  12285. NULL test t8 f4 int NULL NULL NULL NULL int(11)
  12286. NULL test t9 f1 int NULL NULL NULL NULL int(11)
  12287. 1.0000 test t9 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12288. NULL test t9 f3 int NULL NULL NULL NULL int(11)
  12289. 1.0000 test tb1 f1 char 1 1 latin1 latin1_swedish_ci char(1)
  12290. 1.0000 test tb1 f2 char 1 1 latin1 latin1_bin char(1)
  12291. 1.0000 test tb1 f3 char 1 1 latin1 latin1_swedish_ci char(1)
  12292. 2.0079 test tb1 f4 tinytext 127 255 ucs2 ucs2_general_ci tinytext
  12293. 1.0000 test tb1 f5 text 65535 65535 latin1 latin1_swedish_ci text
  12294. 1.0000 test tb1 f6 mediumtext 16777215 16777215 latin1 latin1_swedish_ci mediumtext
  12295. 1.0000 test tb1 f7 longtext 4294967295 4294967295 latin1 latin1_swedish_ci longtext
  12296. 1.0000 test tb1 f8 tinyblob 255 255 NULL NULL tinyblob
  12297. 1.0000 test tb1 f9 blob 65535 65535 NULL NULL blob
  12298. 1.0000 test tb1 f10 mediumblob 16777215 16777215 NULL NULL mediumblob
  12299. 1.0000 test tb1 f11 longblob 4294967295 4294967295 NULL NULL longblob
  12300. 1.0000 test tb1 f12 binary 1 1 NULL NULL binary(1)
  12301. NULL test tb1 f13 tinyint NULL NULL NULL NULL tinyint(4)
  12302. NULL test tb1 f14 tinyint NULL NULL NULL NULL tinyint(3) unsigned
  12303. NULL test tb1 f15 tinyint NULL NULL NULL NULL tinyint(3) unsigned zerofill
  12304. NULL test tb1 f16 tinyint NULL NULL NULL NULL tinyint(3) unsigned zerofill
  12305. NULL test tb1 f17 smallint NULL NULL NULL NULL smallint(6)
  12306. NULL test tb1 f18 smallint NULL NULL NULL NULL smallint(5) unsigned
  12307. NULL test tb1 f19 smallint NULL NULL NULL NULL smallint(5) unsigned zerofill
  12308. NULL test tb1 f20 smallint NULL NULL NULL NULL smallint(5) unsigned zerofill
  12309. NULL test tb1 f21 mediumint NULL NULL NULL NULL mediumint(9)
  12310. NULL test tb1 f22 mediumint NULL NULL NULL NULL mediumint(8) unsigned
  12311. NULL test tb1 f23 mediumint NULL NULL NULL NULL mediumint(8) unsigned zerofill
  12312. NULL test tb1 f24 mediumint NULL NULL NULL NULL mediumint(8) unsigned zerofill
  12313. NULL test tb1 f25 int NULL NULL NULL NULL int(11)
  12314. NULL test tb1 f26 int NULL NULL NULL NULL int(10) unsigned
  12315. NULL test tb1 f27 int NULL NULL NULL NULL int(10) unsigned zerofill
  12316. NULL test tb1 f28 int NULL NULL NULL NULL int(10) unsigned zerofill
  12317. NULL test tb1 f29 bigint NULL NULL NULL NULL bigint(20)
  12318. NULL test tb1 f30 bigint NULL NULL NULL NULL bigint(20) unsigned
  12319. NULL test tb1 f31 bigint NULL NULL NULL NULL bigint(20) unsigned zerofill
  12320. NULL test tb1 f32 bigint NULL NULL NULL NULL bigint(20) unsigned zerofill
  12321. NULL test tb1 f33 decimal NULL NULL NULL NULL decimal(10,0)
  12322. NULL test tb1 f34 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12323. NULL test tb1 f35 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12324. NULL test tb1 f36 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12325. NULL test tb1 f37 decimal NULL NULL NULL NULL decimal(10,0)
  12326. NULL test tb1 f38 decimal NULL NULL NULL NULL decimal(64,0)
  12327. NULL test tb1 f39 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12328. NULL test tb1 f40 decimal NULL NULL NULL NULL decimal(64,0) unsigned
  12329. NULL test tb1 f41 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12330. NULL test tb1 f42 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12331. NULL test tb1 f43 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12332. NULL test tb1 f44 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12333. NULL test tb1 f45 decimal NULL NULL NULL NULL decimal(10,0)
  12334. NULL test tb1 f46 decimal NULL NULL NULL NULL decimal(63,30)
  12335. NULL test tb1 f47 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12336. NULL test tb1 f48 decimal NULL NULL NULL NULL decimal(63,30) unsigned
  12337. NULL test tb1 f49 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12338. NULL test tb1 f50 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12339. NULL test tb1 f51 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12340. NULL test tb1 f52 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12341. NULL test tb1 f53 decimal NULL NULL NULL NULL decimal(10,0)
  12342. NULL test tb1 f54 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12343. NULL test tb1 f55 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12344. NULL test tb1 f56 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12345. NULL test tb1 f57 decimal NULL NULL NULL NULL decimal(10,0)
  12346. NULL test tb1 f58 decimal NULL NULL NULL NULL decimal(64,0)
  12347. NULL test tb2 f59 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12348. NULL test tb2 f60 decimal NULL NULL NULL NULL decimal(64,0) unsigned
  12349. NULL test tb2 f61 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12350. NULL test tb2 f62 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12351. NULL test tb2 f63 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12352. NULL test tb2 f64 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12353. NULL test tb2 f65 decimal NULL NULL NULL NULL decimal(10,0)
  12354. NULL test tb2 f66 decimal NULL NULL NULL NULL decimal(63,30)
  12355. NULL test tb2 f67 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12356. NULL test tb2 f68 decimal NULL NULL NULL NULL decimal(63,30) unsigned
  12357. NULL test tb2 f69 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12358. NULL test tb2 f70 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12359. NULL test tb2 f71 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12360. NULL test tb2 f72 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12361. NULL test tb2 f73 double NULL NULL NULL NULL double
  12362. NULL test tb2 f74 double unsigned NULL NULL NULL NULL double unsigned
  12363. NULL test tb2 f75 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12364. NULL test tb2 f76 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12365. NULL test tb2 f77 double NULL NULL NULL NULL double
  12366. NULL test tb2 f78 double unsigned NULL NULL NULL NULL double unsigned
  12367. NULL test tb2 f79 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12368. NULL test tb2 f80 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12369. NULL test tb2 f81 float NULL NULL NULL NULL float
  12370. NULL test tb2 f82 float unsigned NULL NULL NULL NULL float unsigned
  12371. NULL test tb2 f83 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12372. NULL test tb2 f84 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12373. NULL test tb2 f85 float NULL NULL NULL NULL float
  12374. NULL test tb2 f86 float NULL NULL NULL NULL float
  12375. NULL test tb2 f87 float unsigned NULL NULL NULL NULL float unsigned
  12376. NULL test tb2 f88 float unsigned NULL NULL NULL NULL float unsigned
  12377. NULL test tb2 f89 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12378. NULL test tb2 f90 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12379. NULL test tb2 f91 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12380. NULL test tb2 f92 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12381. NULL test tb2 f93 float NULL NULL NULL NULL float
  12382. NULL test tb2 f94 double NULL NULL NULL NULL double
  12383. NULL test tb2 f95 float unsigned NULL NULL NULL NULL float unsigned
  12384. NULL test tb2 f96 double unsigned NULL NULL NULL NULL double unsigned
  12385. NULL test tb2 f97 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12386. NULL test tb2 f98 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12387. NULL test tb2 f99 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12388. NULL test tb2 f100 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12389. NULL test tb2 f101 date NULL NULL NULL NULL date
  12390. NULL test tb2 f102 time NULL NULL NULL NULL time
  12391. NULL test tb2 f103 datetime NULL NULL NULL NULL datetime
  12392. NULL test tb2 f104 timestamp NULL NULL NULL NULL timestamp
  12393. NULL test tb2 f105 year NULL NULL NULL NULL year(4)
  12394. NULL test tb2 f106 year NULL NULL NULL NULL year(4)
  12395. NULL test tb2 f107 year NULL NULL NULL NULL year(4)
  12396. 1.0000 test tb2 f108 enum 5 5 latin1 latin1_swedish_ci enum('1enum','2enum')
  12397. 1.0000 test tb2 f109 set 9 9 latin1 latin1_swedish_ci set('1set','2set')
  12398. 1.0000 test tb2 f110 varbinary 64 64 NULL NULL varbinary(64)
  12399. 1.0000 test tb2 f111 varbinary 27 27 NULL NULL varbinary(27)
  12400. 1.0000 test tb2 f112 varbinary 64 64 NULL NULL varbinary(64)
  12401. 1.0000 test tb2 f113 varbinary 192 192 NULL NULL varbinary(192)
  12402. 1.0000 test tb2 f114 varbinary 192 192 NULL NULL varbinary(192)
  12403. 1.0000 test tb2 f115 varbinary 27 27 NULL NULL varbinary(27)
  12404. 1.0000 test tb2 f116 varbinary 64 64 NULL NULL varbinary(64)
  12405. 1.0000 test tb2 f117 varbinary 192 192 NULL NULL varbinary(192)
  12406. 1.0000 test tb3 f118 char 1 1 latin1 latin1_swedish_ci char(1)
  12407. 1.0000 test tb3 f119 char 1 1 latin1 latin1_bin char(1)
  12408. 1.0000 test tb3 f120 char 1 1 latin1 latin1_swedish_ci char(1)
  12409. 1.0000 test tb3 f121 tinytext 255 255 latin1 latin1_swedish_ci tinytext
  12410. 1.0000 test tb3 f122 text 65535 65535 latin1 latin1_swedish_ci text
  12411. 1.0000 test tb3 f123 mediumtext 16777215 16777215 latin1 latin1_swedish_ci mediumtext
  12412. 2.0000 test tb3 f124 longtext 2147483647 4294967295 ucs2 ucs2_general_ci longtext
  12413. 1.0000 test tb3 f125 tinyblob 255 255 NULL NULL tinyblob
  12414. 1.0000 test tb3 f126 blob 65535 65535 NULL NULL blob
  12415. 1.0000 test tb3 f127 mediumblob 16777215 16777215 NULL NULL mediumblob
  12416. 1.0000 test tb3 f128 longblob 4294967295 4294967295 NULL NULL longblob
  12417. 1.0000 test tb3 f129 binary 1 1 NULL NULL binary(1)
  12418. NULL test tb3 f130 tinyint NULL NULL NULL NULL tinyint(4)
  12419. NULL test tb3 f131 tinyint NULL NULL NULL NULL tinyint(3) unsigned
  12420. NULL test tb3 f132 tinyint NULL NULL NULL NULL tinyint(3) unsigned zerofill
  12421. NULL test tb3 f133 tinyint NULL NULL NULL NULL tinyint(3) unsigned zerofill
  12422. NULL test tb3 f134 smallint NULL NULL NULL NULL smallint(6)
  12423. NULL test tb3 f135 smallint NULL NULL NULL NULL smallint(5) unsigned
  12424. NULL test tb3 f136 smallint NULL NULL NULL NULL smallint(5) unsigned zerofill
  12425. NULL test tb3 f137 smallint NULL NULL NULL NULL smallint(5) unsigned zerofill
  12426. NULL test tb3 f138 mediumint NULL NULL NULL NULL mediumint(9)
  12427. NULL test tb3 f139 mediumint NULL NULL NULL NULL mediumint(8) unsigned
  12428. NULL test tb3 f140 mediumint NULL NULL NULL NULL mediumint(8) unsigned zerofill
  12429. NULL test tb3 f141 mediumint NULL NULL NULL NULL mediumint(8) unsigned zerofill
  12430. NULL test tb3 f142 int NULL NULL NULL NULL int(11)
  12431. NULL test tb3 f143 int NULL NULL NULL NULL int(10) unsigned
  12432. NULL test tb3 f144 int NULL NULL NULL NULL int(10) unsigned zerofill
  12433. NULL test tb3 f145 int NULL NULL NULL NULL int(10) unsigned zerofill
  12434. NULL test tb3 f146 bigint NULL NULL NULL NULL bigint(20)
  12435. NULL test tb3 f147 bigint NULL NULL NULL NULL bigint(20) unsigned
  12436. NULL test tb3 f148 bigint NULL NULL NULL NULL bigint(20) unsigned zerofill
  12437. NULL test tb3 f149 bigint NULL NULL NULL NULL bigint(20) unsigned zerofill
  12438. NULL test tb3 f150 decimal NULL NULL NULL NULL decimal(10,0)
  12439. NULL test tb3 f151 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12440. NULL test tb3 f152 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12441. NULL test tb3 f153 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12442. NULL test tb3 f154 decimal NULL NULL NULL NULL decimal(10,0)
  12443. NULL test tb3 f155 decimal NULL NULL NULL NULL decimal(64,0)
  12444. NULL test tb3 f156 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12445. NULL test tb3 f157 decimal NULL NULL NULL NULL decimal(64,0) unsigned
  12446. NULL test tb3 f158 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12447. NULL test tb3 f159 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12448. NULL test tb3 f160 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12449. NULL test tb3 f161 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12450. NULL test tb3 f162 decimal NULL NULL NULL NULL decimal(10,0)
  12451. NULL test tb3 f163 decimal NULL NULL NULL NULL decimal(63,30)
  12452. NULL test tb3 f164 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12453. NULL test tb3 f165 decimal NULL NULL NULL NULL decimal(63,30) unsigned
  12454. NULL test tb3 f166 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12455. NULL test tb3 f167 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12456. NULL test tb3 f168 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12457. NULL test tb3 f169 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12458. NULL test tb3 f170 decimal NULL NULL NULL NULL decimal(10,0)
  12459. NULL test tb3 f171 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12460. NULL test tb3 f172 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12461. NULL test tb3 f173 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12462. NULL test tb3 f174 decimal NULL NULL NULL NULL decimal(10,0)
  12463. NULL test tb3 f175 decimal NULL NULL NULL NULL decimal(64,0)
  12464. NULL test tb4 f176 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12465. NULL test tb4 f177 decimal NULL NULL NULL NULL decimal(64,0) unsigned
  12466. NULL test tb4 f178 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12467. NULL test tb4 f179 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12468. NULL test tb4 f180 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12469. NULL test tb4 f181 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12470. NULL test tb4 f182 decimal NULL NULL NULL NULL decimal(10,0)
  12471. NULL test tb4 f183 decimal NULL NULL NULL NULL decimal(63,30)
  12472. NULL test tb4 f184 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12473. NULL test tb4 f185 decimal NULL NULL NULL NULL decimal(63,30) unsigned
  12474. NULL test tb4 f186 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12475. NULL test tb4 f187 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12476. NULL test tb4 f188 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12477. NULL test tb4 f189 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12478. NULL test tb4 f190 double NULL NULL NULL NULL double
  12479. NULL test tb4 f191 double unsigned NULL NULL NULL NULL double unsigned
  12480. NULL test tb4 f192 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12481. NULL test tb4 f193 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12482. NULL test tb4 f194 double NULL NULL NULL NULL double
  12483. NULL test tb4 f195 double unsigned NULL NULL NULL NULL double unsigned
  12484. NULL test tb4 f196 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12485. NULL test tb4 f197 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12486. NULL test tb4 f198 float NULL NULL NULL NULL float
  12487. NULL test tb4 f199 float unsigned NULL NULL NULL NULL float unsigned
  12488. NULL test tb4 f200 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12489. NULL test tb4 f201 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12490. NULL test tb4 f202 float NULL NULL NULL NULL float
  12491. NULL test tb4 f203 float NULL NULL NULL NULL float
  12492. NULL test tb4 f204 float unsigned NULL NULL NULL NULL float unsigned
  12493. NULL test tb4 f205 float unsigned NULL NULL NULL NULL float unsigned
  12494. NULL test tb4 f206 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12495. NULL test tb4 f207 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12496. NULL test tb4 f208 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12497. NULL test tb4 f209 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12498. NULL test tb4 f210 float NULL NULL NULL NULL float
  12499. NULL test tb4 f211 double NULL NULL NULL NULL double
  12500. NULL test tb4 f212 float unsigned NULL NULL NULL NULL float unsigned
  12501. NULL test tb4 f213 double unsigned NULL NULL NULL NULL double unsigned
  12502. NULL test tb4 f214 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12503. NULL test tb4 f215 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12504. NULL test tb4 f216 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12505. NULL test tb4 f217 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12506. NULL test tb4 f218 date NULL NULL NULL NULL date
  12507. NULL test tb4 f219 time NULL NULL NULL NULL time
  12508. NULL test tb4 f220 datetime NULL NULL NULL NULL datetime
  12509. NULL test tb4 f221 timestamp NULL NULL NULL NULL timestamp
  12510. NULL test tb4 f222 year NULL NULL NULL NULL year(4)
  12511. NULL test tb4 f223 year NULL NULL NULL NULL year(4)
  12512. NULL test tb4 f224 year NULL NULL NULL NULL year(4)
  12513. 1.0000 test tb4 f225 enum 5 5 latin1 latin1_swedish_ci enum('1enum','2enum')
  12514. 1.0000 test tb4 f226 set 9 9 latin1 latin1_swedish_ci set('1set','2set')
  12515. 1.0000 test tb4 f227 varbinary 64 64 NULL NULL varbinary(64)
  12516. 1.0000 test tb4 f228 varbinary 27 27 NULL NULL varbinary(27)
  12517. 1.0000 test tb4 f229 varbinary 64 64 NULL NULL varbinary(64)
  12518. 1.0000 test tb4 f230 varbinary 192 192 NULL NULL varbinary(192)
  12519. 1.0000 test tb4 f231 varbinary 192 192 NULL NULL varbinary(192)
  12520. 1.0000 test tb4 f232 varbinary 27 27 NULL NULL varbinary(27)
  12521. 1.0000 test tb4 f233 varbinary 64 64 NULL NULL varbinary(64)
  12522. 1.0000 test tb4 f234 varbinary 192 192 NULL NULL varbinary(192)
  12523. 2.0000 test tb4 f235 char 255 510 ucs2 ucs2_general_ci char(255)
  12524. 1.0000 test tb4 f236 char 60 60 latin1 latin1_swedish_ci char(60)
  12525. 1.0000 test tb4 f237 char 255 255 latin1 latin1_bin char(255)
  12526. NULL test tb4 f238 varchar 0 0 latin1 latin1_bin varchar(0)
  12527. 1.0000 test tb4 f239 varbinary 1000 1000 NULL NULL varbinary(1000)
  12528. 2.0000 test tb4 f240 varchar 120 240 ucs2 ucs2_general_ci varchar(120)
  12529. 2.0000 test tb4 f241 char 100 200 ucs2 ucs2_general_ci char(100)
  12530. NULL test tb4 f242 bit NULL NULL NULL NULL bit(30)
  12531. 1.0000 test4 t6 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12532. 1.0000 test4 t6 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12533. NULL test4 t6 f3 date NULL NULL NULL NULL date
  12534. NULL test4 t6 f4 int NULL NULL NULL NULL int(11)
  12535. 1.0000 test4 t6 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12536. NULL test4 t6 f6 int NULL NULL NULL NULL int(11)
  12537. DROP USER 'user_1'@'localhost';
  12538. DROP USER 'user_2'@'localhost';
  12539. DROP TABLE IF EXISTS t_6_406001;
  12540. DROP TABLE IF EXISTS t_6_406002;
  12541. DROP DATABASE IF EXISTS db_datadict;
  12542. Testcase 3.2.7.1:
  12543. --------------------------------------------------------------------------------
  12544. USE information_schema;
  12545. DESC key_column_usage;
  12546. Field Type Null Key Default Extra
  12547. CONSTRAINT_CATALOG varchar(4096) YES NULL
  12548. CONSTRAINT_SCHEMA varchar(64) NO
  12549. CONSTRAINT_NAME varchar(64) NO
  12550. TABLE_CATALOG varchar(4096) YES NULL
  12551. TABLE_SCHEMA varchar(64) NO
  12552. TABLE_NAME varchar(64) NO
  12553. COLUMN_NAME varchar(64) NO
  12554. ORDINAL_POSITION bigint(10) NO 0
  12555. POSITION_IN_UNIQUE_CONSTRAINT bigint(10) YES NULL
  12556. REFERENCED_TABLE_SCHEMA varchar(64) YES NULL
  12557. REFERENCED_TABLE_NAME varchar(64) YES NULL
  12558. REFERENCED_COLUMN_NAME varchar(64) YES NULL
  12559. SHOW CREATE TABLE key_column_usage;
  12560. Table Create Table
  12561. KEY_COLUMN_USAGE CREATE TEMPORARY TABLE `KEY_COLUMN_USAGE` (
  12562. `CONSTRAINT_CATALOG` varchar(4096) DEFAULT NULL,
  12563. `CONSTRAINT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  12564. `CONSTRAINT_NAME` varchar(64) NOT NULL DEFAULT '',
  12565. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  12566. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  12567. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  12568. `COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
  12569. `ORDINAL_POSITION` bigint(10) NOT NULL DEFAULT '0',
  12570. `POSITION_IN_UNIQUE_CONSTRAINT` bigint(10) DEFAULT NULL,
  12571. `REFERENCED_TABLE_SCHEMA` varchar(64) DEFAULT NULL,
  12572. `REFERENCED_TABLE_NAME` varchar(64) DEFAULT NULL,
  12573. `REFERENCED_COLUMN_NAME` varchar(64) DEFAULT NULL
  12574. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  12575. SELECT COUNT(*) FROM information_schema.columns
  12576. WHERE table_schema = 'information_schema'
  12577. AND table_name = 'key_column_usage'
  12578. ORDER BY ordinal_position;
  12579. COUNT(*)
  12580. 12
  12581. SELECT * FROM information_schema.columns
  12582. WHERE table_schema = 'information_schema'
  12583. AND table_name = 'key_column_usage'
  12584. ORDER BY ordinal_position;
  12585. 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
  12586. NULL information_schema key_column_usage CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  12587. NULL information_schema key_column_usage CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12588. NULL information_schema key_column_usage CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12589. NULL information_schema key_column_usage TABLE_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  12590. NULL information_schema key_column_usage TABLE_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12591. NULL information_schema key_column_usage TABLE_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12592. NULL information_schema key_column_usage COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12593. NULL information_schema key_column_usage ORDINAL_POSITION 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  12594. NULL information_schema key_column_usage POSITION_IN_UNIQUE_CONSTRAINT 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(10) select
  12595. NULL information_schema key_column_usage REFERENCED_TABLE_SCHEMA 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12596. NULL information_schema key_column_usage REFERENCED_TABLE_NAME 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12597. NULL information_schema key_column_usage REFERENCED_COLUMN_NAME 12 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12598. Testcase 3.2.7.2 + 3.2.7.3:
  12599. --------------------------------------------------------------------------------
  12600. DROP DATABASE IF EXISTS db_datadict;
  12601. CREATE DATABASE db_datadict;
  12602. CREATE USER 'user_1'@'localhost';
  12603. CREATE USER 'user_2'@'localhost';
  12604. USE db_datadict;
  12605. CREATE TABLE t_40701 (
  12606. f1 INT NOT NULL, PRIMARY KEY(f1),
  12607. f2 INT, INDEX f2_ind(f2)
  12608. );
  12609. GRANT SELECT ON t_40701 to 'user_1'@'localhost';
  12610. CREATE TABLE t_40702 (
  12611. f1 INT NOT NULL, PRIMARY KEY(f1),
  12612. f2 INT, INDEX f2_ind(f2)
  12613. );
  12614. GRANT SELECT ON t_40702 to 'user_2'@'localhost';
  12615. FLUSH PRIVILEGES;
  12616. SELECT * FROM information_schema.key_column_usage
  12617. ORDER BY constraint_catalog, constraint_schema, constraint_name,
  12618. table_catalog, table_schema, table_name, ordinal_position;
  12619. 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
  12620. NULL db_datadict PRIMARY NULL db_datadict t_40701 f1 1 NULL NULL NULL NULL
  12621. NULL db_datadict PRIMARY NULL db_datadict t_40702 f1 1 NULL NULL NULL NULL
  12622. NULL mysql name NULL mysql help_category name 1 NULL NULL NULL NULL
  12623. NULL mysql name NULL mysql help_keyword name 1 NULL NULL NULL NULL
  12624. NULL mysql name NULL mysql help_topic name 1 NULL NULL NULL NULL
  12625. NULL mysql PRIMARY NULL mysql columns_priv Host 1 NULL NULL NULL NULL
  12626. NULL mysql PRIMARY NULL mysql columns_priv Db 2 NULL NULL NULL NULL
  12627. NULL mysql PRIMARY NULL mysql columns_priv User 3 NULL NULL NULL NULL
  12628. NULL mysql PRIMARY NULL mysql columns_priv Table_name 4 NULL NULL NULL NULL
  12629. NULL mysql PRIMARY NULL mysql columns_priv Column_name 5 NULL NULL NULL NULL
  12630. NULL mysql PRIMARY NULL mysql db Host 1 NULL NULL NULL NULL
  12631. NULL mysql PRIMARY NULL mysql db Db 2 NULL NULL NULL NULL
  12632. NULL mysql PRIMARY NULL mysql db User 3 NULL NULL NULL NULL
  12633. NULL mysql PRIMARY NULL mysql event db 1 NULL NULL NULL NULL
  12634. NULL mysql PRIMARY NULL mysql event name 2 NULL NULL NULL NULL
  12635. NULL mysql PRIMARY NULL mysql func name 1 NULL NULL NULL NULL
  12636. NULL mysql PRIMARY NULL mysql help_category help_category_id 1 NULL NULL NULL NULL
  12637. NULL mysql PRIMARY NULL mysql help_keyword help_keyword_id 1 NULL NULL NULL NULL
  12638. NULL mysql PRIMARY NULL mysql help_relation help_keyword_id 1 NULL NULL NULL NULL
  12639. NULL mysql PRIMARY NULL mysql help_relation help_topic_id 2 NULL NULL NULL NULL
  12640. NULL mysql PRIMARY NULL mysql help_topic help_topic_id 1 NULL NULL NULL NULL
  12641. NULL mysql PRIMARY NULL mysql host Host 1 NULL NULL NULL NULL
  12642. NULL mysql PRIMARY NULL mysql host Db 2 NULL NULL NULL NULL
  12643. NULL mysql PRIMARY NULL mysql ndb_apply_status server_id 1 NULL NULL NULL NULL
  12644. NULL mysql PRIMARY NULL mysql ndb_binlog_index epoch 1 NULL NULL NULL NULL
  12645. NULL mysql PRIMARY NULL mysql plugin name 1 NULL NULL NULL NULL
  12646. NULL mysql PRIMARY NULL mysql proc db 1 NULL NULL NULL NULL
  12647. NULL mysql PRIMARY NULL mysql proc name 2 NULL NULL NULL NULL
  12648. NULL mysql PRIMARY NULL mysql proc type 3 NULL NULL NULL NULL
  12649. NULL mysql PRIMARY NULL mysql procs_priv Host 1 NULL NULL NULL NULL
  12650. NULL mysql PRIMARY NULL mysql procs_priv Db 2 NULL NULL NULL NULL
  12651. NULL mysql PRIMARY NULL mysql procs_priv User 3 NULL NULL NULL NULL
  12652. NULL mysql PRIMARY NULL mysql procs_priv Routine_name 4 NULL NULL NULL NULL
  12653. NULL mysql PRIMARY NULL mysql procs_priv Routine_type 5 NULL NULL NULL NULL
  12654. NULL mysql PRIMARY NULL mysql servers Server_name 1 NULL NULL NULL NULL
  12655. NULL mysql PRIMARY NULL mysql tables_priv Host 1 NULL NULL NULL NULL
  12656. NULL mysql PRIMARY NULL mysql tables_priv Db 2 NULL NULL NULL NULL
  12657. NULL mysql PRIMARY NULL mysql tables_priv User 3 NULL NULL NULL NULL
  12658. NULL mysql PRIMARY NULL mysql tables_priv Table_name 4 NULL NULL NULL NULL
  12659. NULL mysql PRIMARY NULL mysql time_zone Time_zone_id 1 NULL NULL NULL NULL
  12660. NULL mysql PRIMARY NULL mysql time_zone_leap_second Transition_time 1 NULL NULL NULL NULL
  12661. NULL mysql PRIMARY NULL mysql time_zone_name Name 1 NULL NULL NULL NULL
  12662. NULL mysql PRIMARY NULL mysql time_zone_transition Time_zone_id 1 NULL NULL NULL NULL
  12663. NULL mysql PRIMARY NULL mysql time_zone_transition Transition_time 2 NULL NULL NULL NULL
  12664. NULL mysql PRIMARY NULL mysql time_zone_transition_type Time_zone_id 1 NULL NULL NULL NULL
  12665. NULL mysql PRIMARY NULL mysql time_zone_transition_type Transition_type_id 2 NULL NULL NULL NULL
  12666. NULL mysql PRIMARY NULL mysql user Host 1 NULL NULL NULL NULL
  12667. NULL mysql PRIMARY NULL mysql user User 2 NULL NULL NULL NULL
  12668. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  12669. SELECT * FROM information_schema.key_column_usage
  12670. ORDER BY constraint_catalog, constraint_schema, constraint_name,
  12671. table_catalog, table_schema, table_name, ordinal_position;
  12672. 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
  12673. NULL db_datadict PRIMARY NULL db_datadict t_40701 f1 1 NULL NULL NULL NULL
  12674. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  12675. SELECT * FROM information_schema.key_column_usage
  12676. ORDER BY constraint_catalog, constraint_schema, constraint_name,
  12677. table_catalog, table_schema, table_name, ordinal_position;
  12678. 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
  12679. NULL db_datadict PRIMARY NULL db_datadict t_40702 f1 1 NULL NULL NULL NULL
  12680. root@localhost db_datadict
  12681. DROP USER 'user_1'@'localhost';
  12682. DROP USER 'user_2'@'localhost';
  12683. DROP TABLE t_40701;
  12684. DROP TABLE t_40702;
  12685. DROP DATABASE IF EXISTS db_datadict;
  12686. Testcase 3.2.8.1:
  12687. --------------------------------------------------------------------------------
  12688. USE information_schema;
  12689. DESC routines;
  12690. Field Type Null Key Default Extra
  12691. SPECIFIC_NAME varchar(64) NO
  12692. ROUTINE_CATALOG varchar(4096) YES NULL
  12693. ROUTINE_SCHEMA varchar(64) NO
  12694. ROUTINE_NAME varchar(64) NO
  12695. ROUTINE_TYPE varchar(9) NO
  12696. DTD_IDENTIFIER varchar(64) YES NULL
  12697. ROUTINE_BODY varchar(8) NO
  12698. ROUTINE_DEFINITION longtext YES NULL
  12699. EXTERNAL_NAME varchar(64) YES NULL
  12700. EXTERNAL_LANGUAGE varchar(64) YES NULL
  12701. PARAMETER_STYLE varchar(8) NO
  12702. IS_DETERMINISTIC varchar(3) NO
  12703. SQL_DATA_ACCESS varchar(64) NO
  12704. SQL_PATH varchar(64) YES NULL
  12705. SECURITY_TYPE varchar(7) NO
  12706. CREATED datetime NO 0000-00-00 00:00:00
  12707. LAST_ALTERED datetime NO 0000-00-00 00:00:00
  12708. SQL_MODE longtext NO
  12709. ROUTINE_COMMENT varchar(64) NO
  12710. DEFINER varchar(77) NO
  12711. CHARACTER_SET_CLIENT varchar(32) NO
  12712. COLLATION_CONNECTION varchar(32) NO
  12713. DATABASE_COLLATION varchar(32) NO
  12714. SHOW CREATE TABLE routines;
  12715. Table Create Table
  12716. ROUTINES CREATE TEMPORARY TABLE `ROUTINES` (
  12717. `SPECIFIC_NAME` varchar(64) NOT NULL DEFAULT '',
  12718. `ROUTINE_CATALOG` varchar(4096) DEFAULT NULL,
  12719. `ROUTINE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  12720. `ROUTINE_NAME` varchar(64) NOT NULL DEFAULT '',
  12721. `ROUTINE_TYPE` varchar(9) NOT NULL DEFAULT '',
  12722. `DTD_IDENTIFIER` varchar(64) DEFAULT NULL,
  12723. `ROUTINE_BODY` varchar(8) NOT NULL DEFAULT '',
  12724. `ROUTINE_DEFINITION` longtext,
  12725. `EXTERNAL_NAME` varchar(64) DEFAULT NULL,
  12726. `EXTERNAL_LANGUAGE` varchar(64) DEFAULT NULL,
  12727. `PARAMETER_STYLE` varchar(8) NOT NULL DEFAULT '',
  12728. `IS_DETERMINISTIC` varchar(3) NOT NULL DEFAULT '',
  12729. `SQL_DATA_ACCESS` varchar(64) NOT NULL DEFAULT '',
  12730. `SQL_PATH` varchar(64) DEFAULT NULL,
  12731. `SECURITY_TYPE` varchar(7) NOT NULL DEFAULT '',
  12732. `CREATED` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  12733. `LAST_ALTERED` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  12734. `SQL_MODE` longtext NOT NULL,
  12735. `ROUTINE_COMMENT` varchar(64) NOT NULL DEFAULT '',
  12736. `DEFINER` varchar(77) NOT NULL DEFAULT '',
  12737. `CHARACTER_SET_CLIENT` varchar(32) NOT NULL DEFAULT '',
  12738. `COLLATION_CONNECTION` varchar(32) NOT NULL DEFAULT '',
  12739. `DATABASE_COLLATION` varchar(32) NOT NULL DEFAULT ''
  12740. ) ENGINE=MyISAM DEFAULT CHARSET=utf8
  12741. SELECT COUNT(*) FROM information_schema.columns
  12742. WHERE table_schema = 'information_schema'
  12743. AND table_name = 'routines'
  12744. ORDER BY ordinal_position;
  12745. COUNT(*)
  12746. 23
  12747. SELECT * FROM information_schema.columns
  12748. WHERE table_schema = 'information_schema'
  12749. AND table_name = 'routines'
  12750. ORDER BY ordinal_position;
  12751. 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
  12752. NULL information_schema routines SPECIFIC_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12753. NULL information_schema routines ROUTINE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  12754. NULL information_schema routines ROUTINE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12755. NULL information_schema routines ROUTINE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12756. NULL information_schema routines ROUTINE_TYPE 5 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  12757. NULL information_schema routines DTD_IDENTIFIER 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12758. NULL information_schema routines ROUTINE_BODY 7 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  12759. NULL information_schema routines ROUTINE_DEFINITION 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  12760. NULL information_schema routines EXTERNAL_NAME 9 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12761. NULL information_schema routines EXTERNAL_LANGUAGE 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12762. NULL information_schema routines PARAMETER_STYLE 11 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  12763. NULL information_schema routines IS_DETERMINISTIC 12 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  12764. NULL information_schema routines SQL_DATA_ACCESS 13 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12765. NULL information_schema routines SQL_PATH 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12766. NULL information_schema routines SECURITY_TYPE 15 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  12767. NULL information_schema routines CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  12768. NULL information_schema routines LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  12769. NULL information_schema routines SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  12770. NULL information_schema routines ROUTINE_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12771. NULL information_schema routines DEFINER 20 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  12772. NULL information_schema routines CHARACTER_SET_CLIENT 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  12773. NULL information_schema routines COLLATION_CONNECTION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  12774. NULL information_schema routines DATABASE_COLLATION 23 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  12775. Testcase 3.2.8.2 + 3.2.8.3:
  12776. --------------------------------------------------------------------------------
  12777. DROP DATABASE IF EXISTS db_datadict;
  12778. DROP DATABASE IF EXISTS db_datadict_2;
  12779. CREATE DATABASE db_datadict;
  12780. USE db_datadict;
  12781. CREATE USER 'user_1'@'localhost';
  12782. CREATE USER 'user_2'@'localhost';
  12783. CREATE USER 'user_3'@'localhost';
  12784. CREATE TABLE res_6_408002_1(f1 CHAR(3), f2 TEXT(25), f3 DATE, f4 INT);
  12785. INSERT INTO res_6_408002_1(f1, f2, f3, f4)
  12786. VALUES('abc', 'xyz', '1989-11-09', 0815);
  12787. DROP PROCEDURE IF EXISTS sp_6_408002_1;
  12788. CREATE PROCEDURE sp_6_408002_1()
  12789. BEGIN
  12790. SELECT * FROM db_datadict.res_6_408002_1;
  12791. END//
  12792. CREATE DATABASE db_datadict_2;
  12793. USE db_datadict_2;
  12794. CREATE TABLE res_6_408002_2(f1 CHAR(3), f2 TEXT(25), f3 DATE, f4 INT);
  12795. INSERT INTO res_6_408002_2(f1, f2, f3, f4)
  12796. VALUES('abc', 'xyz', '1990-10-03', 4711);
  12797. DROP PROCEDURE IF EXISTS sp_6_408002_2;
  12798. CREATE PROCEDURE sp_6_408002_2()
  12799. BEGIN
  12800. SELECT * FROM db_datadict_2.res_6_408002_2;
  12801. END//
  12802. GRANT SELECT ON db_datadict_2.* TO 'user_1'@'localhost';
  12803. GRANT EXECUTE ON db_datadict_2.* TO 'user_1'@'localhost';
  12804. GRANT EXECUTE ON db_datadict.* TO 'user_1'@'localhost';
  12805. GRANT SELECT ON db_datadict.* TO 'user_2'@'localhost';
  12806. GRANT EXECUTE ON PROCEDURE db_datadict_2.sp_6_408002_2 TO 'user_2'@'localhost';
  12807. GRANT EXECUTE ON db_datadict_2.* TO 'user_2'@'localhost';
  12808. FLUSH PRIVILEGES;
  12809. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  12810. SELECT * FROM information_schema.routines;
  12811. 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
  12812. 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
  12813. 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
  12814. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  12815. SELECT * FROM information_schema.routines;
  12816. 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
  12817. 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
  12818. connect(localhost,user_3,,test,MYSQL_PORT,MYSQL_SOCK);
  12819. SELECT * FROM information_schema.routines;
  12820. 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
  12821. root@localhost db_datadict_2
  12822. DROP USER 'user_1'@'localhost';
  12823. DROP USER 'user_2'@'localhost';
  12824. DROP USER 'user_3'@'localhost';
  12825. use db_datadict;
  12826. DROP TABLE res_6_408002_1;
  12827. DROP PROCEDURE sp_6_408002_1;
  12828. USE db_datadict_2;
  12829. DROP TABLE res_6_408002_2;
  12830. DROP PROCEDURE sp_6_408002_2;
  12831. USE test;
  12832. DROP DATABASE db_datadict;
  12833. DROP DATABASE db_datadict_2;
  12834. Testcase 3.2.8.4:
  12835. --------------------------------------------------------------------------------
  12836. DROP DATABASE IF EXISTS db_datadict;
  12837. CREATE DATABASE db_datadict;
  12838. USE db_datadict;
  12839. create table res_6_408004_1(f1 longtext , f2 mediumint , f3 longblob , f4 real , f5 year);
  12840. insert into res_6_408004_1 values ('abc', 98765 , 99999999 , 98765, 10);
  12841. drop procedure if exists sp_6_408004;
  12842. create table res_6_408004_2(f1 longtext , f2 mediumint , f3 longblob , f4 real , f5 year);
  12843. insert into res_6_408004_2 values ('abc', 98765 , 99999999 , 98765, 10);
  12844. Checking the max. possible length of (currently) 4 GByte is not possible in this environment here.
  12845. --------------------------------------------------------------------------------------------------
  12846. create procedure sp_6_408004 ()
  12847. begin
  12848. declare done integer default 0;
  12849. declare variable_number_1 longtext;
  12850. declare variable_number_2 mediumint;
  12851. declare variable_number_3 longblob;
  12852. declare variable_number_4 real;
  12853. declare variable_number_5 year;
  12854. declare cursor_number_1 cursor for select * from res_6_408004_1 limit 0, 10;
  12855. declare cursor_number_2 cursor for select * from res_6_408004_1 limit 0, 10;
  12856. declare cursor_number_3 cursor for select * from res_6_408004_1 limit 0, 10;
  12857. declare cursor_number_4 cursor for select * from res_6_408004_1 limit 0, 10;
  12858. declare cursor_number_5 cursor for select * from res_6_408004_1 limit 0, 10;
  12859. declare continue handler for sqlstate '02000' set done = 1;
  12860. begin
  12861. open cursor_number_1;
  12862. while done <> 1 do
  12863. fetch cursor_number_1 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  12864. if done <> 0 then
  12865. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3,
  12866. variable_number_4, variable_number_5);
  12867. end if;
  12868. end while;
  12869. begin
  12870. begin
  12871. set done = 0;
  12872. open cursor_number_2;
  12873. while done <> 1 do
  12874. fetch cursor_number_2 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  12875. if done <> 0 then
  12876. insert into res_6_408004_2 values(variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  12877. end if;
  12878. end while;
  12879. end;
  12880. set done = 0;
  12881. open cursor_number_3;
  12882. while done <> 1 do
  12883. fetch cursor_number_3 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  12884. if done <> 0 then
  12885. insert into res_6_408004_2 values(variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  12886. end if;
  12887. end while;
  12888. end;
  12889. end;
  12890. begin
  12891. set done = 0;
  12892. open cursor_number_4;
  12893. while done <> 1 do
  12894. fetch cursor_number_4 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  12895. if done <> 0 then
  12896. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  12897. end if;
  12898. end while;
  12899. end;
  12900. begin
  12901. set @a='test row';
  12902. select @a;
  12903. select @a;
  12904. select @a;
  12905. end;
  12906. begin
  12907. set done = 0;
  12908. open cursor_number_5;
  12909. while done <> 1 do
  12910. fetch cursor_number_5 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  12911. if done <> 0 then
  12912. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  12913. end if;
  12914. end while;
  12915. end;
  12916. begin
  12917. set @a='test row';
  12918. select @a;
  12919. select @a;
  12920. select @a;
  12921. end;
  12922. end//
  12923. call sp_6_408004 ();
  12924. @a
  12925. test row
  12926. @a
  12927. test row
  12928. @a
  12929. test row
  12930. @a
  12931. test row
  12932. @a
  12933. test row
  12934. @a
  12935. test row
  12936. select * from res_6_408004_2;
  12937. f1 f2 f3 f4 f5
  12938. abc 98765 99999999 98765 2010
  12939. abc 98765 99999999 98765 2010
  12940. abc 98765 99999999 98765 2010
  12941. abc 98765 99999999 98765 2010
  12942. abc 98765 99999999 98765 2010
  12943. abc 98765 99999999 98765 2010
  12944. SELECT *, LENGTH(routine_definition)
  12945. FROM information_schema.routines
  12946. WHERE routine_schema = 'db_datadict';
  12947. SPECIFIC_NAME sp_6_408004
  12948. ROUTINE_CATALOG NULL
  12949. ROUTINE_SCHEMA db_datadict
  12950. ROUTINE_NAME sp_6_408004
  12951. ROUTINE_TYPE PROCEDURE
  12952. DTD_IDENTIFIER NULL
  12953. ROUTINE_BODY SQL
  12954. ROUTINE_DEFINITION begin
  12955. declare done integer default 0;
  12956. declare variable_number_1 longtext;
  12957. declare variable_number_2 mediumint;
  12958. declare variable_number_3 longblob;
  12959. declare variable_number_4 real;
  12960. declare variable_number_5 year;
  12961. declare cursor_number_1 cursor for select * from res_6_408004_1 limit 0, 10;
  12962. declare cursor_number_2 cursor for select * from res_6_408004_1 limit 0, 10;
  12963. declare cursor_number_3 cursor for select * from res_6_408004_1 limit 0, 10;
  12964. declare cursor_number_4 cursor for select * from res_6_408004_1 limit 0, 10;
  12965. declare cursor_number_5 cursor for select * from res_6_408004_1 limit 0, 10;
  12966. declare continue handler for sqlstate '02000' set done = 1;
  12967. begin
  12968. open cursor_number_1;
  12969. while done <> 1 do
  12970. fetch cursor_number_1 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  12971. if done <> 0 then
  12972. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3,
  12973. variable_number_4, variable_number_5);
  12974. end if;
  12975. end while;
  12976. begin
  12977. begin
  12978. set done = 0;
  12979. open cursor_number_2;
  12980. while done <> 1 do
  12981. fetch cursor_number_2 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  12982. if done <> 0 then
  12983. insert into res_6_408004_2 values(variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  12984. end if;
  12985. end while;
  12986. end;
  12987. set done = 0;
  12988. open cursor_number_3;
  12989. while done <> 1 do
  12990. fetch cursor_number_3 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  12991. if done <> 0 then
  12992. insert into res_6_408004_2 values(variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  12993. end if;
  12994. end while;
  12995. end;
  12996. end;
  12997. begin
  12998. set done = 0;
  12999. open cursor_number_4;
  13000. while done <> 1 do
  13001. fetch cursor_number_4 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13002. if done <> 0 then
  13003. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13004. end if;
  13005. end while;
  13006. end;
  13007. begin
  13008. set @a='test row';
  13009. select @a;
  13010. select @a;
  13011. select @a;
  13012. end;
  13013. begin
  13014. set done = 0;
  13015. open cursor_number_5;
  13016. while done <> 1 do
  13017. fetch cursor_number_5 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13018. if done <> 0 then
  13019. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13020. end if;
  13021. end while;
  13022. end;
  13023. begin
  13024. set @a='test row';
  13025. select @a;
  13026. select @a;
  13027. select @a;
  13028. end;
  13029. end
  13030. EXTERNAL_NAME NULL
  13031. EXTERNAL_LANGUAGE NULL
  13032. PARAMETER_STYLE SQL
  13033. IS_DETERMINISTIC NO
  13034. SQL_DATA_ACCESS CONTAINS SQL
  13035. SQL_PATH NULL
  13036. SECURITY_TYPE DEFINER
  13037. CREATED YYYY-MM-DD hh:mm:ss
  13038. LAST_ALTERED YYYY-MM-DD hh:mm:ss
  13039. SQL_MODE
  13040. ROUTINE_COMMENT
  13041. DEFINER root@localhost
  13042. CHARACTER_SET_CLIENT latin1
  13043. COLLATION_CONNECTION latin1_swedish_ci
  13044. DATABASE_COLLATION latin1_swedish_ci
  13045. LENGTH(routine_definition) 2549
  13046. use db_datadict;
  13047. drop procedure sp_6_408004;
  13048. drop table res_6_408004_1;
  13049. drop table res_6_408004_2;
  13050. use test;
  13051. drop database db_datadict;
  13052. Testcase 3.2.9.1:
  13053. --------------------------------------------------------------------------------
  13054. USE information_schema;
  13055. DESC schemata;
  13056. Field Type Null Key Default Extra
  13057. CATALOG_NAME varchar(4096) YES NULL
  13058. SCHEMA_NAME varchar(64) NO
  13059. DEFAULT_CHARACTER_SET_NAME varchar(64) NO
  13060. DEFAULT_COLLATION_NAME varchar(64) NO
  13061. SQL_PATH varchar(4096) YES NULL
  13062. SHOW CREATE TABLE schemata;
  13063. Table Create Table
  13064. SCHEMATA CREATE TEMPORARY TABLE `SCHEMATA` (
  13065. `CATALOG_NAME` varchar(4096) DEFAULT NULL,
  13066. `SCHEMA_NAME` varchar(64) NOT NULL DEFAULT '',
  13067. `DEFAULT_CHARACTER_SET_NAME` varchar(64) NOT NULL DEFAULT '',
  13068. `DEFAULT_COLLATION_NAME` varchar(64) NOT NULL DEFAULT '',
  13069. `SQL_PATH` varchar(4096) DEFAULT NULL
  13070. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13071. SELECT COUNT(*) FROM information_schema.columns
  13072. WHERE table_schema = 'information_schema'
  13073. AND table_name = 'schemata'
  13074. ORDER BY ordinal_position;
  13075. COUNT(*)
  13076. 5
  13077. SELECT * FROM information_schema.columns
  13078. WHERE table_schema = 'information_schema'
  13079. AND table_name = 'schemata'
  13080. ORDER BY ordinal_position;
  13081. 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
  13082. NULL information_schema schemata CATALOG_NAME 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13083. NULL information_schema schemata SCHEMA_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13084. NULL information_schema schemata DEFAULT_CHARACTER_SET_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13085. NULL information_schema schemata DEFAULT_COLLATION_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13086. NULL information_schema schemata SQL_PATH 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13087. Testcase 3.2.9.2 + 3.2.9.3:
  13088. --------------------------------------------------------------------------------
  13089. CREATE USER 'user_1'@'localhost';
  13090. CREATE USER 'user_2'@'localhost';
  13091. CREATE USER 'user_3'@'localhost';
  13092. DROP DATABASE IF EXISTS db_datadict_1;
  13093. DROP DATABASE IF EXISTS db_datadict_2;
  13094. CREATE DATABASE db_datadict_1;
  13095. CREATE DATABASE db_datadict_2;
  13096. GRANT SELECT ON db_datadict_1.* to 'user_1'@'localhost';
  13097. GRANT SELECT ON db_datadict_2.* to 'user_2'@'localhost';
  13098. FLUSH PRIVILEGES;
  13099. connect(localhost,user_1,,db_datadict_1,MYSQL_PORT,MYSQL_SOCK);
  13100. SELECT COUNT(*) FROM information_schema.schemata;
  13101. COUNT(*)
  13102. 3
  13103. SELECT * FROM information_schema.schemata;
  13104. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  13105. NULL information_schema utf8 utf8_general_ci NULL
  13106. NULL db_datadict_1 latin1 latin1_swedish_ci NULL
  13107. NULL test latin1 latin1_swedish_ci NULL
  13108. connect(localhost,user_2,,db_datadict_2,MYSQL_PORT,MYSQL_SOCK);
  13109. SELECT COUNT(*) FROM information_schema.schemata;
  13110. COUNT(*)
  13111. 3
  13112. SELECT * FROM information_schema.schemata;
  13113. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  13114. NULL information_schema utf8 utf8_general_ci NULL
  13115. NULL db_datadict_2 latin1 latin1_swedish_ci NULL
  13116. NULL test latin1 latin1_swedish_ci NULL
  13117. connect(localhost,user_3,,test,MYSQL_PORT,MYSQL_SOCK);
  13118. SELECT COUNT(*) FROM information_schema.schemata;
  13119. COUNT(*)
  13120. 2
  13121. SELECT * FROM information_schema.schemata;
  13122. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  13123. NULL information_schema utf8 utf8_general_ci NULL
  13124. NULL test latin1 latin1_swedish_ci NULL
  13125. root@localhost information_schema
  13126. DROP USER 'user_1'@'localhost';
  13127. DROP USER 'user_2'@'localhost';
  13128. DROP USER 'user_3'@'localhost';
  13129. DROP DATABASE db_datadict_1;
  13130. DROP DATABASE db_datadict_2;
  13131. Testcase 3.2.10.1:
  13132. --------------------------------------------------------------------------------
  13133. USE information_schema;
  13134. DESC table_constraints;
  13135. Field Type Null Key Default Extra
  13136. CONSTRAINT_CATALOG varchar(4096) YES NULL
  13137. CONSTRAINT_SCHEMA varchar(64) NO
  13138. CONSTRAINT_NAME varchar(64) NO
  13139. TABLE_SCHEMA varchar(64) NO
  13140. TABLE_NAME varchar(64) NO
  13141. CONSTRAINT_TYPE varchar(64) NO
  13142. SHOW CREATE TABLE table_constraints;
  13143. Table Create Table
  13144. TABLE_CONSTRAINTS CREATE TEMPORARY TABLE `TABLE_CONSTRAINTS` (
  13145. `CONSTRAINT_CATALOG` varchar(4096) DEFAULT NULL,
  13146. `CONSTRAINT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13147. `CONSTRAINT_NAME` varchar(64) NOT NULL DEFAULT '',
  13148. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13149. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  13150. `CONSTRAINT_TYPE` varchar(64) NOT NULL DEFAULT ''
  13151. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13152. SELECT COUNT(*) FROM information_schema.columns
  13153. WHERE table_schema = 'information_schema'
  13154. AND table_name = 'table_constraints'
  13155. ORDER BY ordinal_position;
  13156. COUNT(*)
  13157. 6
  13158. SELECT * FROM information_schema.columns
  13159. WHERE table_schema = 'information_schema'
  13160. AND table_name = 'table_constraints'
  13161. ORDER BY ordinal_position;
  13162. 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
  13163. NULL information_schema table_constraints CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13164. NULL information_schema table_constraints CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13165. NULL information_schema table_constraints CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13166. NULL information_schema table_constraints TABLE_SCHEMA 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13167. NULL information_schema table_constraints TABLE_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13168. NULL information_schema table_constraints CONSTRAINT_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13169. Testcase 3.2.10.2 + 3.2.10.3:
  13170. --------------------------------------------------------------------------------
  13171. CREATE USER 'user_1'@'localhost';
  13172. CREATE USER 'user_2'@'localhost';
  13173. DROP DATABASE IF EXISTS db_datadict;
  13174. DROP DATABASE IF EXISTS db_datadict_2;
  13175. CREATE DATABASE db_datadict;
  13176. CREATE DATABASE db_datadict_2;
  13177. USE db_datadict;
  13178. CREATE TABLE res_6_401003_1(f1 INT NOT NULL, PRIMARY KEY(f1), f2 INT, INDEX f2_ind(f2));
  13179. USE db_datadict_2;
  13180. CREATE TABLE res_6_401003_2(f1 INT NOT NULL, PRIMARY KEY(f1), f2 INT, INDEX f2_ind(f2));
  13181. GRANT SELECT ON db_datadict.res_6_401003_1 TO 'user_1'@'localhost';
  13182. GRANT SELECT ON db_datadict_2.res_6_401003_2 TO 'user_2'@'localhost';
  13183. FLUSH PRIVILEGES;
  13184. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13185. SELECT * FROM information_schema.table_constraints;
  13186. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  13187. NULL db_datadict PRIMARY db_datadict res_6_401003_1 PRIMARY KEY
  13188. SELECT COUNT(*) FROM information_schema.table_constraints;
  13189. COUNT(*)
  13190. 1
  13191. connect(localhost,user_2,,db_datadict_2,MYSQL_PORT,MYSQL_SOCK);
  13192. SELECT * FROM information_schema.table_constraints;
  13193. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  13194. NULL db_datadict_2 PRIMARY db_datadict_2 res_6_401003_2 PRIMARY KEY
  13195. SELECT COUNT(*) FROM information_schema.table_constraints;
  13196. COUNT(*)
  13197. 1
  13198. use db_datadict;
  13199. root@localhost db_datadict
  13200. DROP USER 'user_1'@'localhost';
  13201. DROP USER 'user_2'@'localhost';
  13202. DROP TABLE res_6_401003_1;
  13203. USE db_datadict_2;
  13204. DROP TABLE res_6_401003_2;
  13205. USE test;
  13206. DROP DATABASE db_datadict;
  13207. DROP DATABASE db_datadict_2;
  13208. Testcase 3.2.11.1:
  13209. --------------------------------------------------------------------------------
  13210. USE information_schema;
  13211. DESC table_privileges;
  13212. Field Type Null Key Default Extra
  13213. GRANTEE varchar(81) NO
  13214. TABLE_CATALOG varchar(4096) YES NULL
  13215. TABLE_SCHEMA varchar(64) NO
  13216. TABLE_NAME varchar(64) NO
  13217. PRIVILEGE_TYPE varchar(64) NO
  13218. IS_GRANTABLE varchar(3) NO
  13219. SHOW CREATE TABLE table_privileges;
  13220. Table Create Table
  13221. TABLE_PRIVILEGES CREATE TEMPORARY TABLE `TABLE_PRIVILEGES` (
  13222. `GRANTEE` varchar(81) NOT NULL DEFAULT '',
  13223. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  13224. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13225. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  13226. `PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
  13227. `IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''
  13228. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13229. SELECT COUNT(*) FROM information_schema.columns
  13230. WHERE table_schema = 'information_schema'
  13231. AND table_name = 'table_privileges'
  13232. ORDER BY ordinal_position;
  13233. COUNT(*)
  13234. 6
  13235. SELECT * FROM information_schema.columns
  13236. WHERE table_schema = 'information_schema'
  13237. AND table_name = 'table_privileges'
  13238. ORDER BY ordinal_position;
  13239. 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
  13240. NULL information_schema table_privileges GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  13241. NULL information_schema table_privileges TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13242. NULL information_schema table_privileges TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13243. NULL information_schema table_privileges TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13244. NULL information_schema table_privileges PRIVILEGE_TYPE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13245. NULL information_schema table_privileges IS_GRANTABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  13246. Testcase 3.2.11.2 + 3.2.11.3 + 3.2.11.4:
  13247. --------------------------------------------------------------------------------
  13248. DROP DATABASE IF EXISTS db_datadict;
  13249. create database db_datadict;
  13250. CREATE USER 'user_1'@'localhost';
  13251. GRANT CREATE, SELECT ON db_datadict.* TO 'user_1'@'localhost' WITH GRANT OPTION;
  13252. CREATE USER 'user_2'@'localhost';
  13253. CREATE USER 'user_3'@'localhost';
  13254. use db_datadict;
  13255. create table tb1(f1 int, f2 int, f3 int);
  13256. grant select on db_datadict.tb1 to 'user_1'@'localhost';
  13257. GRANT ALL on db_datadict.tb1 to 'user_2'@'localhost' WITH GRANT OPTION;
  13258. FLUSH PRIVILEGES;
  13259. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13260. CREATE TABLE tb3 (f1 TEXT);
  13261. GRANT SELECT ON db_datadict.tb3 to 'user_3'@'localhost';
  13262. SELECT * FROM information_schema.table_privileges
  13263. WHERE table_name LIKE 'tb%';
  13264. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  13265. 'user_1'@'localhost' NULL db_datadict tb1 SELECT NO
  13266. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13267. SELECT * FROM information_schema.table_privileges;
  13268. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  13269. 'user_2'@'localhost' NULL db_datadict tb1 SELECT YES
  13270. 'user_2'@'localhost' NULL db_datadict tb1 INSERT YES
  13271. 'user_2'@'localhost' NULL db_datadict tb1 UPDATE YES
  13272. 'user_2'@'localhost' NULL db_datadict tb1 DELETE YES
  13273. 'user_2'@'localhost' NULL db_datadict tb1 CREATE YES
  13274. 'user_2'@'localhost' NULL db_datadict tb1 DROP YES
  13275. 'user_2'@'localhost' NULL db_datadict tb1 REFERENCES YES
  13276. 'user_2'@'localhost' NULL db_datadict tb1 INDEX YES
  13277. 'user_2'@'localhost' NULL db_datadict tb1 ALTER YES
  13278. 'user_2'@'localhost' NULL db_datadict tb1 CREATE VIEW YES
  13279. 'user_2'@'localhost' NULL db_datadict tb1 SHOW VIEW YES
  13280. 'user_2'@'localhost' NULL db_datadict tb1 TRIGGER YES
  13281. SELECT USER(), COUNT(*)
  13282. FROM information_schema.table_privileges
  13283. WHERE grantee = USER();
  13284. USER() COUNT(*)
  13285. user_2@localhost 0
  13286. SELECT USER(), COUNT(*)
  13287. FROM information_schema.table_privileges
  13288. WHERE grantee = "'user_2'@'localhost'";
  13289. USER() COUNT(*)
  13290. user_2@localhost 12
  13291. connect(localhost,user_3,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13292. SELECT * FROM information_schema.table_privileges;
  13293. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  13294. 'user_3'@'localhost' NULL db_datadict tb3 SELECT NO
  13295. root@localhost db_datadict
  13296. SELECT * FROM information_schema.table_privileges;
  13297. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  13298. 'user_2'@'localhost' NULL db_datadict tb1 SELECT YES
  13299. 'user_2'@'localhost' NULL db_datadict tb1 INSERT YES
  13300. 'user_2'@'localhost' NULL db_datadict tb1 UPDATE YES
  13301. 'user_2'@'localhost' NULL db_datadict tb1 DELETE YES
  13302. 'user_2'@'localhost' NULL db_datadict tb1 CREATE YES
  13303. 'user_2'@'localhost' NULL db_datadict tb1 DROP YES
  13304. 'user_2'@'localhost' NULL db_datadict tb1 REFERENCES YES
  13305. 'user_2'@'localhost' NULL db_datadict tb1 INDEX YES
  13306. 'user_2'@'localhost' NULL db_datadict tb1 ALTER YES
  13307. 'user_2'@'localhost' NULL db_datadict tb1 CREATE VIEW YES
  13308. 'user_2'@'localhost' NULL db_datadict tb1 SHOW VIEW YES
  13309. 'user_2'@'localhost' NULL db_datadict tb1 TRIGGER YES
  13310. 'user_1'@'localhost' NULL db_datadict tb1 SELECT NO
  13311. 'user_3'@'localhost' NULL db_datadict tb3 SELECT NO
  13312. root@localhost db_datadict
  13313. DROP USER 'user_1'@'localhost';
  13314. DROP USER 'user_2'@'localhost';
  13315. DROP USER 'user_3'@'localhost';
  13316. drop table db_datadict.tb1;
  13317. drop table db_datadict.tb3;
  13318. use test;
  13319. drop database db_datadict;
  13320. Testcase 3.2.12.1:
  13321. --------------------------------------------------------------------------------
  13322. USE information_schema;
  13323. DESC tables;
  13324. Field Type Null Key Default Extra
  13325. TABLE_CATALOG varchar(4096) YES NULL
  13326. TABLE_SCHEMA varchar(64) NO
  13327. TABLE_NAME varchar(64) NO
  13328. TABLE_TYPE varchar(64) NO
  13329. ENGINE varchar(64) YES NULL
  13330. VERSION bigint(21) unsigned YES NULL
  13331. ROW_FORMAT varchar(10) YES NULL
  13332. TABLE_ROWS bigint(21) unsigned YES NULL
  13333. AVG_ROW_LENGTH bigint(21) unsigned YES NULL
  13334. DATA_LENGTH bigint(21) unsigned YES NULL
  13335. MAX_DATA_LENGTH bigint(21) unsigned YES NULL
  13336. INDEX_LENGTH bigint(21) unsigned YES NULL
  13337. DATA_FREE bigint(21) unsigned YES NULL
  13338. AUTO_INCREMENT bigint(21) unsigned YES NULL
  13339. CREATE_TIME datetime YES NULL
  13340. UPDATE_TIME datetime YES NULL
  13341. CHECK_TIME datetime YES NULL
  13342. TABLE_COLLATION varchar(64) YES NULL
  13343. CHECKSUM bigint(21) unsigned YES NULL
  13344. CREATE_OPTIONS varchar(255) YES NULL
  13345. TABLE_COMMENT varchar(80) NO
  13346. SHOW CREATE TABLE tables;
  13347. Table Create Table
  13348. TABLES CREATE TEMPORARY TABLE `TABLES` (
  13349. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  13350. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13351. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  13352. `TABLE_TYPE` varchar(64) NOT NULL DEFAULT '',
  13353. `ENGINE` varchar(64) DEFAULT NULL,
  13354. `VERSION` bigint(21) unsigned DEFAULT NULL,
  13355. `ROW_FORMAT` varchar(10) DEFAULT NULL,
  13356. `TABLE_ROWS` bigint(21) unsigned DEFAULT NULL,
  13357. `AVG_ROW_LENGTH` bigint(21) unsigned DEFAULT NULL,
  13358. `DATA_LENGTH` bigint(21) unsigned DEFAULT NULL,
  13359. `MAX_DATA_LENGTH` bigint(21) unsigned DEFAULT NULL,
  13360. `INDEX_LENGTH` bigint(21) unsigned DEFAULT NULL,
  13361. `DATA_FREE` bigint(21) unsigned DEFAULT NULL,
  13362. `AUTO_INCREMENT` bigint(21) unsigned DEFAULT NULL,
  13363. `CREATE_TIME` datetime DEFAULT NULL,
  13364. `UPDATE_TIME` datetime DEFAULT NULL,
  13365. `CHECK_TIME` datetime DEFAULT NULL,
  13366. `TABLE_COLLATION` varchar(64) DEFAULT NULL,
  13367. `CHECKSUM` bigint(21) unsigned DEFAULT NULL,
  13368. `CREATE_OPTIONS` varchar(255) DEFAULT NULL,
  13369. `TABLE_COMMENT` varchar(80) NOT NULL DEFAULT ''
  13370. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13371. SELECT COUNT(*) FROM information_schema.columns
  13372. WHERE table_schema = 'information_schema'
  13373. AND table_name = 'tables'
  13374. ORDER BY ordinal_position;
  13375. COUNT(*)
  13376. 21
  13377. SELECT * FROM information_schema.columns
  13378. WHERE table_schema = 'information_schema'
  13379. AND table_name = 'tables'
  13380. ORDER BY ordinal_position;
  13381. 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
  13382. NULL information_schema tables TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13383. NULL information_schema tables TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13384. NULL information_schema tables TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13385. NULL information_schema tables TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13386. NULL information_schema tables ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13387. NULL information_schema tables VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  13388. NULL information_schema tables ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  13389. NULL information_schema tables TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  13390. NULL information_schema tables AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  13391. NULL information_schema tables DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  13392. NULL information_schema tables MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  13393. NULL information_schema tables INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  13394. NULL information_schema tables DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  13395. NULL information_schema tables AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  13396. NULL information_schema tables CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  13397. NULL information_schema tables UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  13398. NULL information_schema tables CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  13399. NULL information_schema tables TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13400. NULL information_schema tables CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
  13401. NULL information_schema tables CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  13402. NULL information_schema tables TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  13403. Testcase 3.2.12.2 + 3.2.12.3:
  13404. --------------------------------------------------------------------------------
  13405. DROP DATABASE IF EXISTS db_datadict;
  13406. create database db_datadict;
  13407. CREATE USER 'user_1'@'localhost';
  13408. GRANT CREATE, CREATE VIEW, INSERT, SELECT ON db_datadict.*
  13409. TO 'user_1'@'localhost' WITH GRANT OPTION;
  13410. CREATE USER 'user_2'@'localhost';
  13411. CREATE USER 'user_3'@'localhost';
  13412. use db_datadict;
  13413. create table tb1(f1 int, f2 int, f3 int);
  13414. grant select on db_datadict.tb1 to 'user_1'@'localhost';
  13415. GRANT ALL on db_datadict.tb1 to 'user_2'@'localhost' WITH GRANT OPTION;
  13416. FLUSH PRIVILEGES;
  13417. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13418. CREATE TABLE tb2 (f1 DECIMAL);
  13419. CREATE TABLE tb3 (f1 TEXT);
  13420. GRANT SELECT ON db_datadict.tb3 to 'user_3'@'localhost';
  13421. GRANT INSERT ON db_datadict.tb3 to 'user_2'@'localhost';
  13422. CREATE VIEW v3 AS SELECT * FROM tb3;
  13423. GRANT SELECT ON db_datadict.v3 to 'user_3'@'localhost';
  13424. SELECT * FROM information_schema.tables
  13425. WHERE table_schema = 'information_schema';
  13426. 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
  13427. 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#
  13428. 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#
  13429. 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#
  13430. 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#
  13431. 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#
  13432. 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#
  13433. 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#
  13434. 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#
  13435. 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#
  13436. 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#
  13437. 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#
  13438. 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#
  13439. 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#
  13440. 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#
  13441. 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#
  13442. 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#
  13443. 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#
  13444. 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#
  13445. 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#
  13446. 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#
  13447. 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#
  13448. 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#
  13449. 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#
  13450. 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#
  13451. 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#
  13452. 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#
  13453. 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#
  13454. SELECT * FROM information_schema.tables
  13455. WHERE NOT( table_schema = 'information_schema');
  13456. 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
  13457. 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
  13458. 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
  13459. 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
  13460. 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
  13461. NULL test t1 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13462. NULL test t10 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13463. NULL test t11 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13464. NULL test t2 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13465. NULL test t3 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13466. NULL test t4 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13467. NULL test t7 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13468. NULL test t8 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13469. NULL test t9 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13470. NULL test tb1 BASE TABLE MyISAM 10 Dynamic 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
  13471. NULL test tb2 BASE TABLE MyISAM 10 Dynamic 54 #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
  13472. NULL test tb3 BASE TABLE MyISAM 10 Dynamic 11 #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
  13473. NULL test tb4 BASE TABLE MyISAM 10 Dynamic 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
  13474. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13475. SELECT * FROM information_schema.tables
  13476. WHERE table_schema = 'information_schema';
  13477. 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
  13478. 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#
  13479. 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#
  13480. 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#
  13481. 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#
  13482. 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#
  13483. 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#
  13484. 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#
  13485. 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#
  13486. 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#
  13487. 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#
  13488. 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#
  13489. 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#
  13490. 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#
  13491. 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#
  13492. 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#
  13493. 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#
  13494. 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#
  13495. 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#
  13496. 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#
  13497. 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#
  13498. 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#
  13499. 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#
  13500. 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#
  13501. 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#
  13502. 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#
  13503. 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#
  13504. 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#
  13505. SELECT * FROM information_schema.tables
  13506. WHERE NOT( table_schema = 'information_schema');
  13507. 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
  13508. 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
  13509. 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
  13510. NULL test t1 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13511. NULL test t10 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13512. NULL test t11 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13513. NULL test t2 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13514. NULL test t3 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13515. NULL test t4 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13516. NULL test t7 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13517. NULL test t8 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13518. NULL test t9 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13519. NULL test tb1 BASE TABLE MyISAM 10 Dynamic 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
  13520. NULL test tb2 BASE TABLE MyISAM 10 Dynamic 54 #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
  13521. NULL test tb3 BASE TABLE MyISAM 10 Dynamic 11 #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
  13522. NULL test tb4 BASE TABLE MyISAM 10 Dynamic 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
  13523. connect(localhost,user_3,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13524. SELECT * FROM information_schema.tables
  13525. WHERE table_schema = 'information_schema';
  13526. 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
  13527. 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#
  13528. 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#
  13529. 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#
  13530. 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#
  13531. 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#
  13532. 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#
  13533. 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#
  13534. 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#
  13535. 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#
  13536. 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#
  13537. 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#
  13538. 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#
  13539. 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#
  13540. 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#
  13541. 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#
  13542. 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#
  13543. 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#
  13544. 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#
  13545. 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#
  13546. 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#
  13547. 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#
  13548. 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#
  13549. 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#
  13550. 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#
  13551. 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#
  13552. 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#
  13553. 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#
  13554. SELECT * FROM information_schema.tables
  13555. WHERE NOT( table_schema = 'information_schema');
  13556. 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
  13557. 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
  13558. 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
  13559. NULL test t1 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13560. NULL test t10 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13561. NULL test t11 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13562. NULL test t2 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13563. NULL test t3 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13564. NULL test t4 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13565. NULL test t7 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13566. NULL test t8 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13567. NULL test t9 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13568. NULL test tb1 BASE TABLE MyISAM 10 Dynamic 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
  13569. NULL test tb2 BASE TABLE MyISAM 10 Dynamic 54 #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
  13570. NULL test tb3 BASE TABLE MyISAM 10 Dynamic 11 #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
  13571. NULL test tb4 BASE TABLE MyISAM 10 Dynamic 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
  13572. root@localhost db_datadict
  13573. SELECT * FROM information_schema.tables
  13574. WHERE table_schema = 'information_schema';
  13575. 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
  13576. 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#
  13577. 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#
  13578. 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#
  13579. 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#
  13580. 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#
  13581. 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#
  13582. 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#
  13583. 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#
  13584. 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#
  13585. 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#
  13586. 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#
  13587. 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#
  13588. 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#
  13589. 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#
  13590. 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#
  13591. 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#
  13592. 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#
  13593. 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#
  13594. 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#
  13595. 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#
  13596. 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#
  13597. 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#
  13598. 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#
  13599. 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#
  13600. 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#
  13601. 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#
  13602. 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#
  13603. SELECT * FROM information_schema.tables
  13604. WHERE NOT( table_schema = 'information_schema') AND NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
  13605. 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
  13606. 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
  13607. 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
  13608. 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
  13609. 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
  13610. 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
  13611. 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
  13612. 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
  13613. 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
  13614. 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
  13615. 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
  13616. 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
  13617. NULL mysql ndb_apply_status BASE TABLE ndbcluster 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
  13618. 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
  13619. 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
  13620. 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
  13621. 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
  13622. 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
  13623. 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
  13624. 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
  13625. 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
  13626. 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
  13627. 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
  13628. 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
  13629. 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
  13630. NULL test t1 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13631. NULL test t10 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13632. NULL test t11 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13633. NULL test t2 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13634. NULL test t3 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13635. NULL test t4 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13636. NULL test t7 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13637. NULL test t8 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13638. NULL test t9 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13639. NULL test tb1 BASE TABLE MyISAM 10 Dynamic 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
  13640. NULL test tb2 BASE TABLE MyISAM 10 Dynamic 54 #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
  13641. NULL test tb3 BASE TABLE MyISAM 10 Dynamic 11 #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
  13642. NULL test tb4 BASE TABLE MyISAM 10 Dynamic 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
  13643. NULL test4 t6 BASE TABLE NDBCLUSTER 10 Fixed 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 number_of_replicas: 2
  13644. DROP USER 'user_1'@'localhost';
  13645. DROP USER 'user_2'@'localhost';
  13646. DROP USER 'user_3'@'localhost';
  13647. DROP TABLE db_datadict.tb1;
  13648. DROP TABLE db_datadict.tb3;
  13649. DROP VIEW db_datadict.v3;
  13650. USE test;
  13651. DROP DATABASE db_datadict;
  13652. Testcase 3.2.13.1:
  13653. --------------------------------------------------------------------------------
  13654. USE information_schema;
  13655. DESC views;
  13656. Field Type Null Key Default Extra
  13657. TABLE_CATALOG varchar(4096) YES NULL
  13658. TABLE_SCHEMA varchar(64) NO
  13659. TABLE_NAME varchar(64) NO
  13660. VIEW_DEFINITION longtext NO
  13661. CHECK_OPTION varchar(8) NO
  13662. IS_UPDATABLE varchar(3) NO
  13663. DEFINER varchar(77) NO
  13664. SECURITY_TYPE varchar(7) NO
  13665. CHARACTER_SET_CLIENT varchar(32) NO
  13666. COLLATION_CONNECTION varchar(32) NO
  13667. SHOW CREATE TABLE views;
  13668. Table Create Table
  13669. VIEWS CREATE TEMPORARY TABLE `VIEWS` (
  13670. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  13671. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13672. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  13673. `VIEW_DEFINITION` longtext NOT NULL,
  13674. `CHECK_OPTION` varchar(8) NOT NULL DEFAULT '',
  13675. `IS_UPDATABLE` varchar(3) NOT NULL DEFAULT '',
  13676. `DEFINER` varchar(77) NOT NULL DEFAULT '',
  13677. `SECURITY_TYPE` varchar(7) NOT NULL DEFAULT '',
  13678. `CHARACTER_SET_CLIENT` varchar(32) NOT NULL DEFAULT '',
  13679. `COLLATION_CONNECTION` varchar(32) NOT NULL DEFAULT ''
  13680. ) ENGINE=MyISAM DEFAULT CHARSET=utf8
  13681. SELECT COUNT(*) FROM information_schema.columns
  13682. WHERE table_schema = 'information_schema'
  13683. AND table_name = 'views'
  13684. ORDER BY ordinal_position;
  13685. COUNT(*)
  13686. 10
  13687. SELECT * FROM information_schema.columns
  13688. WHERE table_schema = 'information_schema'
  13689. AND table_name = 'views'
  13690. ORDER BY ordinal_position;
  13691. 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
  13692. NULL information_schema views TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13693. NULL information_schema views TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13694. NULL information_schema views TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13695. NULL information_schema views VIEW_DEFINITION 4 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  13696. NULL information_schema views CHECK_OPTION 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  13697. NULL information_schema views IS_UPDATABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  13698. NULL information_schema views DEFINER 7 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  13699. NULL information_schema views SECURITY_TYPE 8 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  13700. NULL information_schema views CHARACTER_SET_CLIENT 9 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  13701. NULL information_schema views COLLATION_CONNECTION 10 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  13702. Testcase 3.2.13.2 + 3.2.13.3:
  13703. --------------------------------------------------------------------------------
  13704. DROP DATABASE IF EXISTS db_datadict;
  13705. CREATE DATABASE db_datadict;
  13706. CREATE USER 'user_1'@'localhost';
  13707. CREATE USER 'user_2'@'localhost';
  13708. CREATE USER 'user_no_views'@'localhost';
  13709. USE db_datadict;
  13710. CREATE TABLE tb_401302(f1 INT, f2 INT, f3 INT);
  13711. CREATE VIEW v_granted_to_1 AS SELECT * FROM tb_401302;
  13712. CREATE VIEW v_granted_glob AS SELECT f2, f3 FROM tb_401302;
  13713. GRANT SELECT ON db_datadict.tb_401302 TO 'user_1'@'localhost';
  13714. GRANT SELECT ON db_datadict.v_granted_to_1 TO 'user_1'@'localhost';
  13715. GRANT SHOW VIEW, CREATE VIEW ON db_datadict.* TO 'user_2'@'localhost';
  13716. FLUSH PRIVILEGES;
  13717. SELECT * FROM information_schema.views;
  13718. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE CHARACTER_SET_CLIENT COLLATION_CONNECTION
  13719. NULL db_datadict v_granted_glob SELECT f2, f3 FROM tb_401302 NONE YES root@localhost DEFINER latin1 latin1_swedish_ci
  13720. NULL db_datadict v_granted_to_1 SELECT * FROM tb_401302 NONE YES root@localhost DEFINER latin1 latin1_swedish_ci
  13721. connect(localhost,user_1,,test,MYSQL_PORT,MYSQL_SOCK);
  13722. SELECT * FROM information_schema.views;
  13723. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE CHARACTER_SET_CLIENT COLLATION_CONNECTION
  13724. NULL db_datadict v_granted_to_1 NONE YES root@localhost DEFINER latin1 latin1_swedish_ci
  13725. connect(localhost,user_2,,test,MYSQL_PORT,MYSQL_SOCK);
  13726. SELECT * FROM information_schema.views;
  13727. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE CHARACTER_SET_CLIENT COLLATION_CONNECTION
  13728. NULL db_datadict v_granted_glob NONE YES root@localhost DEFINER latin1 latin1_swedish_ci
  13729. NULL db_datadict v_granted_to_1 NONE YES root@localhost DEFINER latin1 latin1_swedish_ci
  13730. connect(localhost,user_no_views,,test,MYSQL_PORT,MYSQL_SOCK);
  13731. SELECT * FROM information_schema.views;
  13732. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE CHARACTER_SET_CLIENT COLLATION_CONNECTION
  13733. root@localhost db_datadict
  13734. USE db_datadict;
  13735. DROP USER 'user_1'@'localhost';
  13736. DROP USER 'user_2'@'localhost';
  13737. DROP USER 'user_no_views'@'localhost';
  13738. DROP VIEW v_granted_to_1;
  13739. DROP TABLE tb_401302;
  13740. DROP VIEW v_granted_glob;
  13741. USE test;
  13742. DROP DATABASE db_datadict;
  13743. Testcase 3.2.14.1:
  13744. --------------------------------------------------------------------------------
  13745. USE information_schema;
  13746. DESC statistics;
  13747. Field Type Null Key Default Extra
  13748. TABLE_CATALOG varchar(4096) YES NULL
  13749. TABLE_SCHEMA varchar(64) NO
  13750. TABLE_NAME varchar(64) NO
  13751. NON_UNIQUE bigint(1) NO 0
  13752. INDEX_SCHEMA varchar(64) NO
  13753. INDEX_NAME varchar(64) NO
  13754. SEQ_IN_INDEX bigint(2) NO 0
  13755. COLUMN_NAME varchar(64) NO
  13756. COLLATION varchar(1) YES NULL
  13757. CARDINALITY bigint(21) YES NULL
  13758. SUB_PART bigint(3) YES NULL
  13759. PACKED varchar(10) YES NULL
  13760. NULLABLE varchar(3) NO
  13761. INDEX_TYPE varchar(16) NO
  13762. COMMENT varchar(16) YES NULL
  13763. SHOW CREATE TABLE statistics;
  13764. Table Create Table
  13765. STATISTICS CREATE TEMPORARY TABLE `STATISTICS` (
  13766. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  13767. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13768. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  13769. `NON_UNIQUE` bigint(1) NOT NULL DEFAULT '0',
  13770. `INDEX_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13771. `INDEX_NAME` varchar(64) NOT NULL DEFAULT '',
  13772. `SEQ_IN_INDEX` bigint(2) NOT NULL DEFAULT '0',
  13773. `COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
  13774. `COLLATION` varchar(1) DEFAULT NULL,
  13775. `CARDINALITY` bigint(21) DEFAULT NULL,
  13776. `SUB_PART` bigint(3) DEFAULT NULL,
  13777. `PACKED` varchar(10) DEFAULT NULL,
  13778. `NULLABLE` varchar(3) NOT NULL DEFAULT '',
  13779. `INDEX_TYPE` varchar(16) NOT NULL DEFAULT '',
  13780. `COMMENT` varchar(16) DEFAULT NULL
  13781. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13782. SELECT COUNT(*) FROM information_schema.columns
  13783. WHERE table_schema = 'information_schema'
  13784. AND table_name = 'statistics'
  13785. ORDER BY ordinal_position;
  13786. COUNT(*)
  13787. 15
  13788. SELECT * FROM information_schema.columns
  13789. WHERE table_schema = 'information_schema'
  13790. AND table_name = 'statistics'
  13791. ORDER BY ordinal_position;
  13792. 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
  13793. NULL information_schema statistics TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13794. NULL information_schema statistics TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13795. NULL information_schema statistics TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13796. NULL information_schema statistics NON_UNIQUE 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(1) select
  13797. NULL information_schema statistics INDEX_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13798. NULL information_schema statistics INDEX_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13799. NULL information_schema statistics SEQ_IN_INDEX 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(2) select
  13800. NULL information_schema statistics COLUMN_NAME 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13801. NULL information_schema statistics COLLATION 9 NULL YES varchar 1 3 NULL NULL utf8 utf8_general_ci varchar(1) select
  13802. NULL information_schema statistics CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  13803. NULL information_schema statistics SUB_PART 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(3) select
  13804. NULL information_schema statistics PACKED 12 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  13805. NULL information_schema statistics NULLABLE 13 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  13806. NULL information_schema statistics INDEX_TYPE 14 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  13807. NULL information_schema statistics COMMENT 15 NULL YES varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  13808. Testcase 3.2.14.2 + 3.2.14.3:
  13809. --------------------------------------------------------------------------------
  13810. DROP DATABASE IF EXISTS db_datadict;
  13811. DROP DATABASE IF EXISTS db_datadict_2;
  13812. CREATE DATABASE db_datadict;
  13813. CREATE DATABASE db_datadict_2;
  13814. CREATE USER 'user_1'@'localhost';
  13815. CREATE USER 'user_2'@'localhost';
  13816. USE db_datadict;
  13817. create table tb_6_401402_1(f1 int not null, primary key(f1), f2 int, index f2_ind(f2));
  13818. create table tb_6_401402_2(f1 int not null, primary key(f1), f2 int, index f2_ind(f2));
  13819. grant select on db_datadict.tb_6_401402_1 to 'user_1'@'localhost' WITH GRANT OPTION;
  13820. USE db_datadict_2;
  13821. create table tb_2_1(f1 int not null, primary key(f1), f2 int, index f2_ind(f2));
  13822. create table tb_2_2(f1 int not null, primary key(f1), f2 int, index f2_ind(f2));
  13823. grant select on db_datadict_2.tb_2_1 to 'user_1'@'localhost';
  13824. FLUSH PRIVILEGES;
  13825. connect(localhost,user_1,,test,MYSQL_PORT,MYSQL_SOCK);
  13826. SELECT * FROM information_schema.statistics;
  13827. 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
  13828. NULL db_datadict tb_6_401402_1 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
  13829. NULL db_datadict tb_6_401402_1 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
  13830. NULL db_datadict_2 tb_2_1 0 db_datadict_2 PRIMARY 1 f1 A 0 NULL NULL BTREE
  13831. NULL db_datadict_2 tb_2_1 1 db_datadict_2 f2_ind 1 f2 A NULL NULL NULL YES BTREE
  13832. connect(localhost,user_2,,test,MYSQL_PORT,MYSQL_SOCK);
  13833. SELECT * FROM information_schema.statistics;
  13834. 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
  13835. root@localhost db_datadict_2
  13836. REVOKE SELECT ON db_datadict.tb_6_401402_1 FROM 'user_1'@'localhost';
  13837. SELECT * FROM information_schema.statistics
  13838. WHERE NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
  13839. 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
  13840. NULL db_datadict tb_6_401402_1 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
  13841. NULL db_datadict tb_6_401402_1 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
  13842. NULL db_datadict tb_6_401402_2 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
  13843. NULL db_datadict tb_6_401402_2 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
  13844. NULL db_datadict_2 tb_2_1 0 db_datadict_2 PRIMARY 1 f1 A 0 NULL NULL BTREE
  13845. NULL db_datadict_2 tb_2_1 1 db_datadict_2 f2_ind 1 f2 A NULL NULL NULL YES BTREE
  13846. NULL db_datadict_2 tb_2_2 0 db_datadict_2 PRIMARY 1 f1 A 0 NULL NULL BTREE
  13847. NULL db_datadict_2 tb_2_2 1 db_datadict_2 f2_ind 1 f2 A NULL NULL NULL YES BTREE
  13848. NULL mysql user 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  13849. NULL mysql user 0 mysql PRIMARY 2 User A 5 NULL NULL BTREE
  13850. NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  13851. NULL mysql columns_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  13852. NULL mysql columns_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  13853. NULL mysql columns_priv 0 mysql PRIMARY 4 Table_name A NULL NULL NULL BTREE
  13854. NULL mysql columns_priv 0 mysql PRIMARY 5 Column_name A 0 NULL NULL BTREE
  13855. NULL mysql db 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  13856. NULL mysql db 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  13857. NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
  13858. NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
  13859. NULL mysql event 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
  13860. NULL mysql event 0 mysql PRIMARY 2 name A 0 NULL NULL BTREE
  13861. NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
  13862. NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  13863. NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
  13864. NULL mysql ndb_apply_status 0 mysql PRIMARY 1 server_id NULL 0 NULL NULL HASH
  13865. NULL mysql ndb_binlog_index 0 mysql PRIMARY 1 epoch A 0 NULL NULL BTREE
  13866. NULL mysql plugin 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
  13867. NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
  13868. NULL mysql proc 0 mysql PRIMARY 2 name A NULL NULL NULL BTREE
  13869. NULL mysql proc 0 mysql PRIMARY 3 type A 0 NULL NULL BTREE
  13870. NULL mysql procs_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  13871. NULL mysql procs_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  13872. NULL mysql procs_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  13873. NULL mysql procs_priv 0 mysql PRIMARY 4 Routine_name A NULL NULL NULL BTREE
  13874. NULL mysql procs_priv 0 mysql PRIMARY 5 Routine_type A 0 NULL NULL BTREE
  13875. NULL mysql procs_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
  13876. NULL mysql servers 0 mysql PRIMARY 1 Server_name A 0 NULL NULL BTREE
  13877. NULL mysql tables_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  13878. NULL mysql tables_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  13879. NULL mysql tables_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  13880. NULL mysql tables_priv 0 mysql PRIMARY 4 Table_name A 2 NULL NULL BTREE
  13881. NULL mysql tables_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
  13882. NULL mysql time_zone 0 mysql PRIMARY 1 Time_zone_id A 5 NULL NULL BTREE
  13883. NULL mysql time_zone_leap_second 0 mysql PRIMARY 1 Transition_time A 22 NULL NULL BTREE
  13884. NULL mysql time_zone_name 0 mysql PRIMARY 1 Name A 6 NULL NULL BTREE
  13885. NULL mysql time_zone_transition 0 mysql PRIMARY 1 Time_zone_id A NULL NULL NULL BTREE
  13886. NULL mysql time_zone_transition 0 mysql PRIMARY 2 Transition_time A 393 NULL NULL BTREE
  13887. NULL mysql time_zone_transition_type 0 mysql PRIMARY 1 Time_zone_id A NULL NULL NULL BTREE
  13888. NULL mysql time_zone_transition_type 0 mysql PRIMARY 2 Transition_type_id A 31 NULL NULL BTREE
  13889. user_1@localhost test
  13890. SELECT * FROM information_schema.statistics;
  13891. 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
  13892. NULL db_datadict tb_6_401402_1 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
  13893. NULL db_datadict tb_6_401402_1 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
  13894. NULL db_datadict_2 tb_2_1 0 db_datadict_2 PRIMARY 1 f1 A 0 NULL NULL BTREE
  13895. NULL db_datadict_2 tb_2_1 1 db_datadict_2 f2_ind 1 f2 A NULL NULL NULL YES BTREE
  13896. user_2@localhost test
  13897. SELECT * FROM information_schema.statistics;
  13898. 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
  13899. root@localhost db_datadict_2
  13900. USE db_datadict;
  13901. DROP USER 'user_1'@'localhost';
  13902. DROP USER 'user_2'@'localhost';
  13903. DROP TABLE tb_6_401402_1;
  13904. DROP TABLE tb_6_401402_2;
  13905. USE test;
  13906. DROP DATABASE db_datadict;
  13907. Testcase 3.2.15.1:
  13908. --------------------------------------------------------------------------------
  13909. USE information_schema;
  13910. DESC schema_privileges;
  13911. Field Type Null Key Default Extra
  13912. GRANTEE varchar(81) NO
  13913. TABLE_CATALOG varchar(4096) YES NULL
  13914. TABLE_SCHEMA varchar(64) NO
  13915. PRIVILEGE_TYPE varchar(64) NO
  13916. IS_GRANTABLE varchar(3) NO
  13917. SHOW CREATE TABLE schema_privileges;
  13918. Table Create Table
  13919. SCHEMA_PRIVILEGES CREATE TEMPORARY TABLE `SCHEMA_PRIVILEGES` (
  13920. `GRANTEE` varchar(81) NOT NULL DEFAULT '',
  13921. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  13922. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13923. `PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
  13924. `IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''
  13925. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13926. SELECT COUNT(*) FROM information_schema.columns
  13927. WHERE table_schema = 'information_schema'
  13928. AND table_name = 'schema_privileges'
  13929. ORDER BY ordinal_position;
  13930. COUNT(*)
  13931. 5
  13932. SELECT * FROM information_schema.columns
  13933. WHERE table_schema = 'information_schema'
  13934. AND table_name = 'schema_privileges'
  13935. ORDER BY ordinal_position;
  13936. 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
  13937. NULL information_schema schema_privileges GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  13938. NULL information_schema schema_privileges TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13939. NULL information_schema schema_privileges TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13940. NULL information_schema schema_privileges PRIVILEGE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13941. NULL information_schema schema_privileges IS_GRANTABLE 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  13942. Testcase 3.2.15.2:
  13943. --------------------------------------------------------------------------------
  13944. DROP DATABASE IF EXISTS db_datadict;
  13945. DROP DATABASE IF EXISTS db_datadict_2;
  13946. create database db_datadict;
  13947. create database db_datadict_2;
  13948. CREATE USER 'u_6_401502'@'localhost';
  13949. use db_datadict;
  13950. create table res_6_401502(f1 int, f2 int, f3 int);
  13951. grant insert on db_datadict.* to 'u_6_401502'@'localhost';
  13952. FLUSH PRIVILEGES;
  13953. SELECT * FROM information_schema.schema_privileges;
  13954. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  13955. 'u_6_401502'@'localhost' NULL db_datadict INSERT NO
  13956. ''@'%' NULL test SELECT NO
  13957. ''@'%' NULL test INSERT NO
  13958. ''@'%' NULL test UPDATE NO
  13959. ''@'%' NULL test DELETE NO
  13960. ''@'%' NULL test CREATE NO
  13961. ''@'%' NULL test DROP NO
  13962. ''@'%' NULL test REFERENCES NO
  13963. ''@'%' NULL test INDEX NO
  13964. ''@'%' NULL test ALTER NO
  13965. ''@'%' NULL test CREATE TEMPORARY TABLES NO
  13966. ''@'%' NULL test LOCK TABLES NO
  13967. ''@'%' NULL test CREATE VIEW NO
  13968. ''@'%' NULL test SHOW VIEW NO
  13969. ''@'%' NULL test CREATE ROUTINE NO
  13970. ''@'%' NULL test EVENT NO
  13971. ''@'%' NULL test TRIGGER NO
  13972. ''@'%' NULL test\_% SELECT NO
  13973. ''@'%' NULL test\_% INSERT NO
  13974. ''@'%' NULL test\_% UPDATE NO
  13975. ''@'%' NULL test\_% DELETE NO
  13976. ''@'%' NULL test\_% CREATE NO
  13977. ''@'%' NULL test\_% DROP NO
  13978. ''@'%' NULL test\_% REFERENCES NO
  13979. ''@'%' NULL test\_% INDEX NO
  13980. ''@'%' NULL test\_% ALTER NO
  13981. ''@'%' NULL test\_% CREATE TEMPORARY TABLES NO
  13982. ''@'%' NULL test\_% LOCK TABLES NO
  13983. ''@'%' NULL test\_% CREATE VIEW NO
  13984. ''@'%' NULL test\_% SHOW VIEW NO
  13985. ''@'%' NULL test\_% CREATE ROUTINE NO
  13986. ''@'%' NULL test\_% EVENT NO
  13987. ''@'%' NULL test\_% TRIGGER NO
  13988. connect(localhost,u_6_401502,,test,MYSQL_PORT,MYSQL_SOCK);
  13989. SELECT * FROM information_schema.schema_privileges;
  13990. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  13991. 'u_6_401502'@'localhost' NULL db_datadict INSERT NO
  13992. use db_datadict;
  13993. root@localhost db_datadict
  13994. DROP USER 'u_6_401502'@'localhost';
  13995. drop table res_6_401502;
  13996. use test;
  13997. drop database db_datadict;
  13998. drop database db_datadict_2;
  13999. Testcase 3.2.15.3 + 3.2.15.4:
  14000. --------------------------------------------------------------------------------
  14001. DROP DATABASE IF EXISTS db_datadict;
  14002. DROP DATABASE IF EXISTS db_datadict_2;
  14003. create database db_datadict;
  14004. create database db_datadict_2;
  14005. CREATE USER 'u_6_401503_1'@'localhost';
  14006. CREATE USER 'u_6_401503_2'@'localhost';
  14007. CREATE USER 'u_6_401503_3'@'localhost';
  14008. use db_datadict;
  14009. create table res_6_401503_1(f1 int, f2 int, f3 int);
  14010. use db_datadict_2;
  14011. create table res_6_401503_2(f1 int, f2 int, f3 int);
  14012. grant update on db_datadict.* to 'u_6_401503_1'@'localhost';
  14013. grant delete on db_datadict_2.* to 'u_6_401503_2'@'localhost';
  14014. FLUSH PRIVILEGES;
  14015. SELECT * FROM information_schema.schema_privileges;
  14016. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14017. 'u_6_401503_1'@'localhost' NULL db_datadict UPDATE NO
  14018. 'u_6_401503_2'@'localhost' NULL db_datadict_2 DELETE NO
  14019. ''@'%' NULL test SELECT NO
  14020. ''@'%' NULL test INSERT NO
  14021. ''@'%' NULL test UPDATE NO
  14022. ''@'%' NULL test DELETE NO
  14023. ''@'%' NULL test CREATE NO
  14024. ''@'%' NULL test DROP NO
  14025. ''@'%' NULL test REFERENCES NO
  14026. ''@'%' NULL test INDEX NO
  14027. ''@'%' NULL test ALTER NO
  14028. ''@'%' NULL test CREATE TEMPORARY TABLES NO
  14029. ''@'%' NULL test LOCK TABLES NO
  14030. ''@'%' NULL test CREATE VIEW NO
  14031. ''@'%' NULL test SHOW VIEW NO
  14032. ''@'%' NULL test CREATE ROUTINE NO
  14033. ''@'%' NULL test EVENT NO
  14034. ''@'%' NULL test TRIGGER NO
  14035. ''@'%' NULL test\_% SELECT NO
  14036. ''@'%' NULL test\_% INSERT NO
  14037. ''@'%' NULL test\_% UPDATE NO
  14038. ''@'%' NULL test\_% DELETE NO
  14039. ''@'%' NULL test\_% CREATE NO
  14040. ''@'%' NULL test\_% DROP NO
  14041. ''@'%' NULL test\_% REFERENCES NO
  14042. ''@'%' NULL test\_% INDEX NO
  14043. ''@'%' NULL test\_% ALTER NO
  14044. ''@'%' NULL test\_% CREATE TEMPORARY TABLES NO
  14045. ''@'%' NULL test\_% LOCK TABLES NO
  14046. ''@'%' NULL test\_% CREATE VIEW NO
  14047. ''@'%' NULL test\_% SHOW VIEW NO
  14048. ''@'%' NULL test\_% CREATE ROUTINE NO
  14049. ''@'%' NULL test\_% EVENT NO
  14050. ''@'%' NULL test\_% TRIGGER NO
  14051. connect(localhost,u_6_401503_1,,test,MYSQL_PORT,MYSQL_SOCK);
  14052. SELECT * FROM information_schema.schema_privileges;
  14053. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14054. 'u_6_401503_1'@'localhost' NULL db_datadict UPDATE NO
  14055. connect(localhost,u_6_401503_2,,test,MYSQL_PORT,MYSQL_SOCK);
  14056. SELECT * FROM information_schema.schema_privileges;
  14057. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14058. 'u_6_401503_2'@'localhost' NULL db_datadict_2 DELETE NO
  14059. connect(localhost,u_6_401503_3,,test,MYSQL_PORT,MYSQL_SOCK);
  14060. SELECT * FROM information_schema.schema_privileges;
  14061. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14062. root@localhost db_datadict_2
  14063. use db_datadict;
  14064. DROP USER 'u_6_401503_1'@'localhost';
  14065. DROP USER 'u_6_401503_2'@'localhost';
  14066. DROP USER 'u_6_401503_3'@'localhost';
  14067. drop table res_6_401503_1;
  14068. use db_datadict_2;
  14069. drop table res_6_401503_2;
  14070. use test;
  14071. drop database db_datadict;
  14072. drop database db_datadict_2;
  14073. Testcase 3.2.16.1:
  14074. --------------------------------------------------------------------------------
  14075. USE information_schema;
  14076. DESC user_privileges;
  14077. Field Type Null Key Default Extra
  14078. GRANTEE varchar(81) NO
  14079. TABLE_CATALOG varchar(4096) YES NULL
  14080. PRIVILEGE_TYPE varchar(64) NO
  14081. IS_GRANTABLE varchar(3) NO
  14082. SHOW CREATE TABLE user_privileges;
  14083. Table Create Table
  14084. USER_PRIVILEGES CREATE TEMPORARY TABLE `USER_PRIVILEGES` (
  14085. `GRANTEE` varchar(81) NOT NULL DEFAULT '',
  14086. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  14087. `PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
  14088. `IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''
  14089. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  14090. SELECT COUNT(*) FROM information_schema.columns
  14091. WHERE table_schema = 'information_schema'
  14092. AND table_name = 'user_privileges'
  14093. ORDER BY ordinal_position;
  14094. COUNT(*)
  14095. 4
  14096. SELECT * FROM information_schema.columns
  14097. WHERE table_schema = 'information_schema'
  14098. AND table_name = 'user_privileges'
  14099. ORDER BY ordinal_position;
  14100. 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
  14101. NULL information_schema user_privileges GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  14102. NULL information_schema user_privileges TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  14103. NULL information_schema user_privileges PRIVILEGE_TYPE 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14104. NULL information_schema user_privileges IS_GRANTABLE 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  14105. Testcase 3.2.16.2 + 3.2.16.3 + 3.2.16.4:
  14106. --------------------------------------------------------------------------------
  14107. DROP DATABASE IF EXISTS db_datadict;
  14108. CREATE DATABASE db_datadict;
  14109. CREATE USER 'user_1'@'localhost';
  14110. CREATE USER 'user_2'@'localhost';
  14111. CREATE USER 'user_3'@'localhost';
  14112. GRANT SELECT ON db_datadict.* TO 'user_1'@'localhost';
  14113. GRANT SELECT ON mysql.user TO 'user_1'@'localhost';
  14114. GRANT INSERT ON *.* TO 'user_2'@'localhost';
  14115. GRANT UPDATE ON *.* TO 'user_2'@'localhost';
  14116. FLUSH PRIVILEGES;
  14117. FIXME (see Bug 12269) Here we expect more than only <USAGE> for user_1
  14118. ----------------------------------------------------------------------
  14119. SELECT * FROM information_schema.user_privileges
  14120. WHERE grantee LIKE "%user%"
  14121. ORDER BY grantee, table_catalog, privilege_type;
  14122. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14123. 'user_1'@'localhost' NULL USAGE NO
  14124. 'user_2'@'localhost' NULL INSERT NO
  14125. 'user_2'@'localhost' NULL UPDATE NO
  14126. 'user_3'@'localhost' NULL USAGE NO
  14127. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14128. 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
  14129. 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
  14130. 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
  14131. 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
  14132. SHOW GRANTS;
  14133. Grants for root@localhost
  14134. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14135. add GRANT OPTION db_datadict.* to user_1
  14136. ----------------------------------------
  14137. GRANT UPDATE ON db_datadict.* TO 'user_1'@'localhost' WITH GRANT OPTION;
  14138. FIXME (see Bug 12269) Here the <YES> is missing for the GRANT OPTION for user_1
  14139. -------------------------------------------------------------------------------
  14140. SELECT * FROM information_schema.user_privileges
  14141. WHERE grantee LIKE "%user%"
  14142. ORDER BY grantee, table_catalog, privilege_type;
  14143. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14144. 'user_1'@'localhost' NULL USAGE NO
  14145. 'user_2'@'localhost' NULL INSERT NO
  14146. 'user_2'@'localhost' NULL UPDATE NO
  14147. 'user_3'@'localhost' NULL USAGE NO
  14148. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14149. 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
  14150. 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
  14151. 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
  14152. 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
  14153. SHOW GRANTS;
  14154. Grants for root@localhost
  14155. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14156. FLUSH PRIVILEGES;
  14157. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  14158. SELECT * FROM information_schema.user_privileges
  14159. WHERE grantee LIKE "%user%"
  14160. ORDER BY grantee, table_catalog, privilege_type;
  14161. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14162. 'user_1'@'localhost' NULL USAGE NO
  14163. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14164. 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
  14165. 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
  14166. 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
  14167. 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
  14168. SHOW GRANTS;
  14169. Grants for user_1@localhost
  14170. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14171. GRANT SELECT, UPDATE ON `db_datadict`.* TO 'user_1'@'localhost' WITH GRANT OPTION
  14172. GRANT SELECT ON `mysql`.`user` TO 'user_1'@'localhost'
  14173. Now add SELECT on *.* to user_1
  14174. -------------------------------
  14175. root@localhost information_schema
  14176. GRANT SELECT ON *.* TO 'user_1'@'localhost';
  14177. Here <SELECT NO> is shown correctly for user_1
  14178. ----------------------------------------------
  14179. SELECT * FROM information_schema.user_privileges
  14180. WHERE grantee LIKE "%user%"
  14181. ORDER BY grantee, table_catalog, privilege_type;
  14182. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14183. 'user_1'@'localhost' NULL SELECT NO
  14184. 'user_2'@'localhost' NULL INSERT NO
  14185. 'user_2'@'localhost' NULL UPDATE NO
  14186. 'user_3'@'localhost' NULL USAGE NO
  14187. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14188. 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
  14189. 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
  14190. 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
  14191. 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
  14192. SHOW GRANTS;
  14193. Grants for root@localhost
  14194. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14195. GRANT SELECT ON *.* TO 'user_1'@'localhost' WITH GRANT OPTION;
  14196. Here <SELECT YES> is shown correctly for user_1
  14197. -----------------------------------------------
  14198. SELECT * FROM information_schema.user_privileges
  14199. WHERE grantee LIKE "%user%"
  14200. ORDER BY grantee, table_catalog, privilege_type;
  14201. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14202. 'user_1'@'localhost' NULL SELECT YES
  14203. 'user_2'@'localhost' NULL INSERT NO
  14204. 'user_2'@'localhost' NULL UPDATE NO
  14205. 'user_3'@'localhost' NULL USAGE NO
  14206. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14207. 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
  14208. 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
  14209. 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
  14210. 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
  14211. SHOW GRANTS;
  14212. Grants for root@localhost
  14213. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14214. FLUSH PRIVILEGES;
  14215. SELECT * FROM information_schema.user_privileges
  14216. WHERE grantee LIKE "%user%"
  14217. ORDER BY grantee, table_catalog, privilege_type;
  14218. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14219. 'user_1'@'localhost' NULL SELECT YES
  14220. 'user_2'@'localhost' NULL INSERT NO
  14221. 'user_2'@'localhost' NULL UPDATE NO
  14222. 'user_3'@'localhost' NULL USAGE NO
  14223. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14224. 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
  14225. 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
  14226. 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
  14227. 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
  14228. SHOW GRANTS;
  14229. Grants for root@localhost
  14230. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14231. user_1@localhost db_datadict
  14232. SELECT * FROM information_schema.user_privileges
  14233. WHERE grantee LIKE "%user%"
  14234. ORDER BY grantee, table_catalog, privilege_type;
  14235. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14236. 'user_1'@'localhost' NULL SELECT YES
  14237. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14238. 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
  14239. 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
  14240. 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
  14241. 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
  14242. SHOW GRANTS;
  14243. Grants for user_1@localhost
  14244. GRANT SELECT ON *.* TO 'user_1'@'localhost' WITH GRANT OPTION
  14245. GRANT SELECT, UPDATE ON `db_datadict`.* TO 'user_1'@'localhost' WITH GRANT OPTION
  14246. GRANT SELECT ON `mysql`.`user` TO 'user_1'@'localhost'
  14247. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  14248. SELECT * FROM information_schema.user_privileges
  14249. WHERE grantee LIKE "%user%"
  14250. ORDER BY grantee, table_catalog, privilege_type;
  14251. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14252. 'user_2'@'localhost' NULL INSERT NO
  14253. 'user_2'@'localhost' NULL UPDATE NO
  14254. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14255. ERROR 42000: SELECT command denied to user 'user_2'@'localhost' for table 'user'
  14256. SHOW GRANTS;
  14257. Grants for user_2@localhost
  14258. GRANT INSERT, UPDATE ON *.* TO 'user_2'@'localhost'
  14259. connect(localhost,user_3,,test,MYSQL_PORT,MYSQL_SOCK);
  14260. SELECT * FROM information_schema.user_privileges
  14261. WHERE grantee LIKE "%user%"
  14262. ORDER BY grantee, table_catalog, privilege_type;
  14263. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14264. 'user_3'@'localhost' NULL USAGE NO
  14265. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14266. ERROR 42000: SELECT command denied to user 'user_3'@'localhost' for table 'user'
  14267. SHOW GRANTS;
  14268. Grants for user_3@localhost
  14269. GRANT USAGE ON *.* TO 'user_3'@'localhost'
  14270. revoke privileges from user_1
  14271. -----------------------------
  14272. root@localhost information_schema
  14273. REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'user_1'@'localhost';
  14274. SELECT * FROM information_schema.user_privileges
  14275. WHERE grantee LIKE "%user%"
  14276. ORDER BY grantee, table_catalog, privilege_type;
  14277. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14278. 'user_1'@'localhost' NULL USAGE NO
  14279. 'user_2'@'localhost' NULL INSERT NO
  14280. 'user_2'@'localhost' NULL UPDATE NO
  14281. 'user_3'@'localhost' NULL USAGE NO
  14282. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14283. 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
  14284. 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
  14285. 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
  14286. 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
  14287. SHOW GRANTS;
  14288. Grants for root@localhost
  14289. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14290. user_1@localhost db_datadict
  14291. SELECT * FROM information_schema.user_privileges
  14292. WHERE grantee LIKE "%user%"
  14293. ORDER BY grantee, table_catalog, privilege_type;
  14294. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14295. 'user_1'@'localhost' NULL USAGE NO
  14296. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14297. ERROR 42000: SELECT command denied to user 'user_1'@'localhost' for table 'user'
  14298. SHOW GRANTS;
  14299. Grants for user_1@localhost
  14300. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14301. user_1@localhost db_datadict
  14302. CREATE TABLE db_datadict.tb_55 ( c1 TEXT );
  14303. ERROR 42000: CREATE command denied to user 'user_1'@'localhost' for table 'tb_55'
  14304. user_1@localhost db_datadict
  14305. SELECT * FROM information_schema.user_privileges
  14306. WHERE grantee LIKE "%user%"
  14307. ORDER BY grantee, table_catalog, privilege_type;
  14308. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14309. 'user_1'@'localhost' NULL USAGE NO
  14310. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14311. ERROR 42000: SELECT command denied to user 'user_1'@'localhost' for table 'user'
  14312. SHOW GRANTS;
  14313. Grants for user_1@localhost
  14314. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14315. CREATE TABLE db_datadict.tb_66 ( c1 TEXT );
  14316. ERROR 42000: CREATE command denied to user 'user_1'@'localhost' for table 'tb_66'
  14317. add ALL on db_datadict.* (and select on mysql.user) to user_1
  14318. -------------------------------------------------------------
  14319. root@localhost information_schema
  14320. GRANT ALL ON db_datadict.* TO 'user_1'@'localhost' WITH GRANT OPTION;
  14321. GRANT SELECT ON mysql.user TO 'user_1'@'localhost';
  14322. SELECT * FROM information_schema.user_privileges
  14323. WHERE grantee LIKE "%user%"
  14324. ORDER BY grantee, table_catalog, privilege_type;
  14325. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14326. 'user_1'@'localhost' NULL USAGE NO
  14327. 'user_2'@'localhost' NULL INSERT NO
  14328. 'user_2'@'localhost' NULL UPDATE NO
  14329. 'user_3'@'localhost' NULL USAGE NO
  14330. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14331. 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
  14332. 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
  14333. 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
  14334. 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
  14335. SHOW GRANTS;
  14336. Grants for root@localhost
  14337. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14338. user_1@localhost db_datadict
  14339. SELECT * FROM information_schema.user_privileges
  14340. WHERE grantee LIKE "%user%"
  14341. ORDER BY grantee, table_catalog, privilege_type;
  14342. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14343. 'user_1'@'localhost' NULL USAGE NO
  14344. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14345. 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
  14346. 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
  14347. 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
  14348. 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
  14349. SHOW GRANTS;
  14350. Grants for user_1@localhost
  14351. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14352. GRANT ALL PRIVILEGES ON `db_datadict`.* TO 'user_1'@'localhost' WITH GRANT OPTION
  14353. GRANT SELECT ON `mysql`.`user` TO 'user_1'@'localhost'
  14354. CREATE TABLE db_datadict.tb_56 ( c1 TEXT );
  14355. ERROR 42000: CREATE command denied to user 'user_1'@'localhost' for table 'tb_56'
  14356. USE db_datadict;
  14357. user_1@localhost db_datadict
  14358. SELECT * FROM information_schema.user_privileges
  14359. WHERE grantee LIKE "%user%"
  14360. ORDER BY grantee, table_catalog, privilege_type;
  14361. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14362. 'user_1'@'localhost' NULL USAGE NO
  14363. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14364. 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
  14365. 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
  14366. 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
  14367. 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
  14368. SHOW GRANTS;
  14369. Grants for user_1@localhost
  14370. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14371. GRANT ALL PRIVILEGES ON `db_datadict`.* TO 'user_1'@'localhost' WITH GRANT OPTION
  14372. GRANT SELECT ON `mysql`.`user` TO 'user_1'@'localhost'
  14373. CREATE TABLE tb_57 ( c1 TEXT );
  14374. revoke privileges from user_1
  14375. -----------------------------
  14376. root@localhost information_schema
  14377. REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'user_1'@'localhost';
  14378. FLUSH PRIVILEGES;
  14379. SELECT * FROM information_schema.user_privileges
  14380. WHERE grantee LIKE "%user%"
  14381. ORDER BY grantee, table_catalog, privilege_type;
  14382. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14383. 'user_1'@'localhost' NULL USAGE NO
  14384. 'user_2'@'localhost' NULL INSERT NO
  14385. 'user_2'@'localhost' NULL UPDATE NO
  14386. 'user_3'@'localhost' NULL USAGE NO
  14387. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14388. 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
  14389. 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
  14390. 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
  14391. 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
  14392. SHOW GRANTS;
  14393. Grants for root@localhost
  14394. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14395. user_1@localhost db_datadict
  14396. SELECT * FROM information_schema.user_privileges
  14397. WHERE grantee LIKE "%user%"
  14398. ORDER BY grantee, table_catalog, privilege_type;
  14399. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14400. 'user_1'@'localhost' NULL USAGE NO
  14401. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14402. ERROR 42000: SELECT command denied to user 'user_1'@'localhost' for table 'user'
  14403. SHOW GRANTS;
  14404. Grants for user_1@localhost
  14405. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14406. CREATE TABLE db_datadict.tb_58 ( c1 TEXT );
  14407. USE db_datadict;
  14408. ERROR 42000: Access denied for user 'user_1'@'localhost' to database 'db_datadict'
  14409. CREATE TABLE db_datadict.tb_59 ( c1 TEXT );
  14410. root@localhost information_schema
  14411. DROP USER 'user_1'@'localhost';
  14412. DROP USER 'user_2'@'localhost';
  14413. DROP USER 'user_3'@'localhost';
  14414. DROP DATABASE IF EXISTS db_datadict;
  14415. Testcase 3.2.17: Checks on Performance - not here in this script!
  14416. --------------------------------------------------------------------------------
  14417. Testcase 3.2.18.1:
  14418. --------------------------------------------------------------------------------
  14419. USE information_schema;
  14420. DESC triggers;
  14421. Field Type Null Key Default Extra
  14422. TRIGGER_CATALOG varchar(4096) YES NULL
  14423. TRIGGER_SCHEMA varchar(64) NO
  14424. TRIGGER_NAME varchar(64) NO
  14425. EVENT_MANIPULATION varchar(6) NO
  14426. EVENT_OBJECT_CATALOG varchar(4096) YES NULL
  14427. EVENT_OBJECT_SCHEMA varchar(64) NO
  14428. EVENT_OBJECT_TABLE varchar(64) NO
  14429. ACTION_ORDER bigint(4) NO 0
  14430. ACTION_CONDITION longtext YES NULL
  14431. ACTION_STATEMENT longtext NO
  14432. ACTION_ORIENTATION varchar(9) NO
  14433. ACTION_TIMING varchar(6) NO
  14434. ACTION_REFERENCE_OLD_TABLE varchar(64) YES NULL
  14435. ACTION_REFERENCE_NEW_TABLE varchar(64) YES NULL
  14436. ACTION_REFERENCE_OLD_ROW varchar(3) NO
  14437. ACTION_REFERENCE_NEW_ROW varchar(3) NO
  14438. CREATED datetime YES NULL
  14439. SQL_MODE longtext NO
  14440. DEFINER longtext NO
  14441. CHARACTER_SET_CLIENT varchar(32) NO
  14442. COLLATION_CONNECTION varchar(32) NO
  14443. DATABASE_COLLATION varchar(32) NO
  14444. SHOW CREATE TABLE triggers;
  14445. Table Create Table
  14446. TRIGGERS CREATE TEMPORARY TABLE `TRIGGERS` (
  14447. `TRIGGER_CATALOG` varchar(4096) DEFAULT NULL,
  14448. `TRIGGER_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  14449. `TRIGGER_NAME` varchar(64) NOT NULL DEFAULT '',
  14450. `EVENT_MANIPULATION` varchar(6) NOT NULL DEFAULT '',
  14451. `EVENT_OBJECT_CATALOG` varchar(4096) DEFAULT NULL,
  14452. `EVENT_OBJECT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  14453. `EVENT_OBJECT_TABLE` varchar(64) NOT NULL DEFAULT '',
  14454. `ACTION_ORDER` bigint(4) NOT NULL DEFAULT '0',
  14455. `ACTION_CONDITION` longtext,
  14456. `ACTION_STATEMENT` longtext NOT NULL,
  14457. `ACTION_ORIENTATION` varchar(9) NOT NULL DEFAULT '',
  14458. `ACTION_TIMING` varchar(6) NOT NULL DEFAULT '',
  14459. `ACTION_REFERENCE_OLD_TABLE` varchar(64) DEFAULT NULL,
  14460. `ACTION_REFERENCE_NEW_TABLE` varchar(64) DEFAULT NULL,
  14461. `ACTION_REFERENCE_OLD_ROW` varchar(3) NOT NULL DEFAULT '',
  14462. `ACTION_REFERENCE_NEW_ROW` varchar(3) NOT NULL DEFAULT '',
  14463. `CREATED` datetime DEFAULT NULL,
  14464. `SQL_MODE` longtext NOT NULL,
  14465. `DEFINER` longtext NOT NULL,
  14466. `CHARACTER_SET_CLIENT` varchar(32) NOT NULL DEFAULT '',
  14467. `COLLATION_CONNECTION` varchar(32) NOT NULL DEFAULT '',
  14468. `DATABASE_COLLATION` varchar(32) NOT NULL DEFAULT ''
  14469. ) ENGINE=MyISAM DEFAULT CHARSET=utf8
  14470. SELECT COUNT(*) FROM information_schema.columns
  14471. WHERE table_schema = 'information_schema'
  14472. AND table_name = 'triggers'
  14473. ORDER BY ordinal_position;
  14474. COUNT(*)
  14475. 22
  14476. SELECT * FROM information_schema.columns
  14477. WHERE table_schema = 'information_schema'
  14478. AND table_name = 'triggers'
  14479. ORDER BY ordinal_position;
  14480. 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
  14481. NULL information_schema triggers TRIGGER_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  14482. NULL information_schema triggers TRIGGER_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14483. NULL information_schema triggers TRIGGER_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14484. NULL information_schema triggers EVENT_MANIPULATION 4 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  14485. NULL information_schema triggers EVENT_OBJECT_CATALOG 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  14486. NULL information_schema triggers EVENT_OBJECT_SCHEMA 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14487. NULL information_schema triggers EVENT_OBJECT_TABLE 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14488. NULL information_schema triggers ACTION_ORDER 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  14489. NULL information_schema triggers ACTION_CONDITION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  14490. NULL information_schema triggers ACTION_STATEMENT 10 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  14491. NULL information_schema triggers ACTION_ORIENTATION 11 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  14492. NULL information_schema triggers ACTION_TIMING 12 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  14493. NULL information_schema triggers ACTION_REFERENCE_OLD_TABLE 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14494. NULL information_schema triggers ACTION_REFERENCE_NEW_TABLE 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14495. NULL information_schema triggers ACTION_REFERENCE_OLD_ROW 15 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  14496. NULL information_schema triggers ACTION_REFERENCE_NEW_ROW 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  14497. NULL information_schema triggers CREATED 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  14498. NULL information_schema triggers SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  14499. NULL information_schema triggers DEFINER 19 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  14500. NULL information_schema triggers CHARACTER_SET_CLIENT 20 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  14501. NULL information_schema triggers COLLATION_CONNECTION 21 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  14502. NULL information_schema triggers DATABASE_COLLATION 22 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
  14503. Testcase 3.2.18.2 + 3.2.18.3:
  14504. --------------------------------------------------------------------------------
  14505. Testcase 3.2.19.1:
  14506. --------------------------------------------------------------------------------
  14507. checking a table that will be implemented later
  14508. -----------------------------------------------
  14509. DESC parameters;
  14510. ERROR 42S02: Unknown table 'parameters' in information_schema
  14511. Testcase 3.2.20.1:
  14512. --------------------------------------------------------------------------------
  14513. DESC referential_constraints;
  14514. Field Type Null Key Default Extra
  14515. CONSTRAINT_CATALOG varchar(512) YES NULL
  14516. CONSTRAINT_SCHEMA varchar(64) NO
  14517. CONSTRAINT_NAME varchar(64) NO
  14518. UNIQUE_CONSTRAINT_CATALOG varchar(512) YES NULL
  14519. UNIQUE_CONSTRAINT_SCHEMA varchar(64) NO
  14520. UNIQUE_CONSTRAINT_NAME varchar(64) NO
  14521. MATCH_OPTION varchar(64) NO
  14522. UPDATE_RULE varchar(64) NO
  14523. DELETE_RULE varchar(64) NO
  14524. TABLE_NAME varchar(64) NO
  14525. REFERENCED_TABLE_NAME varchar(64) NO
  14526. USE information_schema;
  14527. DESC referential_constraints;
  14528. Field Type Null Key Default Extra
  14529. CONSTRAINT_CATALOG varchar(4096) YES NULL
  14530. CONSTRAINT_SCHEMA varchar(64) NO
  14531. CONSTRAINT_NAME varchar(64) NO
  14532. UNIQUE_CONSTRAINT_CATALOG varchar(4096) YES NULL
  14533. UNIQUE_CONSTRAINT_SCHEMA varchar(64) NO
  14534. UNIQUE_CONSTRAINT_NAME varchar(64) NO
  14535. MATCH_OPTION varchar(64) NO
  14536. UPDATE_RULE varchar(64) NO
  14537. DELETE_RULE varchar(64) NO
  14538. TABLE_NAME varchar(64) NO
  14539. REFERENCED_TABLE_NAME varchar(64) NO
  14540. SHOW CREATE TABLE referential_constraints;
  14541. Table Create Table
  14542. REFERENTIAL_CONSTRAINTS CREATE TEMPORARY TABLE `REFERENTIAL_CONSTRAINTS` (
  14543. `CONSTRAINT_CATALOG` varchar(4096) DEFAULT NULL,
  14544. `CONSTRAINT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  14545. `CONSTRAINT_NAME` varchar(64) NOT NULL DEFAULT '',
  14546. `UNIQUE_CONSTRAINT_CATALOG` varchar(4096) DEFAULT NULL,
  14547. `UNIQUE_CONSTRAINT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  14548. `UNIQUE_CONSTRAINT_NAME` varchar(64) NOT NULL DEFAULT '',
  14549. `MATCH_OPTION` varchar(64) NOT NULL DEFAULT '',
  14550. `UPDATE_RULE` varchar(64) NOT NULL DEFAULT '',
  14551. `DELETE_RULE` varchar(64) NOT NULL DEFAULT '',
  14552. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  14553. `REFERENCED_TABLE_NAME` varchar(64) NOT NULL DEFAULT ''
  14554. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  14555. SELECT COUNT(*) FROM information_schema.columns
  14556. WHERE table_schema = 'information_schema'
  14557. AND table_name = 'referential_constraints'
  14558. ORDER BY ordinal_position;
  14559. COUNT(*)
  14560. 11
  14561. SELECT * FROM information_schema.columns
  14562. WHERE table_schema = 'information_schema'
  14563. AND table_name = 'referential_constraints'
  14564. ORDER BY ordinal_position;
  14565. 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
  14566. NULL information_schema referential_constraints CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  14567. NULL information_schema referential_constraints CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14568. NULL information_schema referential_constraints CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14569. NULL information_schema referential_constraints UNIQUE_CONSTRAINT_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  14570. NULL information_schema referential_constraints UNIQUE_CONSTRAINT_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14571. NULL information_schema referential_constraints UNIQUE_CONSTRAINT_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14572. NULL information_schema referential_constraints MATCH_OPTION 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14573. NULL information_schema referential_constraints UPDATE_RULE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14574. NULL information_schema referential_constraints DELETE_RULE 9 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14575. NULL information_schema referential_constraints TABLE_NAME 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14576. NULL information_schema referential_constraints REFERENCED_TABLE_NAME 11 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14577. *** End of Data Dictionary Tests ***
  14578. --------------------------------------------------------------------------------
  14579. DROP TABLE IF EXISTS test.tb1;
  14580. DROP TABLE IF EXISTS test.tb2;
  14581. DROP TABLE IF EXISTS test.tb3;
  14582. DROP TABLE IF EXISTS test.tb4;
  14583. DROP TABLE IF EXISTS test.t1;
  14584. DROP TABLE IF EXISTS test.t2;
  14585. DROP TABLE IF EXISTS test.t3;
  14586. DROP TABLE IF EXISTS test.t4;
  14587. DROP TABLE IF EXISTS test.t7;
  14588. DROP TABLE IF EXISTS test.t8;
  14589. DROP TABLE IF EXISTS test.t9;
  14590. DROP TABLE IF EXISTS test.t10;
  14591. DROP TABLE IF EXISTS test.t11;
  14592. DROP DATABASE IF EXISTS test1;
  14593. DROP DATABASE IF EXISTS test4;
  14594. DROP DATABASE IF EXISTS db_datadict;
  14595. DROP DATABASE IF EXISTS db_datadict_1;
  14596. DROP DATABASE IF EXISTS db_datadict_2;