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.

14874 lines
869 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. . Currently (Dec 19, 2005) this .result file is checked OK for Linux 5.0.18-bk
  13. . (ChangeSet@1.1993, 2005-12-19 16:21:02+04:00). Using the available Windows
  14. . version 5.0.16 there are some known differences that can be ignored:
  15. .
  16. . - Fix for bug#14271 I_S: columns has no size for (var)binary columns
  17. . - bug#14290 (CHARACTER_MAXIMUM_LENGTH values for columns using ucs2 have been fixed)
  18. . - new column INFORMATION_SCHEMA.TRIGGERS.DEFINER is still not present in 5.0.16
  19. . - (:5055, :5122, :5215) 3 warnings now errors 1044 at call db_datadict.sp_4_1_3()
  20. .
  21. --------------------------------------------------------------------------------
  22. FIXME: There are subtests that are switched off due to known bugs:
  23. ------------------------------------------------------------------
  24. SELECT 1 AS "have_bug_11589";
  25. have_bug_11589
  26. 1
  27. There are some statements where the ps-protocol is switched off.
  28. This may come from the bug listed below, ir from other problems.
  29. Bug#11589: mysqltest, --ps-protocol, strange output, float/double/real with zerofill
  30. --------------------------------------------------------------------------------
  31. SET @NO_REFRESH = IF( '' = '', 0, 1);
  32. DROP DATABASE IF EXISTS test1;
  33. CREATE DATABASE test1;
  34. USE test;
  35. USE test;
  36. USE test;
  37. DROP TABLE IF EXISTS t1, t2, t4, t10, t11;
  38. CREATE TABLE t1 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = ndb;
  39. CREATE TABLE t2 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = ndb;
  40. CREATE TABLE t4 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = ndb;
  41. CREATE TABLE t10 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = ndb;
  42. CREATE TABLE t11 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = ndb;
  43. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t1;
  44. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t2;
  45. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t4;
  46. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t10;
  47. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t11;
  48. drop TABLE if exists t3;
  49. CREATE TABLE t3 (f1 char(20), f2 char(20), f3 integer) ENGINE = ndb;
  50. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t3.txt' INTO TABLE t3;
  51. drop database if exists test4;
  52. CREATE database test4;
  53. use test4;
  54. CREATE TABLE t6 (f1 char(20), f2 char(25), f3 date, f4 int, f5 char(25), f6 int) ENGINE = ndb;
  55. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t4.txt' INTO TABLE t6;
  56. use test;
  57. drop TABLE if exists t7, t8;
  58. CREATE TABLE t7 (f1 char(20), f2 char(25), f3 date, f4 int) ENGINE = ndb;
  59. CREATE TABLE t8 (f1 char(20), f2 char(25), f3 date, f4 int) ENGINE = ndb;
  60. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t7.txt' INTO TABLE t7;
  61. Warnings:
  62. Warning 1265 Data truncated for column 'f3' at row 1
  63. Warning 1265 Data truncated for column 'f3' at row 2
  64. Warning 1265 Data truncated for column 'f3' at row 3
  65. Warning 1265 Data truncated for column 'f3' at row 4
  66. Warning 1265 Data truncated for column 'f3' at row 5
  67. Warning 1265 Data truncated for column 'f3' at row 6
  68. Warning 1265 Data truncated for column 'f3' at row 7
  69. Warning 1265 Data truncated for column 'f3' at row 8
  70. Warning 1265 Data truncated for column 'f3' at row 9
  71. Warning 1265 Data truncated for column 'f3' at row 10
  72. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t7.txt' INTO TABLE t8;
  73. Warnings:
  74. Warning 1265 Data truncated for column 'f3' at row 1
  75. Warning 1265 Data truncated for column 'f3' at row 2
  76. Warning 1265 Data truncated for column 'f3' at row 3
  77. Warning 1265 Data truncated for column 'f3' at row 4
  78. Warning 1265 Data truncated for column 'f3' at row 5
  79. Warning 1265 Data truncated for column 'f3' at row 6
  80. Warning 1265 Data truncated for column 'f3' at row 7
  81. Warning 1265 Data truncated for column 'f3' at row 8
  82. Warning 1265 Data truncated for column 'f3' at row 9
  83. Warning 1265 Data truncated for column 'f3' at row 10
  84. drop TABLE if exists t9;
  85. CREATE TABLE t9 (f1 int, f2 char(25), f3 int) ENGINE = ndb;
  86. LOAD DATA INFILE 'MYSQL_TEST_DIR/suite/funcs_1/data/t9.txt' INTO TABLE t9;
  87. use information_schema;
  88. root@localhost information_schema
  89. Testcase 3.2.1.1:
  90. --------------------------------------------------------------------------------
  91. DROP DATABASE IF EXISTS db_datadict;
  92. CREATE DATABASE db_datadict;
  93. USE db_datadict;
  94. CREATE VIEW v1 AS SELECT * FROM information_schema.tables;
  95. CREATE OR REPLACE VIEW db_datadict.vu1 as
  96. SELECT grantee AS u
  97. FROM information_schema.user_privileges;
  98. CREATE OR REPLACE VIEW db_datadict.vu as
  99. SELECT DISTINCT u,
  100. SUBSTRING( u, LENGTH(SUBSTRING_INDEX(u,_utf8'@',1))+3 )
  101. AS server,
  102. SUBSTRING( u, LENGTH(SUBSTRING_INDEX(u,_utf8'@',1))+3,
  103. LENGTH( SUBSTRING( u,
  104. LENGTH( SUBSTRING_INDEX(u, _utf8'@',1)) +3 )) - 1 )
  105. AS Server_Clean
  106. FROM db_datadict.vu1;
  107. SELECT * FROM db_datadict.vu;
  108. u server Server_Clean
  109. 'root'@'localhost' localhost' localhost
  110. 'root'@'127.0.0.1' 127.0.0.1' 127.0.0.1
  111. ''@'localhost' localhost' localhost
  112. 'root'@'<SERVER_NAME>' <SERVER_NAME>' <SERVER_NAME>
  113. ''@'<SERVER_NAME>' <SERVER_NAME>' <SERVER_NAME>
  114. CREATE PROCEDURE db_datadict.sp_1()
  115. BEGIN
  116. SELECT * FROM db_datadict.v1;
  117. END//
  118. USE information_schema;
  119. SHOW tables;
  120. Tables_in_information_schema
  121. CHARACTER_SETS
  122. COLLATIONS
  123. COLLATION_CHARACTER_SET_APPLICABILITY
  124. COLUMNS
  125. COLUMN_PRIVILEGES
  126. ENGINES
  127. EVENTS
  128. FILES
  129. GLOBAL_STATUS
  130. GLOBAL_VARIABLES
  131. KEY_COLUMN_USAGE
  132. PARTITIONS
  133. PLUGINS
  134. PROCESSLIST
  135. REFERENTIAL_CONSTRAINTS
  136. ROUTINES
  137. SCHEMATA
  138. SCHEMA_PRIVILEGES
  139. SESSION_STATUS
  140. SESSION_VARIABLES
  141. STATISTICS
  142. TABLES
  143. TABLE_CONSTRAINTS
  144. TABLE_PRIVILEGES
  145. TRIGGERS
  146. USER_PRIVILEGES
  147. VIEWS
  148. select * from schemata ORDER BY 2 DESC, 1 ASC;
  149. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  150. NULL test4 latin1 latin1_swedish_ci NULL
  151. NULL test1 latin1 latin1_swedish_ci NULL
  152. NULL test latin1 latin1_swedish_ci NULL
  153. NULL mysql latin1 latin1_swedish_ci NULL
  154. NULL information_schema utf8 utf8_general_ci NULL
  155. NULL db_datadict latin1 latin1_swedish_ci NULL
  156. SELECT * FROM tables
  157. WHERE table_schema = 'information_schema';
  158. TABLE_CATALOG NULL
  159. TABLE_SCHEMA information_schema
  160. TABLE_NAME CHARACTER_SETS
  161. TABLE_TYPE SYSTEM VIEW
  162. ENGINE MEMORY
  163. VERSION 10
  164. ROW_FORMAT Fixed
  165. TABLE_ROWS NULL
  166. AVG_ROW_LENGTH #ARL#
  167. DATA_LENGTH #DL#
  168. MAX_DATA_LENGTH #MDL#
  169. INDEX_LENGTH #IL#
  170. DATA_FREE #DF#
  171. AUTO_INCREMENT NULL
  172. CREATE_TIME YYYY-MM-DD hh:mm:ss
  173. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  174. CHECK_TIME NULL
  175. TABLE_COLLATION utf8_general_ci
  176. CHECKSUM NULL
  177. CREATE_OPTIONS #CO#
  178. TABLE_COMMENT
  179. TABLE_CATALOG NULL
  180. TABLE_SCHEMA information_schema
  181. TABLE_NAME COLLATIONS
  182. TABLE_TYPE SYSTEM VIEW
  183. ENGINE MEMORY
  184. VERSION 10
  185. ROW_FORMAT Fixed
  186. TABLE_ROWS NULL
  187. AVG_ROW_LENGTH #ARL#
  188. DATA_LENGTH #DL#
  189. MAX_DATA_LENGTH #MDL#
  190. INDEX_LENGTH #IL#
  191. DATA_FREE #DF#
  192. AUTO_INCREMENT NULL
  193. CREATE_TIME YYYY-MM-DD hh:mm:ss
  194. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  195. CHECK_TIME NULL
  196. TABLE_COLLATION utf8_general_ci
  197. CHECKSUM NULL
  198. CREATE_OPTIONS #CO#
  199. TABLE_COMMENT
  200. TABLE_CATALOG NULL
  201. TABLE_SCHEMA information_schema
  202. TABLE_NAME COLLATION_CHARACTER_SET_APPLICABILITY
  203. TABLE_TYPE SYSTEM VIEW
  204. ENGINE MEMORY
  205. VERSION 10
  206. ROW_FORMAT Fixed
  207. TABLE_ROWS NULL
  208. AVG_ROW_LENGTH #ARL#
  209. DATA_LENGTH #DL#
  210. MAX_DATA_LENGTH #MDL#
  211. INDEX_LENGTH #IL#
  212. DATA_FREE #DF#
  213. AUTO_INCREMENT NULL
  214. CREATE_TIME YYYY-MM-DD hh:mm:ss
  215. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  216. CHECK_TIME NULL
  217. TABLE_COLLATION utf8_general_ci
  218. CHECKSUM NULL
  219. CREATE_OPTIONS #CO#
  220. TABLE_COMMENT
  221. TABLE_CATALOG NULL
  222. TABLE_SCHEMA information_schema
  223. TABLE_NAME COLUMNS
  224. TABLE_TYPE SYSTEM VIEW
  225. ENGINE MyISAM
  226. VERSION 10
  227. ROW_FORMAT Dynamic
  228. TABLE_ROWS NULL
  229. AVG_ROW_LENGTH #ARL#
  230. DATA_LENGTH #DL#
  231. MAX_DATA_LENGTH #MDL#
  232. INDEX_LENGTH #IL#
  233. DATA_FREE #DF#
  234. AUTO_INCREMENT NULL
  235. CREATE_TIME YYYY-MM-DD hh:mm:ss
  236. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  237. CHECK_TIME NULL
  238. TABLE_COLLATION utf8_general_ci
  239. CHECKSUM NULL
  240. CREATE_OPTIONS #CO#
  241. TABLE_COMMENT
  242. TABLE_CATALOG NULL
  243. TABLE_SCHEMA information_schema
  244. TABLE_NAME COLUMN_PRIVILEGES
  245. TABLE_TYPE SYSTEM VIEW
  246. ENGINE MEMORY
  247. VERSION 10
  248. ROW_FORMAT Fixed
  249. TABLE_ROWS NULL
  250. AVG_ROW_LENGTH #ARL#
  251. DATA_LENGTH #DL#
  252. MAX_DATA_LENGTH #MDL#
  253. INDEX_LENGTH #IL#
  254. DATA_FREE #DF#
  255. AUTO_INCREMENT NULL
  256. CREATE_TIME YYYY-MM-DD hh:mm:ss
  257. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  258. CHECK_TIME NULL
  259. TABLE_COLLATION utf8_general_ci
  260. CHECKSUM NULL
  261. CREATE_OPTIONS #CO#
  262. TABLE_COMMENT
  263. TABLE_CATALOG NULL
  264. TABLE_SCHEMA information_schema
  265. TABLE_NAME ENGINES
  266. TABLE_TYPE SYSTEM VIEW
  267. ENGINE MEMORY
  268. VERSION 10
  269. ROW_FORMAT Fixed
  270. TABLE_ROWS NULL
  271. AVG_ROW_LENGTH #ARL#
  272. DATA_LENGTH #DL#
  273. MAX_DATA_LENGTH #MDL#
  274. INDEX_LENGTH #IL#
  275. DATA_FREE #DF#
  276. AUTO_INCREMENT NULL
  277. CREATE_TIME YYYY-MM-DD hh:mm:ss
  278. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  279. CHECK_TIME NULL
  280. TABLE_COLLATION utf8_general_ci
  281. CHECKSUM NULL
  282. CREATE_OPTIONS #CO#
  283. TABLE_COMMENT
  284. TABLE_CATALOG NULL
  285. TABLE_SCHEMA information_schema
  286. TABLE_NAME EVENTS
  287. TABLE_TYPE SYSTEM VIEW
  288. ENGINE MyISAM
  289. VERSION 10
  290. ROW_FORMAT Dynamic
  291. TABLE_ROWS NULL
  292. AVG_ROW_LENGTH #ARL#
  293. DATA_LENGTH #DL#
  294. MAX_DATA_LENGTH #MDL#
  295. INDEX_LENGTH #IL#
  296. DATA_FREE #DF#
  297. AUTO_INCREMENT NULL
  298. CREATE_TIME YYYY-MM-DD hh:mm:ss
  299. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  300. CHECK_TIME NULL
  301. TABLE_COLLATION utf8_general_ci
  302. CHECKSUM NULL
  303. CREATE_OPTIONS #CO#
  304. TABLE_COMMENT
  305. TABLE_CATALOG NULL
  306. TABLE_SCHEMA information_schema
  307. TABLE_NAME FILES
  308. TABLE_TYPE SYSTEM VIEW
  309. ENGINE MEMORY
  310. VERSION 10
  311. ROW_FORMAT Fixed
  312. TABLE_ROWS NULL
  313. AVG_ROW_LENGTH #ARL#
  314. DATA_LENGTH #DL#
  315. MAX_DATA_LENGTH #MDL#
  316. INDEX_LENGTH #IL#
  317. DATA_FREE #DF#
  318. AUTO_INCREMENT NULL
  319. CREATE_TIME YYYY-MM-DD hh:mm:ss
  320. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  321. CHECK_TIME NULL
  322. TABLE_COLLATION utf8_general_ci
  323. CHECKSUM NULL
  324. CREATE_OPTIONS #CO#
  325. TABLE_COMMENT
  326. TABLE_CATALOG NULL
  327. TABLE_SCHEMA information_schema
  328. TABLE_NAME GLOBAL_STATUS
  329. TABLE_TYPE SYSTEM VIEW
  330. ENGINE MEMORY
  331. VERSION 10
  332. ROW_FORMAT Fixed
  333. TABLE_ROWS NULL
  334. AVG_ROW_LENGTH #ARL#
  335. DATA_LENGTH #DL#
  336. MAX_DATA_LENGTH #MDL#
  337. INDEX_LENGTH #IL#
  338. DATA_FREE #DF#
  339. AUTO_INCREMENT NULL
  340. CREATE_TIME YYYY-MM-DD hh:mm:ss
  341. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  342. CHECK_TIME NULL
  343. TABLE_COLLATION utf8_general_ci
  344. CHECKSUM NULL
  345. CREATE_OPTIONS #CO#
  346. TABLE_COMMENT
  347. TABLE_CATALOG NULL
  348. TABLE_SCHEMA information_schema
  349. TABLE_NAME GLOBAL_VARIABLES
  350. TABLE_TYPE SYSTEM VIEW
  351. ENGINE MyISAM
  352. VERSION 10
  353. ROW_FORMAT Dynamic
  354. TABLE_ROWS NULL
  355. AVG_ROW_LENGTH #ARL#
  356. DATA_LENGTH #DL#
  357. MAX_DATA_LENGTH #MDL#
  358. INDEX_LENGTH #IL#
  359. DATA_FREE #DF#
  360. AUTO_INCREMENT NULL
  361. CREATE_TIME YYYY-MM-DD hh:mm:ss
  362. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  363. CHECK_TIME NULL
  364. TABLE_COLLATION utf8_general_ci
  365. CHECKSUM NULL
  366. CREATE_OPTIONS #CO#
  367. TABLE_COMMENT
  368. TABLE_CATALOG NULL
  369. TABLE_SCHEMA information_schema
  370. TABLE_NAME KEY_COLUMN_USAGE
  371. TABLE_TYPE SYSTEM VIEW
  372. ENGINE MEMORY
  373. VERSION 10
  374. ROW_FORMAT Fixed
  375. TABLE_ROWS NULL
  376. AVG_ROW_LENGTH #ARL#
  377. DATA_LENGTH #DL#
  378. MAX_DATA_LENGTH #MDL#
  379. INDEX_LENGTH #IL#
  380. DATA_FREE #DF#
  381. AUTO_INCREMENT NULL
  382. CREATE_TIME YYYY-MM-DD hh:mm:ss
  383. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  384. CHECK_TIME NULL
  385. TABLE_COLLATION utf8_general_ci
  386. CHECKSUM NULL
  387. CREATE_OPTIONS #CO#
  388. TABLE_COMMENT
  389. TABLE_CATALOG NULL
  390. TABLE_SCHEMA information_schema
  391. TABLE_NAME PARTITIONS
  392. TABLE_TYPE SYSTEM VIEW
  393. ENGINE MyISAM
  394. VERSION 10
  395. ROW_FORMAT Dynamic
  396. TABLE_ROWS NULL
  397. AVG_ROW_LENGTH #ARL#
  398. DATA_LENGTH #DL#
  399. MAX_DATA_LENGTH #MDL#
  400. INDEX_LENGTH #IL#
  401. DATA_FREE #DF#
  402. AUTO_INCREMENT NULL
  403. CREATE_TIME YYYY-MM-DD hh:mm:ss
  404. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  405. CHECK_TIME NULL
  406. TABLE_COLLATION utf8_general_ci
  407. CHECKSUM NULL
  408. CREATE_OPTIONS #CO#
  409. TABLE_COMMENT
  410. TABLE_CATALOG NULL
  411. TABLE_SCHEMA information_schema
  412. TABLE_NAME PLUGINS
  413. TABLE_TYPE SYSTEM VIEW
  414. ENGINE MyISAM
  415. VERSION 10
  416. ROW_FORMAT Dynamic
  417. TABLE_ROWS NULL
  418. AVG_ROW_LENGTH #ARL#
  419. DATA_LENGTH #DL#
  420. MAX_DATA_LENGTH #MDL#
  421. INDEX_LENGTH #IL#
  422. DATA_FREE #DF#
  423. AUTO_INCREMENT NULL
  424. CREATE_TIME YYYY-MM-DD hh:mm:ss
  425. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  426. CHECK_TIME NULL
  427. TABLE_COLLATION utf8_general_ci
  428. CHECKSUM NULL
  429. CREATE_OPTIONS #CO#
  430. TABLE_COMMENT
  431. TABLE_CATALOG NULL
  432. TABLE_SCHEMA information_schema
  433. TABLE_NAME PROCESSLIST
  434. TABLE_TYPE SYSTEM VIEW
  435. ENGINE MyISAM
  436. VERSION 10
  437. ROW_FORMAT Dynamic
  438. TABLE_ROWS NULL
  439. AVG_ROW_LENGTH #ARL#
  440. DATA_LENGTH #DL#
  441. MAX_DATA_LENGTH #MDL#
  442. INDEX_LENGTH #IL#
  443. DATA_FREE #DF#
  444. AUTO_INCREMENT NULL
  445. CREATE_TIME YYYY-MM-DD hh:mm:ss
  446. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  447. CHECK_TIME NULL
  448. TABLE_COLLATION utf8_general_ci
  449. CHECKSUM NULL
  450. CREATE_OPTIONS #CO#
  451. TABLE_COMMENT
  452. TABLE_CATALOG NULL
  453. TABLE_SCHEMA information_schema
  454. TABLE_NAME REFERENTIAL_CONSTRAINTS
  455. TABLE_TYPE SYSTEM VIEW
  456. ENGINE MEMORY
  457. VERSION 10
  458. ROW_FORMAT Fixed
  459. TABLE_ROWS NULL
  460. AVG_ROW_LENGTH #ARL#
  461. DATA_LENGTH #DL#
  462. MAX_DATA_LENGTH #MDL#
  463. INDEX_LENGTH #IL#
  464. DATA_FREE #DF#
  465. AUTO_INCREMENT NULL
  466. CREATE_TIME YYYY-MM-DD hh:mm:ss
  467. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  468. CHECK_TIME NULL
  469. TABLE_COLLATION utf8_general_ci
  470. CHECKSUM NULL
  471. CREATE_OPTIONS #CO#
  472. TABLE_COMMENT
  473. TABLE_CATALOG NULL
  474. TABLE_SCHEMA information_schema
  475. TABLE_NAME ROUTINES
  476. TABLE_TYPE SYSTEM VIEW
  477. ENGINE MyISAM
  478. VERSION 10
  479. ROW_FORMAT Dynamic
  480. TABLE_ROWS NULL
  481. AVG_ROW_LENGTH #ARL#
  482. DATA_LENGTH #DL#
  483. MAX_DATA_LENGTH #MDL#
  484. INDEX_LENGTH #IL#
  485. DATA_FREE #DF#
  486. AUTO_INCREMENT NULL
  487. CREATE_TIME YYYY-MM-DD hh:mm:ss
  488. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  489. CHECK_TIME NULL
  490. TABLE_COLLATION utf8_general_ci
  491. CHECKSUM NULL
  492. CREATE_OPTIONS #CO#
  493. TABLE_COMMENT
  494. TABLE_CATALOG NULL
  495. TABLE_SCHEMA information_schema
  496. TABLE_NAME SCHEMATA
  497. TABLE_TYPE SYSTEM VIEW
  498. ENGINE MEMORY
  499. VERSION 10
  500. ROW_FORMAT Fixed
  501. TABLE_ROWS NULL
  502. AVG_ROW_LENGTH #ARL#
  503. DATA_LENGTH #DL#
  504. MAX_DATA_LENGTH #MDL#
  505. INDEX_LENGTH #IL#
  506. DATA_FREE #DF#
  507. AUTO_INCREMENT NULL
  508. CREATE_TIME YYYY-MM-DD hh:mm:ss
  509. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  510. CHECK_TIME NULL
  511. TABLE_COLLATION utf8_general_ci
  512. CHECKSUM NULL
  513. CREATE_OPTIONS #CO#
  514. TABLE_COMMENT
  515. TABLE_CATALOG NULL
  516. TABLE_SCHEMA information_schema
  517. TABLE_NAME SCHEMA_PRIVILEGES
  518. TABLE_TYPE SYSTEM VIEW
  519. ENGINE MEMORY
  520. VERSION 10
  521. ROW_FORMAT Fixed
  522. TABLE_ROWS NULL
  523. AVG_ROW_LENGTH #ARL#
  524. DATA_LENGTH #DL#
  525. MAX_DATA_LENGTH #MDL#
  526. INDEX_LENGTH #IL#
  527. DATA_FREE #DF#
  528. AUTO_INCREMENT NULL
  529. CREATE_TIME YYYY-MM-DD hh:mm:ss
  530. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  531. CHECK_TIME NULL
  532. TABLE_COLLATION utf8_general_ci
  533. CHECKSUM NULL
  534. CREATE_OPTIONS #CO#
  535. TABLE_COMMENT
  536. TABLE_CATALOG NULL
  537. TABLE_SCHEMA information_schema
  538. TABLE_NAME SESSION_STATUS
  539. TABLE_TYPE SYSTEM VIEW
  540. ENGINE MEMORY
  541. VERSION 10
  542. ROW_FORMAT Fixed
  543. TABLE_ROWS NULL
  544. AVG_ROW_LENGTH #ARL#
  545. DATA_LENGTH #DL#
  546. MAX_DATA_LENGTH #MDL#
  547. INDEX_LENGTH #IL#
  548. DATA_FREE #DF#
  549. AUTO_INCREMENT NULL
  550. CREATE_TIME YYYY-MM-DD hh:mm:ss
  551. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  552. CHECK_TIME NULL
  553. TABLE_COLLATION utf8_general_ci
  554. CHECKSUM NULL
  555. CREATE_OPTIONS #CO#
  556. TABLE_COMMENT
  557. TABLE_CATALOG NULL
  558. TABLE_SCHEMA information_schema
  559. TABLE_NAME SESSION_VARIABLES
  560. TABLE_TYPE SYSTEM VIEW
  561. ENGINE MyISAM
  562. VERSION 10
  563. ROW_FORMAT Dynamic
  564. TABLE_ROWS NULL
  565. AVG_ROW_LENGTH #ARL#
  566. DATA_LENGTH #DL#
  567. MAX_DATA_LENGTH #MDL#
  568. INDEX_LENGTH #IL#
  569. DATA_FREE #DF#
  570. AUTO_INCREMENT NULL
  571. CREATE_TIME YYYY-MM-DD hh:mm:ss
  572. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  573. CHECK_TIME NULL
  574. TABLE_COLLATION utf8_general_ci
  575. CHECKSUM NULL
  576. CREATE_OPTIONS #CO#
  577. TABLE_COMMENT
  578. TABLE_CATALOG NULL
  579. TABLE_SCHEMA information_schema
  580. TABLE_NAME STATISTICS
  581. TABLE_TYPE SYSTEM VIEW
  582. ENGINE MEMORY
  583. VERSION 10
  584. ROW_FORMAT Fixed
  585. TABLE_ROWS NULL
  586. AVG_ROW_LENGTH #ARL#
  587. DATA_LENGTH #DL#
  588. MAX_DATA_LENGTH #MDL#
  589. INDEX_LENGTH #IL#
  590. DATA_FREE #DF#
  591. AUTO_INCREMENT NULL
  592. CREATE_TIME YYYY-MM-DD hh:mm:ss
  593. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  594. CHECK_TIME NULL
  595. TABLE_COLLATION utf8_general_ci
  596. CHECKSUM NULL
  597. CREATE_OPTIONS #CO#
  598. TABLE_COMMENT
  599. TABLE_CATALOG NULL
  600. TABLE_SCHEMA information_schema
  601. TABLE_NAME TABLES
  602. TABLE_TYPE SYSTEM VIEW
  603. ENGINE MEMORY
  604. VERSION 10
  605. ROW_FORMAT Fixed
  606. TABLE_ROWS NULL
  607. AVG_ROW_LENGTH #ARL#
  608. DATA_LENGTH #DL#
  609. MAX_DATA_LENGTH #MDL#
  610. INDEX_LENGTH #IL#
  611. DATA_FREE #DF#
  612. AUTO_INCREMENT NULL
  613. CREATE_TIME YYYY-MM-DD hh:mm:ss
  614. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  615. CHECK_TIME NULL
  616. TABLE_COLLATION utf8_general_ci
  617. CHECKSUM NULL
  618. CREATE_OPTIONS #CO#
  619. TABLE_COMMENT
  620. TABLE_CATALOG NULL
  621. TABLE_SCHEMA information_schema
  622. TABLE_NAME TABLE_CONSTRAINTS
  623. TABLE_TYPE SYSTEM VIEW
  624. ENGINE MEMORY
  625. VERSION 10
  626. ROW_FORMAT Fixed
  627. TABLE_ROWS NULL
  628. AVG_ROW_LENGTH #ARL#
  629. DATA_LENGTH #DL#
  630. MAX_DATA_LENGTH #MDL#
  631. INDEX_LENGTH #IL#
  632. DATA_FREE #DF#
  633. AUTO_INCREMENT NULL
  634. CREATE_TIME YYYY-MM-DD hh:mm:ss
  635. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  636. CHECK_TIME NULL
  637. TABLE_COLLATION utf8_general_ci
  638. CHECKSUM NULL
  639. CREATE_OPTIONS #CO#
  640. TABLE_COMMENT
  641. TABLE_CATALOG NULL
  642. TABLE_SCHEMA information_schema
  643. TABLE_NAME TABLE_PRIVILEGES
  644. TABLE_TYPE SYSTEM VIEW
  645. ENGINE MEMORY
  646. VERSION 10
  647. ROW_FORMAT Fixed
  648. TABLE_ROWS NULL
  649. AVG_ROW_LENGTH #ARL#
  650. DATA_LENGTH #DL#
  651. MAX_DATA_LENGTH #MDL#
  652. INDEX_LENGTH #IL#
  653. DATA_FREE #DF#
  654. AUTO_INCREMENT NULL
  655. CREATE_TIME YYYY-MM-DD hh:mm:ss
  656. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  657. CHECK_TIME NULL
  658. TABLE_COLLATION utf8_general_ci
  659. CHECKSUM NULL
  660. CREATE_OPTIONS #CO#
  661. TABLE_COMMENT
  662. TABLE_CATALOG NULL
  663. TABLE_SCHEMA information_schema
  664. TABLE_NAME TRIGGERS
  665. TABLE_TYPE SYSTEM VIEW
  666. ENGINE MyISAM
  667. VERSION 10
  668. ROW_FORMAT Dynamic
  669. TABLE_ROWS NULL
  670. AVG_ROW_LENGTH #ARL#
  671. DATA_LENGTH #DL#
  672. MAX_DATA_LENGTH #MDL#
  673. INDEX_LENGTH #IL#
  674. DATA_FREE #DF#
  675. AUTO_INCREMENT NULL
  676. CREATE_TIME YYYY-MM-DD hh:mm:ss
  677. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  678. CHECK_TIME NULL
  679. TABLE_COLLATION utf8_general_ci
  680. CHECKSUM NULL
  681. CREATE_OPTIONS #CO#
  682. TABLE_COMMENT
  683. TABLE_CATALOG NULL
  684. TABLE_SCHEMA information_schema
  685. TABLE_NAME USER_PRIVILEGES
  686. TABLE_TYPE SYSTEM VIEW
  687. ENGINE MEMORY
  688. VERSION 10
  689. ROW_FORMAT Fixed
  690. TABLE_ROWS NULL
  691. AVG_ROW_LENGTH #ARL#
  692. DATA_LENGTH #DL#
  693. MAX_DATA_LENGTH #MDL#
  694. INDEX_LENGTH #IL#
  695. DATA_FREE #DF#
  696. AUTO_INCREMENT NULL
  697. CREATE_TIME YYYY-MM-DD hh:mm:ss
  698. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  699. CHECK_TIME NULL
  700. TABLE_COLLATION utf8_general_ci
  701. CHECKSUM NULL
  702. CREATE_OPTIONS #CO#
  703. TABLE_COMMENT
  704. TABLE_CATALOG NULL
  705. TABLE_SCHEMA information_schema
  706. TABLE_NAME VIEWS
  707. TABLE_TYPE SYSTEM VIEW
  708. ENGINE MyISAM
  709. VERSION 10
  710. ROW_FORMAT Dynamic
  711. TABLE_ROWS NULL
  712. AVG_ROW_LENGTH #ARL#
  713. DATA_LENGTH #DL#
  714. MAX_DATA_LENGTH #MDL#
  715. INDEX_LENGTH #IL#
  716. DATA_FREE #DF#
  717. AUTO_INCREMENT NULL
  718. CREATE_TIME YYYY-MM-DD hh:mm:ss
  719. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  720. CHECK_TIME NULL
  721. TABLE_COLLATION utf8_general_ci
  722. CHECKSUM NULL
  723. CREATE_OPTIONS #CO#
  724. TABLE_COMMENT
  725. SELECT * FROM tables
  726. WHERE NOT( table_schema = 'information_schema');
  727. TABLE_CATALOG NULL
  728. TABLE_SCHEMA db_datadict
  729. TABLE_NAME v1
  730. TABLE_TYPE VIEW
  731. ENGINE NULL
  732. VERSION NULL
  733. ROW_FORMAT NULL
  734. TABLE_ROWS NULL
  735. AVG_ROW_LENGTH #ARL#
  736. DATA_LENGTH #DL#
  737. MAX_DATA_LENGTH #MDL#
  738. INDEX_LENGTH #IL#
  739. DATA_FREE #DF#
  740. AUTO_INCREMENT NULL
  741. CREATE_TIME YYYY-MM-DD hh:mm:ss
  742. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  743. CHECK_TIME NULL
  744. TABLE_COLLATION NULL
  745. CHECKSUM NULL
  746. CREATE_OPTIONS NULL
  747. TABLE_COMMENT VIEW
  748. TABLE_CATALOG NULL
  749. TABLE_SCHEMA db_datadict
  750. TABLE_NAME vu
  751. TABLE_TYPE VIEW
  752. ENGINE NULL
  753. VERSION NULL
  754. ROW_FORMAT NULL
  755. TABLE_ROWS NULL
  756. AVG_ROW_LENGTH #ARL#
  757. DATA_LENGTH #DL#
  758. MAX_DATA_LENGTH #MDL#
  759. INDEX_LENGTH #IL#
  760. DATA_FREE #DF#
  761. AUTO_INCREMENT NULL
  762. CREATE_TIME YYYY-MM-DD hh:mm:ss
  763. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  764. CHECK_TIME NULL
  765. TABLE_COLLATION NULL
  766. CHECKSUM NULL
  767. CREATE_OPTIONS NULL
  768. TABLE_COMMENT VIEW
  769. TABLE_CATALOG NULL
  770. TABLE_SCHEMA db_datadict
  771. TABLE_NAME vu1
  772. TABLE_TYPE VIEW
  773. ENGINE NULL
  774. VERSION NULL
  775. ROW_FORMAT NULL
  776. TABLE_ROWS NULL
  777. AVG_ROW_LENGTH #ARL#
  778. DATA_LENGTH #DL#
  779. MAX_DATA_LENGTH #MDL#
  780. INDEX_LENGTH #IL#
  781. DATA_FREE #DF#
  782. AUTO_INCREMENT NULL
  783. CREATE_TIME YYYY-MM-DD hh:mm:ss
  784. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  785. CHECK_TIME NULL
  786. TABLE_COLLATION NULL
  787. CHECKSUM NULL
  788. CREATE_OPTIONS NULL
  789. TABLE_COMMENT VIEW
  790. TABLE_CATALOG NULL
  791. TABLE_SCHEMA mysql
  792. TABLE_NAME user
  793. TABLE_TYPE BASE TABLE
  794. ENGINE MyISAM
  795. VERSION 10
  796. ROW_FORMAT Dynamic
  797. TABLE_ROWS 5
  798. AVG_ROW_LENGTH #ARL#
  799. DATA_LENGTH #DL#
  800. MAX_DATA_LENGTH #MDL#
  801. INDEX_LENGTH #IL#
  802. DATA_FREE #DF#
  803. AUTO_INCREMENT NULL
  804. CREATE_TIME YYYY-MM-DD hh:mm:ss
  805. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  806. CHECK_TIME NULL
  807. TABLE_COLLATION utf8_bin
  808. CHECKSUM NULL
  809. CREATE_OPTIONS
  810. TABLE_COMMENT Users and global privileges
  811. TABLE_CATALOG NULL
  812. TABLE_SCHEMA mysql
  813. TABLE_NAME columns_priv
  814. TABLE_TYPE BASE TABLE
  815. ENGINE MyISAM
  816. VERSION 10
  817. ROW_FORMAT Fixed
  818. TABLE_ROWS 0
  819. AVG_ROW_LENGTH #ARL#
  820. DATA_LENGTH #DL#
  821. MAX_DATA_LENGTH #MDL#
  822. INDEX_LENGTH #IL#
  823. DATA_FREE #DF#
  824. AUTO_INCREMENT NULL
  825. CREATE_TIME YYYY-MM-DD hh:mm:ss
  826. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  827. CHECK_TIME NULL
  828. TABLE_COLLATION utf8_bin
  829. CHECKSUM NULL
  830. CREATE_OPTIONS
  831. TABLE_COMMENT Column privileges
  832. TABLE_CATALOG NULL
  833. TABLE_SCHEMA mysql
  834. TABLE_NAME db
  835. TABLE_TYPE BASE TABLE
  836. ENGINE MyISAM
  837. VERSION 10
  838. ROW_FORMAT Fixed
  839. TABLE_ROWS 2
  840. AVG_ROW_LENGTH #ARL#
  841. DATA_LENGTH #DL#
  842. MAX_DATA_LENGTH #MDL#
  843. INDEX_LENGTH #IL#
  844. DATA_FREE #DF#
  845. AUTO_INCREMENT NULL
  846. CREATE_TIME YYYY-MM-DD hh:mm:ss
  847. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  848. CHECK_TIME NULL
  849. TABLE_COLLATION utf8_bin
  850. CHECKSUM NULL
  851. CREATE_OPTIONS
  852. TABLE_COMMENT Database privileges
  853. TABLE_CATALOG NULL
  854. TABLE_SCHEMA mysql
  855. TABLE_NAME event
  856. TABLE_TYPE BASE TABLE
  857. ENGINE MyISAM
  858. VERSION 10
  859. ROW_FORMAT Dynamic
  860. TABLE_ROWS 0
  861. AVG_ROW_LENGTH #ARL#
  862. DATA_LENGTH #DL#
  863. MAX_DATA_LENGTH #MDL#
  864. INDEX_LENGTH #IL#
  865. DATA_FREE #DF#
  866. AUTO_INCREMENT NULL
  867. CREATE_TIME YYYY-MM-DD hh:mm:ss
  868. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  869. CHECK_TIME NULL
  870. TABLE_COLLATION utf8_general_ci
  871. CHECKSUM NULL
  872. CREATE_OPTIONS
  873. TABLE_COMMENT Events
  874. TABLE_CATALOG NULL
  875. TABLE_SCHEMA mysql
  876. TABLE_NAME func
  877. TABLE_TYPE BASE TABLE
  878. ENGINE MyISAM
  879. VERSION 10
  880. ROW_FORMAT Fixed
  881. TABLE_ROWS 0
  882. AVG_ROW_LENGTH #ARL#
  883. DATA_LENGTH #DL#
  884. MAX_DATA_LENGTH #MDL#
  885. INDEX_LENGTH #IL#
  886. DATA_FREE #DF#
  887. AUTO_INCREMENT NULL
  888. CREATE_TIME YYYY-MM-DD hh:mm:ss
  889. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  890. CHECK_TIME NULL
  891. TABLE_COLLATION utf8_bin
  892. CHECKSUM NULL
  893. CREATE_OPTIONS
  894. TABLE_COMMENT User defined functions
  895. TABLE_CATALOG NULL
  896. TABLE_SCHEMA mysql
  897. TABLE_NAME general_log
  898. TABLE_TYPE BASE TABLE
  899. ENGINE CSV
  900. VERSION 10
  901. ROW_FORMAT Dynamic
  902. TABLE_ROWS 2
  903. AVG_ROW_LENGTH #ARL#
  904. DATA_LENGTH #DL#
  905. MAX_DATA_LENGTH #MDL#
  906. INDEX_LENGTH #IL#
  907. DATA_FREE #DF#
  908. AUTO_INCREMENT NULL
  909. CREATE_TIME YYYY-MM-DD hh:mm:ss
  910. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  911. CHECK_TIME NULL
  912. TABLE_COLLATION utf8_general_ci
  913. CHECKSUM NULL
  914. CREATE_OPTIONS
  915. TABLE_COMMENT General log
  916. TABLE_CATALOG NULL
  917. TABLE_SCHEMA mysql
  918. TABLE_NAME help_category
  919. TABLE_TYPE BASE TABLE
  920. ENGINE MyISAM
  921. VERSION 10
  922. ROW_FORMAT Fixed
  923. TABLE_ROWS 0
  924. AVG_ROW_LENGTH #ARL#
  925. DATA_LENGTH #DL#
  926. MAX_DATA_LENGTH #MDL#
  927. INDEX_LENGTH #IL#
  928. DATA_FREE #DF#
  929. AUTO_INCREMENT NULL
  930. CREATE_TIME YYYY-MM-DD hh:mm:ss
  931. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  932. CHECK_TIME NULL
  933. TABLE_COLLATION utf8_general_ci
  934. CHECKSUM NULL
  935. CREATE_OPTIONS
  936. TABLE_COMMENT help categories
  937. TABLE_CATALOG NULL
  938. TABLE_SCHEMA mysql
  939. TABLE_NAME help_keyword
  940. TABLE_TYPE BASE TABLE
  941. ENGINE MyISAM
  942. VERSION 10
  943. ROW_FORMAT Fixed
  944. TABLE_ROWS 0
  945. AVG_ROW_LENGTH #ARL#
  946. DATA_LENGTH #DL#
  947. MAX_DATA_LENGTH #MDL#
  948. INDEX_LENGTH #IL#
  949. DATA_FREE #DF#
  950. AUTO_INCREMENT NULL
  951. CREATE_TIME YYYY-MM-DD hh:mm:ss
  952. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  953. CHECK_TIME NULL
  954. TABLE_COLLATION utf8_general_ci
  955. CHECKSUM NULL
  956. CREATE_OPTIONS
  957. TABLE_COMMENT help keywords
  958. TABLE_CATALOG NULL
  959. TABLE_SCHEMA mysql
  960. TABLE_NAME help_relation
  961. TABLE_TYPE BASE TABLE
  962. ENGINE MyISAM
  963. VERSION 10
  964. ROW_FORMAT Fixed
  965. TABLE_ROWS 0
  966. AVG_ROW_LENGTH #ARL#
  967. DATA_LENGTH #DL#
  968. MAX_DATA_LENGTH #MDL#
  969. INDEX_LENGTH #IL#
  970. DATA_FREE #DF#
  971. AUTO_INCREMENT NULL
  972. CREATE_TIME YYYY-MM-DD hh:mm:ss
  973. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  974. CHECK_TIME NULL
  975. TABLE_COLLATION utf8_general_ci
  976. CHECKSUM NULL
  977. CREATE_OPTIONS
  978. TABLE_COMMENT keyword-topic relation
  979. TABLE_CATALOG NULL
  980. TABLE_SCHEMA mysql
  981. TABLE_NAME help_topic
  982. TABLE_TYPE BASE TABLE
  983. ENGINE MyISAM
  984. VERSION 10
  985. ROW_FORMAT Dynamic
  986. TABLE_ROWS 0
  987. AVG_ROW_LENGTH #ARL#
  988. DATA_LENGTH #DL#
  989. MAX_DATA_LENGTH #MDL#
  990. INDEX_LENGTH #IL#
  991. DATA_FREE #DF#
  992. AUTO_INCREMENT NULL
  993. CREATE_TIME YYYY-MM-DD hh:mm:ss
  994. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  995. CHECK_TIME NULL
  996. TABLE_COLLATION utf8_general_ci
  997. CHECKSUM NULL
  998. CREATE_OPTIONS
  999. TABLE_COMMENT help topics
  1000. TABLE_CATALOG NULL
  1001. TABLE_SCHEMA mysql
  1002. TABLE_NAME host
  1003. TABLE_TYPE BASE TABLE
  1004. ENGINE MyISAM
  1005. VERSION 10
  1006. ROW_FORMAT Fixed
  1007. TABLE_ROWS 0
  1008. AVG_ROW_LENGTH #ARL#
  1009. DATA_LENGTH #DL#
  1010. MAX_DATA_LENGTH #MDL#
  1011. INDEX_LENGTH #IL#
  1012. DATA_FREE #DF#
  1013. AUTO_INCREMENT NULL
  1014. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1015. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1016. CHECK_TIME NULL
  1017. TABLE_COLLATION utf8_bin
  1018. CHECKSUM NULL
  1019. CREATE_OPTIONS
  1020. TABLE_COMMENT Host privileges; Merged with database privileges
  1021. TABLE_CATALOG NULL
  1022. TABLE_SCHEMA mysql
  1023. TABLE_NAME ndb_apply_status
  1024. TABLE_TYPE BASE TABLE
  1025. ENGINE NDBCLUSTER
  1026. VERSION 10
  1027. ROW_FORMAT Fixed
  1028. TABLE_ROWS 0
  1029. AVG_ROW_LENGTH #ARL#
  1030. DATA_LENGTH #DL#
  1031. MAX_DATA_LENGTH #MDL#
  1032. INDEX_LENGTH #IL#
  1033. DATA_FREE #DF#
  1034. AUTO_INCREMENT NULL
  1035. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1036. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1037. CHECK_TIME NULL
  1038. TABLE_COLLATION latin1_swedish_ci
  1039. CHECKSUM NULL
  1040. CREATE_OPTIONS
  1041. TABLE_COMMENT number_of_replicas: 2
  1042. TABLE_CATALOG NULL
  1043. TABLE_SCHEMA mysql
  1044. TABLE_NAME ndb_binlog_index
  1045. TABLE_TYPE BASE TABLE
  1046. ENGINE MyISAM
  1047. VERSION 10
  1048. ROW_FORMAT Dynamic
  1049. TABLE_ROWS 5
  1050. AVG_ROW_LENGTH #ARL#
  1051. DATA_LENGTH #DL#
  1052. MAX_DATA_LENGTH #MDL#
  1053. INDEX_LENGTH #IL#
  1054. DATA_FREE #DF#
  1055. AUTO_INCREMENT NULL
  1056. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1057. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1058. CHECK_TIME NULL
  1059. TABLE_COLLATION latin1_swedish_ci
  1060. CHECKSUM NULL
  1061. CREATE_OPTIONS
  1062. TABLE_COMMENT
  1063. TABLE_CATALOG NULL
  1064. TABLE_SCHEMA mysql
  1065. TABLE_NAME plugin
  1066. TABLE_TYPE BASE TABLE
  1067. ENGINE MyISAM
  1068. VERSION 10
  1069. ROW_FORMAT Fixed
  1070. TABLE_ROWS 0
  1071. AVG_ROW_LENGTH #ARL#
  1072. DATA_LENGTH #DL#
  1073. MAX_DATA_LENGTH #MDL#
  1074. INDEX_LENGTH #IL#
  1075. DATA_FREE #DF#
  1076. AUTO_INCREMENT NULL
  1077. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1078. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1079. CHECK_TIME NULL
  1080. TABLE_COLLATION utf8_bin
  1081. CHECKSUM NULL
  1082. CREATE_OPTIONS
  1083. TABLE_COMMENT MySQL plugins
  1084. TABLE_CATALOG NULL
  1085. TABLE_SCHEMA mysql
  1086. TABLE_NAME proc
  1087. TABLE_TYPE BASE TABLE
  1088. ENGINE MyISAM
  1089. VERSION 10
  1090. ROW_FORMAT Dynamic
  1091. TABLE_ROWS 1
  1092. AVG_ROW_LENGTH #ARL#
  1093. DATA_LENGTH #DL#
  1094. MAX_DATA_LENGTH #MDL#
  1095. INDEX_LENGTH #IL#
  1096. DATA_FREE #DF#
  1097. AUTO_INCREMENT NULL
  1098. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1099. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1100. CHECK_TIME NULL
  1101. TABLE_COLLATION utf8_general_ci
  1102. CHECKSUM NULL
  1103. CREATE_OPTIONS
  1104. TABLE_COMMENT Stored Procedures
  1105. TABLE_CATALOG NULL
  1106. TABLE_SCHEMA mysql
  1107. TABLE_NAME procs_priv
  1108. TABLE_TYPE BASE TABLE
  1109. ENGINE MyISAM
  1110. VERSION 10
  1111. ROW_FORMAT Fixed
  1112. TABLE_ROWS 0
  1113. AVG_ROW_LENGTH #ARL#
  1114. DATA_LENGTH #DL#
  1115. MAX_DATA_LENGTH #MDL#
  1116. INDEX_LENGTH #IL#
  1117. DATA_FREE #DF#
  1118. AUTO_INCREMENT NULL
  1119. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1120. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1121. CHECK_TIME NULL
  1122. TABLE_COLLATION utf8_bin
  1123. CHECKSUM NULL
  1124. CREATE_OPTIONS
  1125. TABLE_COMMENT Procedure privileges
  1126. TABLE_CATALOG NULL
  1127. TABLE_SCHEMA mysql
  1128. TABLE_NAME servers
  1129. TABLE_TYPE BASE TABLE
  1130. ENGINE MyISAM
  1131. VERSION 10
  1132. ROW_FORMAT Fixed
  1133. TABLE_ROWS 1
  1134. AVG_ROW_LENGTH #ARL#
  1135. DATA_LENGTH #DL#
  1136. MAX_DATA_LENGTH #MDL#
  1137. INDEX_LENGTH #IL#
  1138. DATA_FREE #DF#
  1139. AUTO_INCREMENT NULL
  1140. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1141. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1142. CHECK_TIME NULL
  1143. TABLE_COLLATION utf8_general_ci
  1144. CHECKSUM NULL
  1145. CREATE_OPTIONS
  1146. TABLE_COMMENT MySQL Foreign Servers table
  1147. TABLE_CATALOG NULL
  1148. TABLE_SCHEMA mysql
  1149. TABLE_NAME slow_log
  1150. TABLE_TYPE BASE TABLE
  1151. ENGINE CSV
  1152. VERSION 10
  1153. ROW_FORMAT Dynamic
  1154. TABLE_ROWS 2
  1155. AVG_ROW_LENGTH #ARL#
  1156. DATA_LENGTH #DL#
  1157. MAX_DATA_LENGTH #MDL#
  1158. INDEX_LENGTH #IL#
  1159. DATA_FREE #DF#
  1160. AUTO_INCREMENT NULL
  1161. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1162. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1163. CHECK_TIME NULL
  1164. TABLE_COLLATION utf8_general_ci
  1165. CHECKSUM NULL
  1166. CREATE_OPTIONS
  1167. TABLE_COMMENT Slow log
  1168. TABLE_CATALOG NULL
  1169. TABLE_SCHEMA mysql
  1170. TABLE_NAME tables_priv
  1171. TABLE_TYPE BASE TABLE
  1172. ENGINE MyISAM
  1173. VERSION 10
  1174. ROW_FORMAT Fixed
  1175. TABLE_ROWS 0
  1176. AVG_ROW_LENGTH #ARL#
  1177. DATA_LENGTH #DL#
  1178. MAX_DATA_LENGTH #MDL#
  1179. INDEX_LENGTH #IL#
  1180. DATA_FREE #DF#
  1181. AUTO_INCREMENT NULL
  1182. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1183. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1184. CHECK_TIME NULL
  1185. TABLE_COLLATION utf8_bin
  1186. CHECKSUM NULL
  1187. CREATE_OPTIONS
  1188. TABLE_COMMENT Table privileges
  1189. TABLE_CATALOG NULL
  1190. TABLE_SCHEMA mysql
  1191. TABLE_NAME time_zone
  1192. TABLE_TYPE BASE TABLE
  1193. ENGINE MyISAM
  1194. VERSION 10
  1195. ROW_FORMAT Fixed
  1196. TABLE_ROWS 5
  1197. AVG_ROW_LENGTH #ARL#
  1198. DATA_LENGTH #DL#
  1199. MAX_DATA_LENGTH #MDL#
  1200. INDEX_LENGTH #IL#
  1201. DATA_FREE #DF#
  1202. AUTO_INCREMENT 6
  1203. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1204. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1205. CHECK_TIME NULL
  1206. TABLE_COLLATION utf8_general_ci
  1207. CHECKSUM NULL
  1208. CREATE_OPTIONS
  1209. TABLE_COMMENT Time zones
  1210. TABLE_CATALOG NULL
  1211. TABLE_SCHEMA mysql
  1212. TABLE_NAME time_zone_leap_second
  1213. TABLE_TYPE BASE TABLE
  1214. ENGINE MyISAM
  1215. VERSION 10
  1216. ROW_FORMAT Fixed
  1217. TABLE_ROWS 22
  1218. AVG_ROW_LENGTH #ARL#
  1219. DATA_LENGTH #DL#
  1220. MAX_DATA_LENGTH #MDL#
  1221. INDEX_LENGTH #IL#
  1222. DATA_FREE #DF#
  1223. AUTO_INCREMENT NULL
  1224. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1225. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1226. CHECK_TIME NULL
  1227. TABLE_COLLATION utf8_general_ci
  1228. CHECKSUM NULL
  1229. CREATE_OPTIONS
  1230. TABLE_COMMENT Leap seconds information for time zones
  1231. TABLE_CATALOG NULL
  1232. TABLE_SCHEMA mysql
  1233. TABLE_NAME time_zone_name
  1234. TABLE_TYPE BASE TABLE
  1235. ENGINE MyISAM
  1236. VERSION 10
  1237. ROW_FORMAT Fixed
  1238. TABLE_ROWS 6
  1239. AVG_ROW_LENGTH #ARL#
  1240. DATA_LENGTH #DL#
  1241. MAX_DATA_LENGTH #MDL#
  1242. INDEX_LENGTH #IL#
  1243. DATA_FREE #DF#
  1244. AUTO_INCREMENT NULL
  1245. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1246. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1247. CHECK_TIME NULL
  1248. TABLE_COLLATION utf8_general_ci
  1249. CHECKSUM NULL
  1250. CREATE_OPTIONS
  1251. TABLE_COMMENT Time zone names
  1252. TABLE_CATALOG NULL
  1253. TABLE_SCHEMA mysql
  1254. TABLE_NAME time_zone_transition
  1255. TABLE_TYPE BASE TABLE
  1256. ENGINE MyISAM
  1257. VERSION 10
  1258. ROW_FORMAT Fixed
  1259. TABLE_ROWS 393
  1260. AVG_ROW_LENGTH #ARL#
  1261. DATA_LENGTH #DL#
  1262. MAX_DATA_LENGTH #MDL#
  1263. INDEX_LENGTH #IL#
  1264. DATA_FREE #DF#
  1265. AUTO_INCREMENT NULL
  1266. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1267. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1268. CHECK_TIME NULL
  1269. TABLE_COLLATION utf8_general_ci
  1270. CHECKSUM NULL
  1271. CREATE_OPTIONS
  1272. TABLE_COMMENT Time zone transitions
  1273. TABLE_CATALOG NULL
  1274. TABLE_SCHEMA mysql
  1275. TABLE_NAME time_zone_transition_type
  1276. TABLE_TYPE BASE TABLE
  1277. ENGINE MyISAM
  1278. VERSION 10
  1279. ROW_FORMAT Fixed
  1280. TABLE_ROWS 31
  1281. AVG_ROW_LENGTH #ARL#
  1282. DATA_LENGTH #DL#
  1283. MAX_DATA_LENGTH #MDL#
  1284. INDEX_LENGTH #IL#
  1285. DATA_FREE #DF#
  1286. AUTO_INCREMENT NULL
  1287. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1288. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1289. CHECK_TIME NULL
  1290. TABLE_COLLATION utf8_general_ci
  1291. CHECKSUM NULL
  1292. CREATE_OPTIONS
  1293. TABLE_COMMENT Time zone transition types
  1294. TABLE_CATALOG NULL
  1295. TABLE_SCHEMA test
  1296. TABLE_NAME t1
  1297. TABLE_TYPE BASE TABLE
  1298. ENGINE NDBCLUSTER
  1299. VERSION 10
  1300. ROW_FORMAT Fixed
  1301. TABLE_ROWS 10
  1302. AVG_ROW_LENGTH #ARL#
  1303. DATA_LENGTH #DL#
  1304. MAX_DATA_LENGTH #MDL#
  1305. INDEX_LENGTH #IL#
  1306. DATA_FREE #DF#
  1307. AUTO_INCREMENT NULL
  1308. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1309. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1310. CHECK_TIME NULL
  1311. TABLE_COLLATION latin1_swedish_ci
  1312. CHECKSUM NULL
  1313. CREATE_OPTIONS
  1314. TABLE_COMMENT number_of_replicas: 2
  1315. TABLE_CATALOG NULL
  1316. TABLE_SCHEMA test
  1317. TABLE_NAME t10
  1318. TABLE_TYPE BASE TABLE
  1319. ENGINE NDBCLUSTER
  1320. VERSION 10
  1321. ROW_FORMAT Fixed
  1322. TABLE_ROWS 10
  1323. AVG_ROW_LENGTH #ARL#
  1324. DATA_LENGTH #DL#
  1325. MAX_DATA_LENGTH #MDL#
  1326. INDEX_LENGTH #IL#
  1327. DATA_FREE #DF#
  1328. AUTO_INCREMENT NULL
  1329. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1330. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1331. CHECK_TIME NULL
  1332. TABLE_COLLATION latin1_swedish_ci
  1333. CHECKSUM NULL
  1334. CREATE_OPTIONS
  1335. TABLE_COMMENT number_of_replicas: 2
  1336. TABLE_CATALOG NULL
  1337. TABLE_SCHEMA test
  1338. TABLE_NAME t11
  1339. TABLE_TYPE BASE TABLE
  1340. ENGINE NDBCLUSTER
  1341. VERSION 10
  1342. ROW_FORMAT Fixed
  1343. TABLE_ROWS 10
  1344. AVG_ROW_LENGTH #ARL#
  1345. DATA_LENGTH #DL#
  1346. MAX_DATA_LENGTH #MDL#
  1347. INDEX_LENGTH #IL#
  1348. DATA_FREE #DF#
  1349. AUTO_INCREMENT NULL
  1350. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1351. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1352. CHECK_TIME NULL
  1353. TABLE_COLLATION latin1_swedish_ci
  1354. CHECKSUM NULL
  1355. CREATE_OPTIONS
  1356. TABLE_COMMENT number_of_replicas: 2
  1357. TABLE_CATALOG NULL
  1358. TABLE_SCHEMA test
  1359. TABLE_NAME t2
  1360. TABLE_TYPE BASE TABLE
  1361. ENGINE NDBCLUSTER
  1362. VERSION 10
  1363. ROW_FORMAT Fixed
  1364. TABLE_ROWS 10
  1365. AVG_ROW_LENGTH #ARL#
  1366. DATA_LENGTH #DL#
  1367. MAX_DATA_LENGTH #MDL#
  1368. INDEX_LENGTH #IL#
  1369. DATA_FREE #DF#
  1370. AUTO_INCREMENT NULL
  1371. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1372. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1373. CHECK_TIME NULL
  1374. TABLE_COLLATION latin1_swedish_ci
  1375. CHECKSUM NULL
  1376. CREATE_OPTIONS
  1377. TABLE_COMMENT number_of_replicas: 2
  1378. TABLE_CATALOG NULL
  1379. TABLE_SCHEMA test
  1380. TABLE_NAME t3
  1381. TABLE_TYPE BASE TABLE
  1382. ENGINE NDBCLUSTER
  1383. VERSION 10
  1384. ROW_FORMAT Fixed
  1385. TABLE_ROWS 10
  1386. AVG_ROW_LENGTH #ARL#
  1387. DATA_LENGTH #DL#
  1388. MAX_DATA_LENGTH #MDL#
  1389. INDEX_LENGTH #IL#
  1390. DATA_FREE #DF#
  1391. AUTO_INCREMENT NULL
  1392. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1393. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1394. CHECK_TIME NULL
  1395. TABLE_COLLATION latin1_swedish_ci
  1396. CHECKSUM NULL
  1397. CREATE_OPTIONS
  1398. TABLE_COMMENT number_of_replicas: 2
  1399. TABLE_CATALOG NULL
  1400. TABLE_SCHEMA test
  1401. TABLE_NAME t4
  1402. TABLE_TYPE BASE TABLE
  1403. ENGINE NDBCLUSTER
  1404. VERSION 10
  1405. ROW_FORMAT Fixed
  1406. TABLE_ROWS 10
  1407. AVG_ROW_LENGTH #ARL#
  1408. DATA_LENGTH #DL#
  1409. MAX_DATA_LENGTH #MDL#
  1410. INDEX_LENGTH #IL#
  1411. DATA_FREE #DF#
  1412. AUTO_INCREMENT NULL
  1413. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1414. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1415. CHECK_TIME NULL
  1416. TABLE_COLLATION latin1_swedish_ci
  1417. CHECKSUM NULL
  1418. CREATE_OPTIONS
  1419. TABLE_COMMENT number_of_replicas: 2
  1420. TABLE_CATALOG NULL
  1421. TABLE_SCHEMA test
  1422. TABLE_NAME t7
  1423. TABLE_TYPE BASE TABLE
  1424. ENGINE NDBCLUSTER
  1425. VERSION 10
  1426. ROW_FORMAT Fixed
  1427. TABLE_ROWS 10
  1428. AVG_ROW_LENGTH #ARL#
  1429. DATA_LENGTH #DL#
  1430. MAX_DATA_LENGTH #MDL#
  1431. INDEX_LENGTH #IL#
  1432. DATA_FREE #DF#
  1433. AUTO_INCREMENT NULL
  1434. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1435. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1436. CHECK_TIME NULL
  1437. TABLE_COLLATION latin1_swedish_ci
  1438. CHECKSUM NULL
  1439. CREATE_OPTIONS
  1440. TABLE_COMMENT number_of_replicas: 2
  1441. TABLE_CATALOG NULL
  1442. TABLE_SCHEMA test
  1443. TABLE_NAME t8
  1444. TABLE_TYPE BASE TABLE
  1445. ENGINE NDBCLUSTER
  1446. VERSION 10
  1447. ROW_FORMAT Fixed
  1448. TABLE_ROWS 10
  1449. AVG_ROW_LENGTH #ARL#
  1450. DATA_LENGTH #DL#
  1451. MAX_DATA_LENGTH #MDL#
  1452. INDEX_LENGTH #IL#
  1453. DATA_FREE #DF#
  1454. AUTO_INCREMENT NULL
  1455. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1456. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1457. CHECK_TIME NULL
  1458. TABLE_COLLATION latin1_swedish_ci
  1459. CHECKSUM NULL
  1460. CREATE_OPTIONS
  1461. TABLE_COMMENT number_of_replicas: 2
  1462. TABLE_CATALOG NULL
  1463. TABLE_SCHEMA test
  1464. TABLE_NAME t9
  1465. TABLE_TYPE BASE TABLE
  1466. ENGINE NDBCLUSTER
  1467. VERSION 10
  1468. ROW_FORMAT Fixed
  1469. TABLE_ROWS 10
  1470. AVG_ROW_LENGTH #ARL#
  1471. DATA_LENGTH #DL#
  1472. MAX_DATA_LENGTH #MDL#
  1473. INDEX_LENGTH #IL#
  1474. DATA_FREE #DF#
  1475. AUTO_INCREMENT NULL
  1476. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1477. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1478. CHECK_TIME NULL
  1479. TABLE_COLLATION latin1_swedish_ci
  1480. CHECKSUM NULL
  1481. CREATE_OPTIONS
  1482. TABLE_COMMENT number_of_replicas: 2
  1483. TABLE_CATALOG NULL
  1484. TABLE_SCHEMA test
  1485. TABLE_NAME tb1
  1486. TABLE_TYPE BASE TABLE
  1487. ENGINE MyISAM
  1488. VERSION 10
  1489. ROW_FORMAT Dynamic
  1490. TABLE_ROWS 10
  1491. AVG_ROW_LENGTH #ARL#
  1492. DATA_LENGTH #DL#
  1493. MAX_DATA_LENGTH #MDL#
  1494. INDEX_LENGTH #IL#
  1495. DATA_FREE #DF#
  1496. AUTO_INCREMENT NULL
  1497. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1498. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1499. CHECK_TIME NULL
  1500. TABLE_COLLATION latin1_swedish_ci
  1501. CHECKSUM NULL
  1502. CREATE_OPTIONS
  1503. TABLE_COMMENT
  1504. TABLE_CATALOG NULL
  1505. TABLE_SCHEMA test
  1506. TABLE_NAME tb2
  1507. TABLE_TYPE BASE TABLE
  1508. ENGINE MyISAM
  1509. VERSION 10
  1510. ROW_FORMAT Dynamic
  1511. TABLE_ROWS 54
  1512. AVG_ROW_LENGTH #ARL#
  1513. DATA_LENGTH #DL#
  1514. MAX_DATA_LENGTH #MDL#
  1515. INDEX_LENGTH #IL#
  1516. DATA_FREE #DF#
  1517. AUTO_INCREMENT NULL
  1518. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1519. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1520. CHECK_TIME NULL
  1521. TABLE_COLLATION latin1_swedish_ci
  1522. CHECKSUM NULL
  1523. CREATE_OPTIONS
  1524. TABLE_COMMENT
  1525. TABLE_CATALOG NULL
  1526. TABLE_SCHEMA test
  1527. TABLE_NAME tb3
  1528. TABLE_TYPE BASE TABLE
  1529. ENGINE MyISAM
  1530. VERSION 10
  1531. ROW_FORMAT Dynamic
  1532. TABLE_ROWS 11
  1533. AVG_ROW_LENGTH #ARL#
  1534. DATA_LENGTH #DL#
  1535. MAX_DATA_LENGTH #MDL#
  1536. INDEX_LENGTH #IL#
  1537. DATA_FREE #DF#
  1538. AUTO_INCREMENT NULL
  1539. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1540. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1541. CHECK_TIME NULL
  1542. TABLE_COLLATION latin1_swedish_ci
  1543. CHECKSUM NULL
  1544. CREATE_OPTIONS
  1545. TABLE_COMMENT
  1546. TABLE_CATALOG NULL
  1547. TABLE_SCHEMA test
  1548. TABLE_NAME tb4
  1549. TABLE_TYPE BASE TABLE
  1550. ENGINE MyISAM
  1551. VERSION 10
  1552. ROW_FORMAT Dynamic
  1553. TABLE_ROWS 10
  1554. AVG_ROW_LENGTH #ARL#
  1555. DATA_LENGTH #DL#
  1556. MAX_DATA_LENGTH #MDL#
  1557. INDEX_LENGTH #IL#
  1558. DATA_FREE #DF#
  1559. AUTO_INCREMENT NULL
  1560. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1561. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1562. CHECK_TIME NULL
  1563. TABLE_COLLATION latin1_swedish_ci
  1564. CHECKSUM NULL
  1565. CREATE_OPTIONS
  1566. TABLE_COMMENT
  1567. TABLE_CATALOG NULL
  1568. TABLE_SCHEMA test4
  1569. TABLE_NAME t6
  1570. TABLE_TYPE BASE TABLE
  1571. ENGINE NDBCLUSTER
  1572. VERSION 10
  1573. ROW_FORMAT Fixed
  1574. TABLE_ROWS 10
  1575. AVG_ROW_LENGTH #ARL#
  1576. DATA_LENGTH #DL#
  1577. MAX_DATA_LENGTH #MDL#
  1578. INDEX_LENGTH #IL#
  1579. DATA_FREE #DF#
  1580. AUTO_INCREMENT NULL
  1581. CREATE_TIME YYYY-MM-DD hh:mm:ss
  1582. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  1583. CHECK_TIME NULL
  1584. TABLE_COLLATION latin1_swedish_ci
  1585. CHECKSUM NULL
  1586. CREATE_OPTIONS
  1587. TABLE_COMMENT number_of_replicas: 2
  1588. select s.catalog_name, s.schema_name, s.default_character_set_name,
  1589. t.table_type, t.engine
  1590. from schemata s inner join tables t
  1591. ORDER BY s.schema_name, s.default_character_set_name, table_type, engine;
  1592. catalog_name schema_name default_character_set_name table_type engine
  1593. NULL db_datadict latin1 BASE TABLE CSV
  1594. NULL db_datadict latin1 BASE TABLE CSV
  1595. NULL db_datadict latin1 BASE TABLE MyISAM
  1596. NULL db_datadict latin1 BASE TABLE MyISAM
  1597. NULL db_datadict latin1 BASE TABLE MyISAM
  1598. NULL db_datadict latin1 BASE TABLE MyISAM
  1599. NULL db_datadict latin1 BASE TABLE MyISAM
  1600. NULL db_datadict latin1 BASE TABLE MyISAM
  1601. NULL db_datadict latin1 BASE TABLE MyISAM
  1602. NULL db_datadict latin1 BASE TABLE MyISAM
  1603. NULL db_datadict latin1 BASE TABLE MyISAM
  1604. NULL db_datadict latin1 BASE TABLE MyISAM
  1605. NULL db_datadict latin1 BASE TABLE MyISAM
  1606. NULL db_datadict latin1 BASE TABLE MyISAM
  1607. NULL db_datadict latin1 BASE TABLE MyISAM
  1608. NULL db_datadict latin1 BASE TABLE MyISAM
  1609. NULL db_datadict latin1 BASE TABLE MyISAM
  1610. NULL db_datadict latin1 BASE TABLE MyISAM
  1611. NULL db_datadict latin1 BASE TABLE MyISAM
  1612. NULL db_datadict latin1 BASE TABLE MyISAM
  1613. NULL db_datadict latin1 BASE TABLE MyISAM
  1614. NULL db_datadict latin1 BASE TABLE MyISAM
  1615. NULL db_datadict latin1 BASE TABLE MyISAM
  1616. NULL db_datadict latin1 BASE TABLE MyISAM
  1617. NULL db_datadict latin1 BASE TABLE MyISAM
  1618. NULL db_datadict latin1 BASE TABLE MyISAM
  1619. NULL db_datadict latin1 BASE TABLE MyISAM
  1620. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1621. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1622. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1623. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1624. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1625. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1626. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1627. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1628. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1629. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1630. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  1631. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1632. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1633. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1634. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1635. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1636. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1637. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1638. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1639. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1640. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1641. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1642. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1643. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1644. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1645. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1646. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1647. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  1648. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1649. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1650. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1651. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1652. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1653. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1654. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1655. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1656. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1657. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  1658. NULL db_datadict latin1 VIEW NULL
  1659. NULL db_datadict latin1 VIEW NULL
  1660. NULL db_datadict latin1 VIEW NULL
  1661. NULL information_schema utf8 BASE TABLE CSV
  1662. NULL information_schema utf8 BASE TABLE CSV
  1663. NULL information_schema utf8 BASE TABLE MyISAM
  1664. NULL information_schema utf8 BASE TABLE MyISAM
  1665. NULL information_schema utf8 BASE TABLE MyISAM
  1666. NULL information_schema utf8 BASE TABLE MyISAM
  1667. NULL information_schema utf8 BASE TABLE MyISAM
  1668. NULL information_schema utf8 BASE TABLE MyISAM
  1669. NULL information_schema utf8 BASE TABLE MyISAM
  1670. NULL information_schema utf8 BASE TABLE MyISAM
  1671. NULL information_schema utf8 BASE TABLE MyISAM
  1672. NULL information_schema utf8 BASE TABLE MyISAM
  1673. NULL information_schema utf8 BASE TABLE MyISAM
  1674. NULL information_schema utf8 BASE TABLE MyISAM
  1675. NULL information_schema utf8 BASE TABLE MyISAM
  1676. NULL information_schema utf8 BASE TABLE MyISAM
  1677. NULL information_schema utf8 BASE TABLE MyISAM
  1678. NULL information_schema utf8 BASE TABLE MyISAM
  1679. NULL information_schema utf8 BASE TABLE MyISAM
  1680. NULL information_schema utf8 BASE TABLE MyISAM
  1681. NULL information_schema utf8 BASE TABLE MyISAM
  1682. NULL information_schema utf8 BASE TABLE MyISAM
  1683. NULL information_schema utf8 BASE TABLE MyISAM
  1684. NULL information_schema utf8 BASE TABLE MyISAM
  1685. NULL information_schema utf8 BASE TABLE MyISAM
  1686. NULL information_schema utf8 BASE TABLE MyISAM
  1687. NULL information_schema utf8 BASE TABLE MyISAM
  1688. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1689. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1690. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1691. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1692. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1693. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1694. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1695. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1696. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1697. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1698. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  1699. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1700. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1701. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1702. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1703. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1704. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1705. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1706. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1707. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1708. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1709. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1710. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1711. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1712. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1713. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1714. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1715. NULL information_schema utf8 SYSTEM VIEW MEMORY
  1716. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1717. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1718. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1719. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1720. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1721. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1722. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1723. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1724. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1725. NULL information_schema utf8 SYSTEM VIEW MyISAM
  1726. NULL information_schema utf8 VIEW NULL
  1727. NULL information_schema utf8 VIEW NULL
  1728. NULL information_schema utf8 VIEW NULL
  1729. NULL mysql latin1 BASE TABLE CSV
  1730. NULL mysql latin1 BASE TABLE CSV
  1731. NULL mysql latin1 BASE TABLE MyISAM
  1732. NULL mysql latin1 BASE TABLE MyISAM
  1733. NULL mysql latin1 BASE TABLE MyISAM
  1734. NULL mysql latin1 BASE TABLE MyISAM
  1735. NULL mysql latin1 BASE TABLE MyISAM
  1736. NULL mysql latin1 BASE TABLE MyISAM
  1737. NULL mysql latin1 BASE TABLE MyISAM
  1738. NULL mysql latin1 BASE TABLE MyISAM
  1739. NULL mysql latin1 BASE TABLE MyISAM
  1740. NULL mysql latin1 BASE TABLE MyISAM
  1741. NULL mysql latin1 BASE TABLE MyISAM
  1742. NULL mysql latin1 BASE TABLE MyISAM
  1743. NULL mysql latin1 BASE TABLE MyISAM
  1744. NULL mysql latin1 BASE TABLE MyISAM
  1745. NULL mysql latin1 BASE TABLE MyISAM
  1746. NULL mysql latin1 BASE TABLE MyISAM
  1747. NULL mysql latin1 BASE TABLE MyISAM
  1748. NULL mysql latin1 BASE TABLE MyISAM
  1749. NULL mysql latin1 BASE TABLE MyISAM
  1750. NULL mysql latin1 BASE TABLE MyISAM
  1751. NULL mysql latin1 BASE TABLE MyISAM
  1752. NULL mysql latin1 BASE TABLE MyISAM
  1753. NULL mysql latin1 BASE TABLE MyISAM
  1754. NULL mysql latin1 BASE TABLE MyISAM
  1755. NULL mysql latin1 BASE TABLE MyISAM
  1756. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1757. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1758. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1759. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1760. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1761. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1762. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1763. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1764. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1765. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1766. NULL mysql latin1 BASE TABLE NDBCLUSTER
  1767. NULL mysql latin1 SYSTEM VIEW MEMORY
  1768. NULL mysql latin1 SYSTEM VIEW MEMORY
  1769. NULL mysql latin1 SYSTEM VIEW MEMORY
  1770. NULL mysql latin1 SYSTEM VIEW MEMORY
  1771. NULL mysql latin1 SYSTEM VIEW MEMORY
  1772. NULL mysql latin1 SYSTEM VIEW MEMORY
  1773. NULL mysql latin1 SYSTEM VIEW MEMORY
  1774. NULL mysql latin1 SYSTEM VIEW MEMORY
  1775. NULL mysql latin1 SYSTEM VIEW MEMORY
  1776. NULL mysql latin1 SYSTEM VIEW MEMORY
  1777. NULL mysql latin1 SYSTEM VIEW MEMORY
  1778. NULL mysql latin1 SYSTEM VIEW MEMORY
  1779. NULL mysql latin1 SYSTEM VIEW MEMORY
  1780. NULL mysql latin1 SYSTEM VIEW MEMORY
  1781. NULL mysql latin1 SYSTEM VIEW MEMORY
  1782. NULL mysql latin1 SYSTEM VIEW MEMORY
  1783. NULL mysql latin1 SYSTEM VIEW MEMORY
  1784. NULL mysql latin1 SYSTEM VIEW MyISAM
  1785. NULL mysql latin1 SYSTEM VIEW MyISAM
  1786. NULL mysql latin1 SYSTEM VIEW MyISAM
  1787. NULL mysql latin1 SYSTEM VIEW MyISAM
  1788. NULL mysql latin1 SYSTEM VIEW MyISAM
  1789. NULL mysql latin1 SYSTEM VIEW MyISAM
  1790. NULL mysql latin1 SYSTEM VIEW MyISAM
  1791. NULL mysql latin1 SYSTEM VIEW MyISAM
  1792. NULL mysql latin1 SYSTEM VIEW MyISAM
  1793. NULL mysql latin1 SYSTEM VIEW MyISAM
  1794. NULL mysql latin1 VIEW NULL
  1795. NULL mysql latin1 VIEW NULL
  1796. NULL mysql latin1 VIEW NULL
  1797. NULL test latin1 BASE TABLE CSV
  1798. NULL test latin1 BASE TABLE CSV
  1799. NULL test latin1 BASE TABLE MyISAM
  1800. NULL test latin1 BASE TABLE MyISAM
  1801. NULL test latin1 BASE TABLE MyISAM
  1802. NULL test latin1 BASE TABLE MyISAM
  1803. NULL test latin1 BASE TABLE MyISAM
  1804. NULL test latin1 BASE TABLE MyISAM
  1805. NULL test latin1 BASE TABLE MyISAM
  1806. NULL test latin1 BASE TABLE MyISAM
  1807. NULL test latin1 BASE TABLE MyISAM
  1808. NULL test latin1 BASE TABLE MyISAM
  1809. NULL test latin1 BASE TABLE MyISAM
  1810. NULL test latin1 BASE TABLE MyISAM
  1811. NULL test latin1 BASE TABLE MyISAM
  1812. NULL test latin1 BASE TABLE MyISAM
  1813. NULL test latin1 BASE TABLE MyISAM
  1814. NULL test latin1 BASE TABLE MyISAM
  1815. NULL test latin1 BASE TABLE MyISAM
  1816. NULL test latin1 BASE TABLE MyISAM
  1817. NULL test latin1 BASE TABLE MyISAM
  1818. NULL test latin1 BASE TABLE MyISAM
  1819. NULL test latin1 BASE TABLE MyISAM
  1820. NULL test latin1 BASE TABLE MyISAM
  1821. NULL test latin1 BASE TABLE MyISAM
  1822. NULL test latin1 BASE TABLE MyISAM
  1823. NULL test latin1 BASE TABLE MyISAM
  1824. NULL test latin1 BASE TABLE NDBCLUSTER
  1825. NULL test latin1 BASE TABLE NDBCLUSTER
  1826. NULL test latin1 BASE TABLE NDBCLUSTER
  1827. NULL test latin1 BASE TABLE NDBCLUSTER
  1828. NULL test latin1 BASE TABLE NDBCLUSTER
  1829. NULL test latin1 BASE TABLE NDBCLUSTER
  1830. NULL test latin1 BASE TABLE NDBCLUSTER
  1831. NULL test latin1 BASE TABLE NDBCLUSTER
  1832. NULL test latin1 BASE TABLE NDBCLUSTER
  1833. NULL test latin1 BASE TABLE NDBCLUSTER
  1834. NULL test latin1 BASE TABLE NDBCLUSTER
  1835. NULL test latin1 SYSTEM VIEW MEMORY
  1836. NULL test latin1 SYSTEM VIEW MEMORY
  1837. NULL test latin1 SYSTEM VIEW MEMORY
  1838. NULL test latin1 SYSTEM VIEW MEMORY
  1839. NULL test latin1 SYSTEM VIEW MEMORY
  1840. NULL test latin1 SYSTEM VIEW MEMORY
  1841. NULL test latin1 SYSTEM VIEW MEMORY
  1842. NULL test latin1 SYSTEM VIEW MEMORY
  1843. NULL test latin1 SYSTEM VIEW MEMORY
  1844. NULL test latin1 SYSTEM VIEW MEMORY
  1845. NULL test latin1 SYSTEM VIEW MEMORY
  1846. NULL test latin1 SYSTEM VIEW MEMORY
  1847. NULL test latin1 SYSTEM VIEW MEMORY
  1848. NULL test latin1 SYSTEM VIEW MEMORY
  1849. NULL test latin1 SYSTEM VIEW MEMORY
  1850. NULL test latin1 SYSTEM VIEW MEMORY
  1851. NULL test latin1 SYSTEM VIEW MEMORY
  1852. NULL test latin1 SYSTEM VIEW MyISAM
  1853. NULL test latin1 SYSTEM VIEW MyISAM
  1854. NULL test latin1 SYSTEM VIEW MyISAM
  1855. NULL test latin1 SYSTEM VIEW MyISAM
  1856. NULL test latin1 SYSTEM VIEW MyISAM
  1857. NULL test latin1 SYSTEM VIEW MyISAM
  1858. NULL test latin1 SYSTEM VIEW MyISAM
  1859. NULL test latin1 SYSTEM VIEW MyISAM
  1860. NULL test latin1 SYSTEM VIEW MyISAM
  1861. NULL test latin1 SYSTEM VIEW MyISAM
  1862. NULL test latin1 VIEW NULL
  1863. NULL test latin1 VIEW NULL
  1864. NULL test latin1 VIEW NULL
  1865. NULL test1 latin1 BASE TABLE CSV
  1866. NULL test1 latin1 BASE TABLE CSV
  1867. NULL test1 latin1 BASE TABLE MyISAM
  1868. NULL test1 latin1 BASE TABLE MyISAM
  1869. NULL test1 latin1 BASE TABLE MyISAM
  1870. NULL test1 latin1 BASE TABLE MyISAM
  1871. NULL test1 latin1 BASE TABLE MyISAM
  1872. NULL test1 latin1 BASE TABLE MyISAM
  1873. NULL test1 latin1 BASE TABLE MyISAM
  1874. NULL test1 latin1 BASE TABLE MyISAM
  1875. NULL test1 latin1 BASE TABLE MyISAM
  1876. NULL test1 latin1 BASE TABLE MyISAM
  1877. NULL test1 latin1 BASE TABLE MyISAM
  1878. NULL test1 latin1 BASE TABLE MyISAM
  1879. NULL test1 latin1 BASE TABLE MyISAM
  1880. NULL test1 latin1 BASE TABLE MyISAM
  1881. NULL test1 latin1 BASE TABLE MyISAM
  1882. NULL test1 latin1 BASE TABLE MyISAM
  1883. NULL test1 latin1 BASE TABLE MyISAM
  1884. NULL test1 latin1 BASE TABLE MyISAM
  1885. NULL test1 latin1 BASE TABLE MyISAM
  1886. NULL test1 latin1 BASE TABLE MyISAM
  1887. NULL test1 latin1 BASE TABLE MyISAM
  1888. NULL test1 latin1 BASE TABLE MyISAM
  1889. NULL test1 latin1 BASE TABLE MyISAM
  1890. NULL test1 latin1 BASE TABLE MyISAM
  1891. NULL test1 latin1 BASE TABLE MyISAM
  1892. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1893. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1894. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1895. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1896. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1897. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1898. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1899. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1900. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1901. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1902. NULL test1 latin1 BASE TABLE NDBCLUSTER
  1903. NULL test1 latin1 SYSTEM VIEW MEMORY
  1904. NULL test1 latin1 SYSTEM VIEW MEMORY
  1905. NULL test1 latin1 SYSTEM VIEW MEMORY
  1906. NULL test1 latin1 SYSTEM VIEW MEMORY
  1907. NULL test1 latin1 SYSTEM VIEW MEMORY
  1908. NULL test1 latin1 SYSTEM VIEW MEMORY
  1909. NULL test1 latin1 SYSTEM VIEW MEMORY
  1910. NULL test1 latin1 SYSTEM VIEW MEMORY
  1911. NULL test1 latin1 SYSTEM VIEW MEMORY
  1912. NULL test1 latin1 SYSTEM VIEW MEMORY
  1913. NULL test1 latin1 SYSTEM VIEW MEMORY
  1914. NULL test1 latin1 SYSTEM VIEW MEMORY
  1915. NULL test1 latin1 SYSTEM VIEW MEMORY
  1916. NULL test1 latin1 SYSTEM VIEW MEMORY
  1917. NULL test1 latin1 SYSTEM VIEW MEMORY
  1918. NULL test1 latin1 SYSTEM VIEW MEMORY
  1919. NULL test1 latin1 SYSTEM VIEW MEMORY
  1920. NULL test1 latin1 SYSTEM VIEW MyISAM
  1921. NULL test1 latin1 SYSTEM VIEW MyISAM
  1922. NULL test1 latin1 SYSTEM VIEW MyISAM
  1923. NULL test1 latin1 SYSTEM VIEW MyISAM
  1924. NULL test1 latin1 SYSTEM VIEW MyISAM
  1925. NULL test1 latin1 SYSTEM VIEW MyISAM
  1926. NULL test1 latin1 SYSTEM VIEW MyISAM
  1927. NULL test1 latin1 SYSTEM VIEW MyISAM
  1928. NULL test1 latin1 SYSTEM VIEW MyISAM
  1929. NULL test1 latin1 SYSTEM VIEW MyISAM
  1930. NULL test1 latin1 VIEW NULL
  1931. NULL test1 latin1 VIEW NULL
  1932. NULL test1 latin1 VIEW NULL
  1933. NULL test4 latin1 BASE TABLE CSV
  1934. NULL test4 latin1 BASE TABLE CSV
  1935. NULL test4 latin1 BASE TABLE MyISAM
  1936. NULL test4 latin1 BASE TABLE MyISAM
  1937. NULL test4 latin1 BASE TABLE MyISAM
  1938. NULL test4 latin1 BASE TABLE MyISAM
  1939. NULL test4 latin1 BASE TABLE MyISAM
  1940. NULL test4 latin1 BASE TABLE MyISAM
  1941. NULL test4 latin1 BASE TABLE MyISAM
  1942. NULL test4 latin1 BASE TABLE MyISAM
  1943. NULL test4 latin1 BASE TABLE MyISAM
  1944. NULL test4 latin1 BASE TABLE MyISAM
  1945. NULL test4 latin1 BASE TABLE MyISAM
  1946. NULL test4 latin1 BASE TABLE MyISAM
  1947. NULL test4 latin1 BASE TABLE MyISAM
  1948. NULL test4 latin1 BASE TABLE MyISAM
  1949. NULL test4 latin1 BASE TABLE MyISAM
  1950. NULL test4 latin1 BASE TABLE MyISAM
  1951. NULL test4 latin1 BASE TABLE MyISAM
  1952. NULL test4 latin1 BASE TABLE MyISAM
  1953. NULL test4 latin1 BASE TABLE MyISAM
  1954. NULL test4 latin1 BASE TABLE MyISAM
  1955. NULL test4 latin1 BASE TABLE MyISAM
  1956. NULL test4 latin1 BASE TABLE MyISAM
  1957. NULL test4 latin1 BASE TABLE MyISAM
  1958. NULL test4 latin1 BASE TABLE MyISAM
  1959. NULL test4 latin1 BASE TABLE MyISAM
  1960. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1961. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1962. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1963. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1964. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1965. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1966. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1967. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1968. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1969. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1970. NULL test4 latin1 BASE TABLE NDBCLUSTER
  1971. NULL test4 latin1 SYSTEM VIEW MEMORY
  1972. NULL test4 latin1 SYSTEM VIEW MEMORY
  1973. NULL test4 latin1 SYSTEM VIEW MEMORY
  1974. NULL test4 latin1 SYSTEM VIEW MEMORY
  1975. NULL test4 latin1 SYSTEM VIEW MEMORY
  1976. NULL test4 latin1 SYSTEM VIEW MEMORY
  1977. NULL test4 latin1 SYSTEM VIEW MEMORY
  1978. NULL test4 latin1 SYSTEM VIEW MEMORY
  1979. NULL test4 latin1 SYSTEM VIEW MEMORY
  1980. NULL test4 latin1 SYSTEM VIEW MEMORY
  1981. NULL test4 latin1 SYSTEM VIEW MEMORY
  1982. NULL test4 latin1 SYSTEM VIEW MEMORY
  1983. NULL test4 latin1 SYSTEM VIEW MEMORY
  1984. NULL test4 latin1 SYSTEM VIEW MEMORY
  1985. NULL test4 latin1 SYSTEM VIEW MEMORY
  1986. NULL test4 latin1 SYSTEM VIEW MEMORY
  1987. NULL test4 latin1 SYSTEM VIEW MEMORY
  1988. NULL test4 latin1 SYSTEM VIEW MyISAM
  1989. NULL test4 latin1 SYSTEM VIEW MyISAM
  1990. NULL test4 latin1 SYSTEM VIEW MyISAM
  1991. NULL test4 latin1 SYSTEM VIEW MyISAM
  1992. NULL test4 latin1 SYSTEM VIEW MyISAM
  1993. NULL test4 latin1 SYSTEM VIEW MyISAM
  1994. NULL test4 latin1 SYSTEM VIEW MyISAM
  1995. NULL test4 latin1 SYSTEM VIEW MyISAM
  1996. NULL test4 latin1 SYSTEM VIEW MyISAM
  1997. NULL test4 latin1 SYSTEM VIEW MyISAM
  1998. NULL test4 latin1 VIEW NULL
  1999. NULL test4 latin1 VIEW NULL
  2000. NULL test4 latin1 VIEW NULL
  2001. select * from columns;
  2002. 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
  2003. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2004. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2005. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  2006. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  2007. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2008. NULL information_schema COLLATIONS CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2009. NULL information_schema COLLATIONS ID 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(11) select
  2010. NULL information_schema COLLATIONS IS_DEFAULT 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2011. NULL information_schema COLLATIONS IS_COMPILED 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2012. NULL information_schema COLLATIONS SORTLEN 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  2013. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2014. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2015. NULL information_schema COLUMNS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2016. NULL information_schema COLUMNS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2017. NULL information_schema COLUMNS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2018. NULL information_schema COLUMNS COLUMN_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2019. NULL information_schema COLUMNS ORDINAL_POSITION 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2020. NULL information_schema COLUMNS COLUMN_DEFAULT 6 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2021. NULL information_schema COLUMNS IS_NULLABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2022. NULL information_schema COLUMNS DATA_TYPE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2023. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2024. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2025. NULL information_schema COLUMNS NUMERIC_PRECISION 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2026. NULL information_schema COLUMNS NUMERIC_SCALE 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2027. NULL information_schema COLUMNS CHARACTER_SET_NAME 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2028. NULL information_schema COLUMNS COLLATION_NAME 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2029. NULL information_schema COLUMNS COLUMN_TYPE 15 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2030. NULL information_schema COLUMNS COLUMN_KEY 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2031. NULL information_schema COLUMNS EXTRA 17 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  2032. NULL information_schema COLUMNS PRIVILEGES 18 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  2033. NULL information_schema COLUMNS COLUMN_COMMENT 19 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  2034. NULL information_schema COLUMN_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  2035. NULL information_schema COLUMN_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2036. NULL information_schema COLUMN_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2037. NULL information_schema COLUMN_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2038. NULL information_schema COLUMN_PRIVILEGES COLUMN_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2039. NULL information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2040. NULL information_schema COLUMN_PRIVILEGES IS_GRANTABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2041. NULL information_schema ENGINES ENGINE 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2042. NULL information_schema ENGINES SUPPORT 2 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  2043. NULL information_schema ENGINES COMMENT 3 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  2044. NULL information_schema ENGINES TRANSACTIONS 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2045. NULL information_schema ENGINES XA 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2046. NULL information_schema ENGINES SAVEPOINTS 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2047. NULL information_schema EVENTS EVENT_CATALOG 1 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2048. NULL information_schema EVENTS EVENT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2049. NULL information_schema EVENTS EVENT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2050. NULL information_schema EVENTS DEFINER 4 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  2051. NULL information_schema EVENTS EVENT_BODY 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  2052. NULL information_schema EVENTS EVENT_DEFINITION 6 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2053. NULL information_schema EVENTS EVENT_TYPE 7 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  2054. NULL information_schema EVENTS EXECUTE_AT 8 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2055. NULL information_schema EVENTS INTERVAL_VALUE 9 NULL YES varchar 256 768 NULL NULL utf8 utf8_general_ci varchar(256) select
  2056. NULL information_schema EVENTS INTERVAL_FIELD 10 NULL YES varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  2057. NULL information_schema EVENTS SQL_MODE 11 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2058. NULL information_schema EVENTS STARTS 12 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2059. NULL information_schema EVENTS ENDS 13 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2060. NULL information_schema EVENTS STATUS 14 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  2061. NULL information_schema EVENTS ON_COMPLETION 15 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  2062. NULL information_schema EVENTS CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  2063. NULL information_schema EVENTS LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  2064. NULL information_schema EVENTS LAST_EXECUTED 18 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2065. NULL information_schema EVENTS EVENT_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2066. NULL information_schema FILES FILE_ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2067. NULL information_schema FILES FILE_NAME 2 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2068. NULL information_schema FILES FILE_TYPE 3 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  2069. NULL information_schema FILES TABLESPACE_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2070. NULL information_schema FILES TABLE_CATALOG 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2071. NULL information_schema FILES TABLE_SCHEMA 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2072. NULL information_schema FILES TABLE_NAME 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2073. NULL information_schema FILES LOGFILE_GROUP_NAME 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2074. NULL information_schema FILES LOGFILE_GROUP_NUMBER 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2075. NULL information_schema FILES ENGINE 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2076. NULL information_schema FILES FULLTEXT_KEYS 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2077. NULL information_schema FILES DELETED_ROWS 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2078. NULL information_schema FILES UPDATE_COUNT 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2079. NULL information_schema FILES FREE_EXTENTS 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2080. NULL information_schema FILES TOTAL_EXTENTS 15 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2081. NULL information_schema FILES EXTENT_SIZE 16 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2082. NULL information_schema FILES INITIAL_SIZE 17 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2083. NULL information_schema FILES MAXIMUM_SIZE 18 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2084. NULL information_schema FILES AUTOEXTEND_SIZE 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2085. NULL information_schema FILES CREATION_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2086. NULL information_schema FILES LAST_UPDATE_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2087. NULL information_schema FILES LAST_ACCESS_TIME 22 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2088. NULL information_schema FILES RECOVER_TIME 23 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2089. NULL information_schema FILES TRANSACTION_COUNTER 24 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2090. NULL information_schema FILES VERSION 25 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2091. NULL information_schema FILES ROW_FORMAT 26 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  2092. NULL information_schema FILES TABLE_ROWS 27 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2093. NULL information_schema FILES AVG_ROW_LENGTH 28 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2094. NULL information_schema FILES DATA_LENGTH 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2095. NULL information_schema FILES MAX_DATA_LENGTH 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2096. NULL information_schema FILES INDEX_LENGTH 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2097. NULL information_schema FILES DATA_FREE 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2098. NULL information_schema FILES CREATE_TIME 33 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2099. NULL information_schema FILES UPDATE_TIME 34 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2100. NULL information_schema FILES CHECK_TIME 35 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2101. NULL information_schema FILES CHECKSUM 36 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2102. NULL information_schema FILES STATUS 37 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  2103. NULL information_schema FILES EXTRA 38 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  2104. NULL information_schema GLOBAL_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2105. NULL information_schema GLOBAL_STATUS VARIABLE_VALUE 2 0.0000000 NO decimal NULL NULL 22 7 NULL NULL decimal(22,7) select
  2106. NULL information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2107. NULL information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2108. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2109. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2110. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2111. NULL information_schema KEY_COLUMN_USAGE TABLE_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2112. NULL information_schema KEY_COLUMN_USAGE TABLE_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2113. NULL information_schema KEY_COLUMN_USAGE TABLE_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2114. NULL information_schema KEY_COLUMN_USAGE COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2115. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  2116. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(10) select
  2117. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2118. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2119. NULL information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME 12 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2120. NULL information_schema PARTITIONS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2121. NULL information_schema PARTITIONS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2122. NULL information_schema PARTITIONS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2123. NULL information_schema PARTITIONS PARTITION_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2124. NULL information_schema PARTITIONS SUBPARTITION_NAME 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2125. NULL information_schema PARTITIONS PARTITION_ORDINAL_POSITION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2126. NULL information_schema PARTITIONS SUBPARTITION_ORDINAL_POSITION 7 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2127. NULL information_schema PARTITIONS PARTITION_METHOD 8 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  2128. NULL information_schema PARTITIONS SUBPARTITION_METHOD 9 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  2129. NULL information_schema PARTITIONS PARTITION_EXPRESSION 10 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2130. NULL information_schema PARTITIONS SUBPARTITION_EXPRESSION 11 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2131. NULL information_schema PARTITIONS PARTITION_DESCRIPTION 12 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2132. NULL information_schema PARTITIONS TABLE_ROWS 13 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2133. NULL information_schema PARTITIONS AVG_ROW_LENGTH 14 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2134. NULL information_schema PARTITIONS DATA_LENGTH 15 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2135. NULL information_schema PARTITIONS MAX_DATA_LENGTH 16 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2136. NULL information_schema PARTITIONS INDEX_LENGTH 17 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2137. NULL information_schema PARTITIONS DATA_FREE 18 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2138. NULL information_schema PARTITIONS CREATE_TIME 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2139. NULL information_schema PARTITIONS UPDATE_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2140. NULL information_schema PARTITIONS CHECK_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2141. NULL information_schema PARTITIONS CHECKSUM 22 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2142. NULL information_schema PARTITIONS PARTITION_COMMENT 23 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  2143. NULL information_schema PARTITIONS NODEGROUP 24 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  2144. NULL information_schema PARTITIONS TABLESPACE_NAME 25 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2145. NULL information_schema PLUGINS PLUGIN_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2146. NULL information_schema PLUGINS PLUGIN_VERSION 2 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  2147. NULL information_schema PLUGINS PLUGIN_STATUS 3 NO varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  2148. NULL information_schema PLUGINS PLUGIN_TYPE 4 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  2149. NULL information_schema PLUGINS PLUGIN_TYPE_VERSION 5 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  2150. NULL information_schema PLUGINS PLUGIN_LIBRARY 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2151. NULL information_schema PLUGINS PLUGIN_LIBRARY_VERSION 7 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  2152. NULL information_schema PLUGINS PLUGIN_AUTHOR 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2153. NULL information_schema PLUGINS PLUGIN_DESCRIPTION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2154. NULL information_schema PLUGINS PLUGIN_LICENSE 10 NULL YES varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  2155. NULL information_schema PROCESSLIST ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2156. NULL information_schema PROCESSLIST USER 2 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  2157. NULL information_schema PROCESSLIST HOST 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2158. NULL information_schema PROCESSLIST DB 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2159. NULL information_schema PROCESSLIST COMMAND 5 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  2160. NULL information_schema PROCESSLIST TIME 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(7) select
  2161. NULL information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2162. NULL information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2163. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2164. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2165. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2166. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2167. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2168. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2169. NULL information_schema REFERENTIAL_CONSTRAINTS MATCH_OPTION 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2170. NULL information_schema REFERENTIAL_CONSTRAINTS UPDATE_RULE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2171. NULL information_schema REFERENTIAL_CONSTRAINTS DELETE_RULE 9 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2172. NULL information_schema REFERENTIAL_CONSTRAINTS TABLE_NAME 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2173. NULL information_schema REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME 11 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2174. NULL information_schema ROUTINES SPECIFIC_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2175. NULL information_schema ROUTINES ROUTINE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2176. NULL information_schema ROUTINES ROUTINE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2177. NULL information_schema ROUTINES ROUTINE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2178. NULL information_schema ROUTINES ROUTINE_TYPE 5 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  2179. NULL information_schema ROUTINES DTD_IDENTIFIER 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2180. NULL information_schema ROUTINES ROUTINE_BODY 7 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  2181. NULL information_schema ROUTINES ROUTINE_DEFINITION 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2182. NULL information_schema ROUTINES EXTERNAL_NAME 9 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2183. NULL information_schema ROUTINES EXTERNAL_LANGUAGE 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2184. NULL information_schema ROUTINES PARAMETER_STYLE 11 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  2185. NULL information_schema ROUTINES IS_DETERMINISTIC 12 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2186. NULL information_schema ROUTINES SQL_DATA_ACCESS 13 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2187. NULL information_schema ROUTINES SQL_PATH 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2188. NULL information_schema ROUTINES SECURITY_TYPE 15 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  2189. NULL information_schema ROUTINES CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  2190. NULL information_schema ROUTINES LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  2191. NULL information_schema ROUTINES SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2192. NULL information_schema ROUTINES ROUTINE_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2193. NULL information_schema ROUTINES DEFINER 20 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  2194. NULL information_schema SCHEMATA CATALOG_NAME 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2195. NULL information_schema SCHEMATA SCHEMA_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2196. NULL information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2197. NULL information_schema SCHEMATA DEFAULT_COLLATION_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2198. NULL information_schema SCHEMATA SQL_PATH 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2199. NULL information_schema SCHEMA_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  2200. NULL information_schema SCHEMA_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2201. NULL information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2202. NULL information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2203. NULL information_schema SCHEMA_PRIVILEGES IS_GRANTABLE 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2204. NULL information_schema SESSION_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2205. NULL information_schema SESSION_STATUS VARIABLE_VALUE 2 0.0000000 NO decimal NULL NULL 22 7 NULL NULL decimal(22,7) select
  2206. NULL information_schema SESSION_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2207. NULL information_schema SESSION_VARIABLES VARIABLE_VALUE 2 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2208. NULL information_schema STATISTICS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2209. NULL information_schema STATISTICS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2210. NULL information_schema STATISTICS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2211. NULL information_schema STATISTICS NON_UNIQUE 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(1) select
  2212. NULL information_schema STATISTICS INDEX_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2213. NULL information_schema STATISTICS INDEX_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2214. NULL information_schema STATISTICS SEQ_IN_INDEX 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(2) select
  2215. NULL information_schema STATISTICS COLUMN_NAME 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2216. NULL information_schema STATISTICS COLLATION 9 NULL YES varchar 1 3 NULL NULL utf8 utf8_general_ci varchar(1) select
  2217. NULL information_schema STATISTICS CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2218. NULL information_schema STATISTICS SUB_PART 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(3) select
  2219. NULL information_schema STATISTICS PACKED 12 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  2220. NULL information_schema STATISTICS NULLABLE 13 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2221. NULL information_schema STATISTICS INDEX_TYPE 14 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  2222. NULL information_schema STATISTICS COMMENT 15 NULL YES varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  2223. NULL information_schema TABLES TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2224. NULL information_schema TABLES TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2225. NULL information_schema TABLES TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2226. NULL information_schema TABLES TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2227. NULL information_schema TABLES ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2228. NULL information_schema TABLES VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2229. NULL information_schema TABLES ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  2230. NULL information_schema TABLES TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2231. NULL information_schema TABLES AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2232. NULL information_schema TABLES DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2233. NULL information_schema TABLES MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2234. NULL information_schema TABLES INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2235. NULL information_schema TABLES DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2236. NULL information_schema TABLES AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2237. NULL information_schema TABLES CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2238. NULL information_schema TABLES UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2239. NULL information_schema TABLES CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2240. NULL information_schema TABLES TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2241. NULL information_schema TABLES CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  2242. NULL information_schema TABLES CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  2243. NULL information_schema TABLES TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  2244. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2245. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2246. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2247. NULL information_schema TABLE_CONSTRAINTS TABLE_SCHEMA 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2248. NULL information_schema TABLE_CONSTRAINTS TABLE_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2249. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2250. NULL information_schema TABLE_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  2251. NULL information_schema TABLE_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2252. NULL information_schema TABLE_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2253. NULL information_schema TABLE_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2254. NULL information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2255. NULL information_schema TABLE_PRIVILEGES IS_GRANTABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2256. NULL information_schema TRIGGERS TRIGGER_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2257. NULL information_schema TRIGGERS TRIGGER_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2258. NULL information_schema TRIGGERS TRIGGER_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2259. NULL information_schema TRIGGERS EVENT_MANIPULATION 4 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  2260. NULL information_schema TRIGGERS EVENT_OBJECT_CATALOG 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2261. NULL information_schema TRIGGERS EVENT_OBJECT_SCHEMA 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2262. NULL information_schema TRIGGERS EVENT_OBJECT_TABLE 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2263. NULL information_schema TRIGGERS ACTION_ORDER 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  2264. NULL information_schema TRIGGERS ACTION_CONDITION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2265. NULL information_schema TRIGGERS ACTION_STATEMENT 10 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2266. NULL information_schema TRIGGERS ACTION_ORIENTATION 11 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  2267. NULL information_schema TRIGGERS ACTION_TIMING 12 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  2268. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2269. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2270. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW 15 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2271. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2272. NULL information_schema TRIGGERS CREATED 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  2273. NULL information_schema TRIGGERS SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2274. NULL information_schema TRIGGERS DEFINER 19 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2275. NULL information_schema USER_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  2276. NULL information_schema USER_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2277. NULL information_schema USER_PRIVILEGES PRIVILEGE_TYPE 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2278. NULL information_schema USER_PRIVILEGES IS_GRANTABLE 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2279. NULL information_schema VIEWS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  2280. NULL information_schema VIEWS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2281. NULL information_schema VIEWS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  2282. NULL information_schema VIEWS VIEW_DEFINITION 4 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  2283. NULL information_schema VIEWS CHECK_OPTION 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  2284. NULL information_schema VIEWS IS_UPDATABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  2285. NULL information_schema VIEWS DEFINER 7 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  2286. NULL information_schema VIEWS SECURITY_TYPE 8 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  2287. NULL db_datadict v1 TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select,insert,update,references
  2288. NULL db_datadict v1 TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2289. NULL db_datadict v1 TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2290. NULL db_datadict v1 TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2291. NULL db_datadict v1 ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2292. NULL db_datadict v1 VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select,insert,update,references
  2293. NULL db_datadict v1 ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select,insert,update,references
  2294. NULL db_datadict v1 TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select,insert,update,references
  2295. NULL db_datadict v1 AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select,insert,update,references
  2296. NULL db_datadict v1 DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select,insert,update,references
  2297. NULL db_datadict v1 MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select,insert,update,references
  2298. NULL db_datadict v1 INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select,insert,update,references
  2299. NULL db_datadict v1 DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select,insert,update,references
  2300. NULL db_datadict v1 AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select,insert,update,references
  2301. NULL db_datadict v1 CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2302. NULL db_datadict v1 UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2303. NULL db_datadict v1 CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2304. NULL db_datadict v1 TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2305. NULL db_datadict v1 CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select,insert,update,references
  2306. NULL db_datadict v1 CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select,insert,update,references
  2307. NULL db_datadict v1 TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select,insert,update,references
  2308. NULL db_datadict vu u 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select,insert,update,references
  2309. NULL db_datadict vu server 2 NO varchar 243 729 NULL NULL utf8 utf8_general_ci varchar(243) select,insert,update,references
  2310. NULL db_datadict vu Server_Clean 3 NO varchar 243 729 NULL NULL utf8 utf8_general_ci varchar(243) select,insert,update,references
  2311. NULL db_datadict vu1 u 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select,insert,update,references
  2312. NULL mysql user Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2313. NULL mysql user User 2 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  2314. NULL mysql user Password 3 NO char 41 41 NULL NULL latin1 latin1_bin char(41) select,insert,update,references
  2315. NULL mysql user Select_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2316. NULL mysql user Insert_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2317. NULL mysql user Update_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2318. NULL mysql user Delete_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2319. NULL mysql user Create_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2320. NULL mysql user Drop_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2321. NULL mysql user Reload_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2322. NULL mysql user Shutdown_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2323. NULL mysql user Process_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2324. NULL mysql user File_priv 13 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2325. NULL mysql user Grant_priv 14 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2326. NULL mysql user References_priv 15 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2327. NULL mysql user Index_priv 16 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2328. NULL mysql user Alter_priv 17 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2329. 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
  2330. NULL mysql user Super_priv 19 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2331. 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
  2332. 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
  2333. NULL mysql user Execute_priv 22 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2334. 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
  2335. 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
  2336. 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
  2337. 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
  2338. 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
  2339. 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
  2340. 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
  2341. NULL mysql user Event_priv 30 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2342. NULL mysql user Trigger_priv 31 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2343. NULL mysql user ssl_type 32 NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('','ANY','X509','SPECIFIED') select,insert,update,references
  2344. NULL mysql user ssl_cipher 33 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2345. NULL mysql user x509_issuer 34 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2346. NULL mysql user x509_subject 35 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2347. NULL mysql user max_questions 36 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  2348. NULL mysql user max_updates 37 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  2349. NULL mysql user max_connections 38 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  2350. NULL mysql user max_user_connections 39 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  2351. NULL mysql columns_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2352. NULL mysql columns_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2353. NULL mysql columns_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  2354. NULL mysql columns_priv Table_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2355. NULL mysql columns_priv Column_name 5 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2356. NULL mysql columns_priv Timestamp 6 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2357. 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
  2358. NULL mysql db Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2359. NULL mysql db Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2360. NULL mysql db User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  2361. NULL mysql db Select_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2362. NULL mysql db Insert_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2363. NULL mysql db Update_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2364. NULL mysql db Delete_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2365. NULL mysql db Create_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2366. NULL mysql db Drop_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2367. NULL mysql db Grant_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2368. NULL mysql db References_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2369. NULL mysql db Index_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2370. NULL mysql db Alter_priv 13 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2371. 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
  2372. 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
  2373. 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
  2374. 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
  2375. 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
  2376. 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
  2377. NULL mysql db Execute_priv 20 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2378. NULL mysql db Event_priv 21 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2379. NULL mysql db Trigger_priv 22 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2380. NULL mysql event db 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2381. NULL mysql event name 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  2382. NULL mysql event body 3 NULL NO longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2383. NULL mysql event definer 4 NO char 77 231 NULL NULL utf8 utf8_bin char(77) select,insert,update,references
  2384. NULL mysql event execute_at 5 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2385. NULL mysql event interval_value 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2386. 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
  2387. NULL mysql event created 8 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2388. NULL mysql event modified 9 0000-00-00 00:00:00 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2389. NULL mysql event last_executed 10 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2390. NULL mysql event starts 11 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2391. NULL mysql event ends 12 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2392. NULL mysql event status 13 ENABLED NO enum 8 24 NULL NULL utf8 utf8_general_ci enum('ENABLED','DISABLED') select,insert,update,references
  2393. NULL mysql event on_completion 14 DROP NO enum 8 24 NULL NULL utf8 utf8_general_ci enum('DROP','PRESERVE') select,insert,update,references
  2394. 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
  2395. NULL mysql event comment 16 NO char 64 192 NULL NULL utf8 utf8_bin char(64) select,insert,update,references
  2396. NULL mysql func name 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2397. NULL mysql func ret 2 0 NO tinyint NULL NULL 3 0 NULL NULL tinyint(1) select,insert,update,references
  2398. NULL mysql func dl 3 NO char 128 384 NULL NULL utf8 utf8_bin char(128) select,insert,update,references
  2399. NULL mysql func type 4 NULL NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('function','aggregate') select,insert,update,references
  2400. NULL mysql general_log event_time 1 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2401. NULL mysql general_log user_host 2 NULL YES mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  2402. NULL mysql general_log thread_id 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2403. NULL mysql general_log server_id 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2404. NULL mysql general_log command_type 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  2405. NULL mysql general_log argument 6 NULL YES mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  2406. 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
  2407. NULL mysql help_category name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  2408. NULL mysql help_category parent_category_id 3 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  2409. NULL mysql help_category url 4 NULL NO char 128 384 NULL NULL utf8 utf8_general_ci char(128) select,insert,update,references
  2410. 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
  2411. NULL mysql help_keyword name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  2412. 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
  2413. 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
  2414. 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
  2415. NULL mysql help_topic name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  2416. NULL mysql help_topic help_category_id 3 NULL NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  2417. NULL mysql help_topic description 4 NULL NO text 65535 65535 NULL NULL utf8 utf8_general_ci text select,insert,update,references
  2418. NULL mysql help_topic example 5 NULL NO text 65535 65535 NULL NULL utf8 utf8_general_ci text select,insert,update,references
  2419. NULL mysql help_topic url 6 NULL NO char 128 384 NULL NULL utf8 utf8_general_ci char(128) select,insert,update,references
  2420. NULL mysql host Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2421. NULL mysql host Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2422. NULL mysql host Select_priv 3 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2423. NULL mysql host Insert_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2424. NULL mysql host Update_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2425. NULL mysql host Delete_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2426. NULL mysql host Create_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2427. NULL mysql host Drop_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2428. NULL mysql host Grant_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2429. NULL mysql host References_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2430. NULL mysql host Index_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2431. NULL mysql host Alter_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2432. 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
  2433. 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
  2434. 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
  2435. 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
  2436. 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
  2437. 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
  2438. NULL mysql host Execute_priv 19 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2439. NULL mysql host Trigger_priv 20 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  2440. 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
  2441. NULL mysql ndb_apply_status epoch 2 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2442. NULL mysql ndb_binlog_index Position 1 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2443. NULL mysql ndb_binlog_index File 2 NULL NO varchar 255 255 NULL NULL latin1 latin1_swedish_ci varchar(255) select,insert,update,references
  2444. NULL mysql ndb_binlog_index epoch 3 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned PRI select,insert,update,references
  2445. NULL mysql ndb_binlog_index inserts 4 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2446. NULL mysql ndb_binlog_index updates 5 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2447. NULL mysql ndb_binlog_index deletes 6 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2448. NULL mysql ndb_binlog_index schemaops 7 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2449. NULL mysql plugin name 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2450. NULL mysql plugin dl 2 NO char 128 384 NULL NULL utf8 utf8_bin char(128) select,insert,update,references
  2451. NULL mysql proc db 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2452. NULL mysql proc name 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  2453. NULL mysql proc type 3 NULL NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('FUNCTION','PROCEDURE') PRI select,insert,update,references
  2454. NULL mysql proc specific_name 4 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2455. NULL mysql proc language 5 SQL NO enum 3 9 NULL NULL utf8 utf8_general_ci enum('SQL') select,insert,update,references
  2456. 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
  2457. NULL mysql proc is_deterministic 7 NO NO enum 3 9 NULL NULL utf8 utf8_general_ci enum('YES','NO') select,insert,update,references
  2458. NULL mysql proc security_type 8 DEFINER NO enum 7 21 NULL NULL utf8 utf8_general_ci enum('INVOKER','DEFINER') select,insert,update,references
  2459. NULL mysql proc param_list 9 NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2460. NULL mysql proc returns 10 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2461. NULL mysql proc body 11 NO longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2462. NULL mysql proc definer 12 NO char 77 231 NULL NULL utf8 utf8_bin char(77) select,insert,update,references
  2463. NULL mysql proc created 13 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2464. NULL mysql proc modified 14 0000-00-00 00:00:00 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2465. 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
  2466. NULL mysql proc comment 16 NO char 64 192 NULL NULL utf8 utf8_bin char(64) select,insert,update,references
  2467. NULL mysql procs_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2468. NULL mysql procs_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2469. NULL mysql procs_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  2470. NULL mysql procs_priv Routine_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2471. 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
  2472. NULL mysql procs_priv Grantor 6 NO char 77 231 NULL NULL utf8 utf8_bin char(77) MUL select,insert,update,references
  2473. 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
  2474. NULL mysql procs_priv Timestamp 8 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2475. NULL mysql servers Server_name 1 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  2476. NULL mysql servers Host 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2477. NULL mysql servers Db 3 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2478. NULL mysql servers Username 4 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2479. NULL mysql servers Password 5 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2480. NULL mysql servers Port 6 0 NO int NULL NULL 10 0 NULL NULL int(4) select,insert,update,references
  2481. NULL mysql servers Socket 7 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2482. NULL mysql servers Wrapper 8 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2483. NULL mysql servers Owner 9 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  2484. NULL mysql slow_log start_time 1 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2485. NULL mysql slow_log user_host 2 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  2486. NULL mysql slow_log query_time 3 NULL NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  2487. NULL mysql slow_log lock_time 4 NULL NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  2488. NULL mysql slow_log rows_sent 5 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2489. NULL mysql slow_log rows_examined 6 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2490. NULL mysql slow_log db 7 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select,insert,update,references
  2491. NULL mysql slow_log last_insert_id 8 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2492. NULL mysql slow_log insert_id 9 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2493. NULL mysql slow_log server_id 10 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2494. NULL mysql slow_log sql_text 11 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  2495. NULL mysql tables_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  2496. NULL mysql tables_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2497. NULL mysql tables_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  2498. NULL mysql tables_priv Table_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  2499. NULL mysql tables_priv Grantor 5 NO char 77 231 NULL NULL utf8 utf8_bin char(77) MUL select,insert,update,references
  2500. NULL mysql tables_priv Timestamp 6 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2501. 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
  2502. 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
  2503. 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
  2504. 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
  2505. 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
  2506. NULL mysql time_zone_leap_second Correction 2 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2507. 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
  2508. 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
  2509. 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
  2510. NULL mysql time_zone_transition Transition_time 2 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) PRI select,insert,update,references
  2511. 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
  2512. 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
  2513. 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
  2514. NULL mysql time_zone_transition_type Offset 3 0 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2515. 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
  2516. NULL mysql time_zone_transition_type Abbreviation 5 NO char 8 24 NULL NULL utf8 utf8_general_ci char(8) select,insert,update,references
  2517. NULL test t1 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2518. NULL test t1 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2519. NULL test t1 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2520. NULL test t1 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2521. NULL test t1 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2522. NULL test t1 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2523. NULL test t10 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2524. NULL test t10 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2525. NULL test t10 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2526. NULL test t10 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2527. NULL test t10 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2528. NULL test t10 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2529. NULL test t11 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2530. NULL test t11 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2531. NULL test t11 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2532. NULL test t11 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2533. NULL test t11 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2534. NULL test t11 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2535. NULL test t2 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2536. NULL test t2 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2537. NULL test t2 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2538. NULL test t2 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2539. NULL test t2 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2540. NULL test t2 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2541. NULL test t3 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2542. NULL test t3 f2 2 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2543. NULL test t3 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2544. NULL test t4 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2545. NULL test t4 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2546. NULL test t4 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2547. NULL test t4 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2548. NULL test t4 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2549. NULL test t4 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2550. NULL test t7 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2551. NULL test t7 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2552. NULL test t7 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2553. NULL test t7 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2554. NULL test t8 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2555. NULL test t8 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2556. NULL test t8 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2557. NULL test t8 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2558. NULL test t9 f1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2559. NULL test t9 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2560. NULL test t9 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2561. NULL test tb1 f1 1 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  2562. NULL test tb1 f2 2 NULL YES char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  2563. NULL test tb1 f3 3 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  2564. NULL test tb1 f4 4 NULL YES tinytext 127 255 NULL NULL ucs2 ucs2_general_ci tinytext select,insert,update,references
  2565. NULL test tb1 f5 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  2566. NULL test tb1 f6 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  2567. NULL test tb1 f7 7 NULL YES longtext 4294967295 4294967295 NULL NULL latin1 latin1_swedish_ci longtext select,insert,update,references
  2568. NULL test tb1 f8 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  2569. NULL test tb1 f9 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2570. NULL test tb1 f10 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  2571. NULL test tb1 f11 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2572. NULL test tb1 f12 12 NULL YES binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  2573. NULL test tb1 f13 13 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  2574. NULL test tb1 f14 14 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  2575. NULL test tb1 f15 15 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  2576. NULL test tb1 f16 16 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  2577. NULL test tb1 f17 17 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  2578. NULL test tb1 f18 18 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  2579. NULL test tb1 f19 19 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  2580. NULL test tb1 f20 20 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  2581. NULL test tb1 f21 21 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  2582. NULL test tb1 f22 22 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  2583. NULL test tb1 f23 23 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  2584. NULL test tb1 f24 24 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  2585. NULL test tb1 f25 25 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2586. NULL test tb1 f26 26 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  2587. NULL test tb1 f27 27 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  2588. NULL test tb1 f28 28 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  2589. NULL test tb1 f29 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  2590. NULL test tb1 f30 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2591. NULL test tb1 f31 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  2592. NULL test tb1 f32 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  2593. NULL test tb1 f33 33 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2594. NULL test tb1 f34 34 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2595. NULL test tb1 f35 35 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2596. NULL test tb1 f36 36 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2597. NULL test tb1 f37 37 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2598. NULL test tb1 f38 38 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  2599. NULL test tb1 f39 39 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2600. NULL test tb1 f40 40 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  2601. NULL test tb1 f41 41 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2602. NULL test tb1 f42 42 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2603. NULL test tb1 f43 43 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2604. NULL test tb1 f44 44 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2605. NULL test tb1 f45 45 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2606. NULL test tb1 f46 46 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  2607. NULL test tb1 f47 47 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2608. NULL test tb1 f48 48 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  2609. NULL test tb1 f49 49 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2610. NULL test tb1 f50 50 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2611. NULL test tb1 f51 51 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2612. NULL test tb1 f52 52 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2613. NULL test tb1 f53 53 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2614. NULL test tb1 f54 54 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2615. NULL test tb1 f55 55 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2616. NULL test tb1 f56 56 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2617. NULL test tb1 f57 57 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2618. NULL test tb1 f58 58 99 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  2619. NULL test tb2 f59 1 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2620. NULL test tb2 f60 2 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  2621. NULL test tb2 f61 3 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2622. NULL test tb2 f62 4 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2623. NULL test tb2 f63 5 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2624. NULL test tb2 f64 6 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2625. NULL test tb2 f65 7 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2626. NULL test tb2 f66 8 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  2627. NULL test tb2 f67 9 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2628. NULL test tb2 f68 10 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  2629. NULL test tb2 f69 11 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2630. NULL test tb2 f70 12 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2631. NULL test tb2 f71 13 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2632. NULL test tb2 f72 14 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2633. NULL test tb2 f73 15 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  2634. NULL test tb2 f74 16 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  2635. NULL test tb2 f75 17 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2636. NULL test tb2 f76 18 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2637. NULL test tb2 f77 19 7.7 YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  2638. NULL test tb2 f78 20 7.7 YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  2639. NULL test tb2 f79 21 00000000000000000007.7 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2640. NULL test tb2 f80 22 00000000000000000008.8 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2641. NULL test tb2 f81 23 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2642. NULL test tb2 f82 24 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2643. NULL test tb2 f83 25 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2644. NULL test tb2 f84 26 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2645. NULL test tb2 f85 27 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2646. NULL test tb2 f86 28 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2647. NULL test tb2 f87 29 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2648. NULL test tb2 f88 30 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2649. NULL test tb2 f89 31 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2650. NULL test tb2 f90 32 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2651. NULL test tb2 f91 33 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2652. NULL test tb2 f92 34 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2653. NULL test tb2 f93 35 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2654. NULL test tb2 f94 36 8.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  2655. NULL test tb2 f95 37 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2656. NULL test tb2 f96 38 8.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  2657. NULL test tb2 f97 39 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2658. NULL test tb2 f98 40 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2659. NULL test tb2 f99 41 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2660. NULL test tb2 f100 42 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2661. NULL test tb2 f101 43 2000-01-01 NO date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2662. NULL test tb2 f102 44 00:00:20 NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  2663. NULL test tb2 f103 45 0002-02-02 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2664. NULL test tb2 f104 46 2000-12-31 23:59:59 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2665. NULL test tb2 f105 47 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  2666. NULL test tb2 f106 48 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  2667. NULL test tb2 f107 49 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  2668. NULL test tb2 f108 50 1enum NO enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  2669. NULL test tb2 f109 51 1set NO set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  2670. NULL test tb2 f110 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  2671. NULL test tb2 f111 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  2672. NULL test tb2 f112 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  2673. NULL test tb2 f113 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  2674. NULL test tb2 f114 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  2675. NULL test tb2 f115 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  2676. NULL test tb2 f116 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  2677. NULL test tb2 f117 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  2678. NULL test tb3 f118 1 a NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  2679. NULL test tb3 f119 2  NO char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  2680. NULL test tb3 f120 3  NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  2681. NULL test tb3 f121 4 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  2682. NULL test tb3 f122 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  2683. NULL test tb3 f123 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  2684. NULL test tb3 f124 7 NULL YES longtext 2147483647 4294967295 NULL NULL ucs2 ucs2_general_ci longtext select,insert,update,references
  2685. NULL test tb3 f125 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  2686. NULL test tb3 f126 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  2687. NULL test tb3 f127 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  2688. NULL test tb3 f128 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  2689. NULL test tb3 f129 12  NO binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  2690. NULL test tb3 f130 13 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  2691. NULL test tb3 f131 14 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  2692. NULL test tb3 f132 15 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  2693. NULL test tb3 f133 16 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  2694. NULL test tb3 f134 17 999 NO smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  2695. NULL test tb3 f135 18 999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  2696. NULL test tb3 f136 19 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  2697. NULL test tb3 f137 20 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  2698. NULL test tb3 f138 21 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  2699. NULL test tb3 f139 22 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  2700. NULL test tb3 f140 23 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  2701. NULL test tb3 f141 24 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  2702. NULL test tb3 f142 25 99999 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2703. NULL test tb3 f143 26 99999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  2704. NULL test tb3 f144 27 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  2705. NULL test tb3 f145 28 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  2706. NULL test tb3 f146 29 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  2707. NULL test tb3 f147 30 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  2708. NULL test tb3 f148 31 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  2709. NULL test tb3 f149 32 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  2710. NULL test tb3 f150 33 1000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2711. NULL test tb3 f151 34 999 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2712. NULL test tb3 f152 35 0000001000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2713. NULL test tb3 f153 36 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2714. NULL test tb3 f154 37 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2715. NULL test tb3 f155 38 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  2716. NULL test tb3 f156 39 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2717. NULL test tb3 f157 40 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  2718. NULL test tb3 f158 41 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2719. NULL test tb3 f159 42 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2720. NULL test tb3 f160 43 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2721. NULL test tb3 f161 44 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2722. NULL test tb3 f162 45 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2723. NULL test tb3 f163 46 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  2724. NULL test tb3 f164 47 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2725. NULL test tb3 f165 48 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  2726. NULL test tb3 f166 49 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2727. NULL test tb3 f167 50 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2728. NULL test tb3 f168 51 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2729. NULL test tb3 f169 52 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2730. NULL test tb3 f170 53 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2731. NULL test tb3 f171 54 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2732. NULL test tb3 f172 55 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2733. NULL test tb3 f173 56 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2734. NULL test tb3 f174 57 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2735. NULL test tb3 f175 58 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  2736. NULL test tb4 f176 1 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2737. NULL test tb4 f177 2 9 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  2738. NULL test tb4 f178 3 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2739. NULL test tb4 f179 4 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2740. NULL test tb4 f180 5 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2741. NULL test tb4 f181 6 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  2742. NULL test tb4 f182 7 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  2743. NULL test tb4 f183 8 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  2744. NULL test tb4 f184 9 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  2745. NULL test tb4 f185 10 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  2746. NULL test tb4 f186 11 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2747. NULL test tb4 f187 12 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2748. NULL test tb4 f188 13 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  2749. NULL test tb4 f189 14 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  2750. NULL test tb4 f190 15 88.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  2751. NULL test tb4 f191 16 88.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  2752. NULL test tb4 f192 17 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2753. NULL test tb4 f193 18 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2754. NULL test tb4 f194 19 55.5 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  2755. NULL test tb4 f195 20 55.5 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  2756. NULL test tb4 f196 21 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2757. NULL test tb4 f197 22 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2758. NULL test tb4 f198 23 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2759. NULL test tb4 f199 24 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2760. NULL test tb4 f200 25 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2761. NULL test tb4 f201 26 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2762. NULL test tb4 f202 27 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2763. NULL test tb4 f203 28 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2764. NULL test tb4 f204 29 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2765. NULL test tb4 f205 30 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2766. NULL test tb4 f206 31 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2767. NULL test tb4 f207 32 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2768. NULL test tb4 f208 33 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2769. NULL test tb4 f209 34 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2770. NULL test tb4 f210 35 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  2771. NULL test tb4 f211 36 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  2772. NULL test tb4 f212 37 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  2773. NULL test tb4 f213 38 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  2774. NULL test tb4 f214 39 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2775. NULL test tb4 f215 40 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2776. NULL test tb4 f216 41 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  2777. NULL test tb4 f217 42 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  2778. NULL test tb4 f218 43 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2779. NULL test tb4 f219 44 NULL YES time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  2780. NULL test tb4 f220 45 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  2781. NULL test tb4 f221 46 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  2782. NULL test tb4 f222 47 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  2783. NULL test tb4 f223 48 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  2784. NULL test tb4 f224 49 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  2785. NULL test tb4 f225 50 NULL YES enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  2786. NULL test tb4 f226 51 NULL YES set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  2787. NULL test tb4 f227 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  2788. NULL test tb4 f228 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  2789. NULL test tb4 f229 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  2790. NULL test tb4 f230 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  2791. NULL test tb4 f231 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  2792. NULL test tb4 f232 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  2793. NULL test tb4 f233 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  2794. NULL test tb4 f234 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  2795. NULL test tb4 f235 60 NULL YES char 255 510 NULL NULL ucs2 ucs2_general_ci char(255) select,insert,update,references
  2796. NULL test tb4 f236 61 NULL YES char 60 60 NULL NULL latin1 latin1_swedish_ci char(60) select,insert,update,references
  2797. NULL test tb4 f237 62 NULL YES char 255 255 NULL NULL latin1 latin1_bin char(255) select,insert,update,references
  2798. NULL test tb4 f238 63 NULL YES varchar 0 0 NULL NULL latin1 latin1_bin varchar(0) select,insert,update,references
  2799. NULL test tb4 f239 64 NULL YES varbinary 1000 1000 NULL NULL NULL NULL varbinary(1000) select,insert,update,references
  2800. NULL test tb4 f240 65 NULL YES varchar 120 240 NULL NULL ucs2 ucs2_general_ci varchar(120) select,insert,update,references
  2801. NULL test tb4 f241 66 NULL YES char 100 200 NULL NULL ucs2 ucs2_general_ci char(100) select,insert,update,references
  2802. NULL test tb4 f242 67 NULL YES bit NULL NULL 30 NULL NULL NULL bit(30) select,insert,update,references
  2803. NULL test4 t6 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  2804. NULL test4 t6 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2805. NULL test4 t6 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  2806. NULL test4 t6 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2807. NULL test4 t6 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  2808. NULL test4 t6 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  2809. select * from character_sets;
  2810. CHARACTER_SET_NAME DEFAULT_COLLATE_NAME DESCRIPTION MAXLEN
  2811. big5 big5_chinese_ci Big5 Traditional Chinese 2
  2812. dec8 dec8_swedish_ci DEC West European 1
  2813. cp850 cp850_general_ci DOS West European 1
  2814. hp8 hp8_english_ci HP West European 1
  2815. koi8r koi8r_general_ci KOI8-R Relcom Russian 1
  2816. latin1 latin1_swedish_ci cp1252 West European 1
  2817. latin2 latin2_general_ci ISO 8859-2 Central European 1
  2818. swe7 swe7_swedish_ci 7bit Swedish 1
  2819. ascii ascii_general_ci US ASCII 1
  2820. ujis ujis_japanese_ci EUC-JP Japanese 3
  2821. sjis sjis_japanese_ci Shift-JIS Japanese 2
  2822. hebrew hebrew_general_ci ISO 8859-8 Hebrew 1
  2823. tis620 tis620_thai_ci TIS620 Thai 1
  2824. euckr euckr_korean_ci EUC-KR Korean 2
  2825. koi8u koi8u_general_ci KOI8-U Ukrainian 1
  2826. gb2312 gb2312_chinese_ci GB2312 Simplified Chinese 2
  2827. greek greek_general_ci ISO 8859-7 Greek 1
  2828. cp1250 cp1250_general_ci Windows Central European 1
  2829. gbk gbk_chinese_ci GBK Simplified Chinese 2
  2830. latin5 latin5_turkish_ci ISO 8859-9 Turkish 1
  2831. armscii8 armscii8_general_ci ARMSCII-8 Armenian 1
  2832. utf8 utf8_general_ci UTF-8 Unicode 3
  2833. ucs2 ucs2_general_ci UCS-2 Unicode 2
  2834. cp866 cp866_general_ci DOS Russian 1
  2835. keybcs2 keybcs2_general_ci DOS Kamenicky Czech-Slovak 1
  2836. macce macce_general_ci Mac Central European 1
  2837. macroman macroman_general_ci Mac West European 1
  2838. cp852 cp852_general_ci DOS Central European 1
  2839. latin7 latin7_general_ci ISO 8859-13 Baltic 1
  2840. cp1251 cp1251_general_ci Windows Cyrillic 1
  2841. cp1256 cp1256_general_ci Windows Arabic 1
  2842. cp1257 cp1257_general_ci Windows Baltic 1
  2843. binary binary Binary pseudo charset 1
  2844. geostd8 geostd8_general_ci GEOSTD8 Georgian 1
  2845. cp932 cp932_japanese_ci SJIS for Windows Japanese 2
  2846. eucjpms eucjpms_japanese_ci UJIS for Windows Japanese 3
  2847. select sum(id) from collations;
  2848. sum(id)
  2849. 10840
  2850. select collation_name, character_set_name into @x,@y
  2851. from collation_character_set_applicability limit 1;
  2852. select @x, @y;
  2853. @x @y
  2854. big5_chinese_ci big5
  2855. select * from routines;
  2856. 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
  2857. sp_1 NULL db_datadict sp_1 PROCEDURE NULL SQL BEGIN
  2858. SELECT * FROM db_datadict.v1;
  2859. END NULL NULL SQL NO CONTAINS SQL NULL DEFINER YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss root@localhost
  2860. select count(*) from routines;
  2861. count(*)
  2862. 1
  2863. select * from statistics;
  2864. 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
  2865. NULL mysql user 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  2866. NULL mysql user 0 mysql PRIMARY 2 User A 5 NULL NULL BTREE
  2867. NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  2868. NULL mysql columns_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  2869. NULL mysql columns_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  2870. NULL mysql columns_priv 0 mysql PRIMARY 4 Table_name A NULL NULL NULL BTREE
  2871. NULL mysql columns_priv 0 mysql PRIMARY 5 Column_name A 0 NULL NULL BTREE
  2872. NULL mysql db 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  2873. NULL mysql db 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  2874. NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
  2875. NULL mysql db 1 mysql User 1 User A NULL NULL NULL BTREE
  2876. NULL mysql event 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
  2877. NULL mysql event 0 mysql PRIMARY 2 name A 0 NULL NULL BTREE
  2878. NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
  2879. NULL mysql help_category 0 mysql PRIMARY 1 help_category_id A 0 NULL NULL BTREE
  2880. NULL mysql help_category 0 mysql name 1 name A 0 NULL NULL BTREE
  2881. NULL mysql help_keyword 0 mysql PRIMARY 1 help_keyword_id A 0 NULL NULL BTREE
  2882. NULL mysql help_keyword 0 mysql name 1 name A 0 NULL NULL BTREE
  2883. NULL mysql help_relation 0 mysql PRIMARY 1 help_keyword_id A NULL NULL NULL BTREE
  2884. NULL mysql help_relation 0 mysql PRIMARY 2 help_topic_id A 0 NULL NULL BTREE
  2885. NULL mysql help_topic 0 mysql PRIMARY 1 help_topic_id A 0 NULL NULL BTREE
  2886. NULL mysql help_topic 0 mysql name 1 name A 0 NULL NULL BTREE
  2887. NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  2888. NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
  2889. NULL mysql ndb_apply_status 0 mysql PRIMARY 1 server_id NULL 0 NULL NULL HASH
  2890. NULL mysql ndb_binlog_index 0 mysql PRIMARY 1 epoch A 5 NULL NULL BTREE
  2891. NULL mysql plugin 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
  2892. NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
  2893. NULL mysql proc 0 mysql PRIMARY 2 name A NULL NULL NULL BTREE
  2894. NULL mysql proc 0 mysql PRIMARY 3 type A 1 NULL NULL BTREE
  2895. NULL mysql procs_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  2896. NULL mysql procs_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  2897. NULL mysql procs_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  2898. NULL mysql procs_priv 0 mysql PRIMARY 4 Routine_name A NULL NULL NULL BTREE
  2899. NULL mysql procs_priv 0 mysql PRIMARY 5 Routine_type A 0 NULL NULL BTREE
  2900. NULL mysql procs_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
  2901. NULL mysql servers 0 mysql PRIMARY 1 Server_name A 1 NULL NULL BTREE
  2902. NULL mysql tables_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  2903. NULL mysql tables_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  2904. NULL mysql tables_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  2905. NULL mysql tables_priv 0 mysql PRIMARY 4 Table_name A 0 NULL NULL BTREE
  2906. NULL mysql tables_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
  2907. NULL mysql time_zone 0 mysql PRIMARY 1 Time_zone_id A 5 NULL NULL BTREE
  2908. NULL mysql time_zone_leap_second 0 mysql PRIMARY 1 Transition_time A 22 NULL NULL BTREE
  2909. NULL mysql time_zone_name 0 mysql PRIMARY 1 Name A 6 NULL NULL BTREE
  2910. NULL mysql time_zone_transition 0 mysql PRIMARY 1 Time_zone_id A NULL NULL NULL BTREE
  2911. NULL mysql time_zone_transition 0 mysql PRIMARY 2 Transition_time A 393 NULL NULL BTREE
  2912. NULL mysql time_zone_transition_type 0 mysql PRIMARY 1 Time_zone_id A NULL NULL NULL BTREE
  2913. NULL mysql time_zone_transition_type 0 mysql PRIMARY 2 Transition_type_id A 31 NULL NULL BTREE
  2914. select * from views;
  2915. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE
  2916. NULL db_datadict v1 /* ALGORITHM=UNDEFINED */ select `tables`.`TABLE_CATALOG` AS `TABLE_CATALOG`,`tables`.`TABLE_SCHEMA` AS `TABLE_SCHEMA`,`tables`.`TABLE_NAME` AS `TABLE_NAME`,`tables`.`TABLE_TYPE` AS `TABLE_TYPE`,`tables`.`ENGINE` AS `ENGINE`,`tables`.`VERSION` AS `VERSION`,`tables`.`ROW_FORMAT` AS `ROW_FORMAT`,`tables`.`TABLE_ROWS` AS `TABLE_ROWS`,`tables`.`AVG_ROW_LENGTH` AS `AVG_ROW_LENGTH`,`tables`.`DATA_LENGTH` AS `DATA_LENGTH`,`tables`.`MAX_DATA_LENGTH` AS `MAX_DATA_LENGTH`,`tables`.`INDEX_LENGTH` AS `INDEX_LENGTH`,`tables`.`DATA_FREE` AS `DATA_FREE`,`tables`.`AUTO_INCREMENT` AS `AUTO_INCREMENT`,`tables`.`CREATE_TIME` AS `CREATE_TIME`,`tables`.`UPDATE_TIME` AS `UPDATE_TIME`,`tables`.`CHECK_TIME` AS `CHECK_TIME`,`tables`.`TABLE_COLLATION` AS `TABLE_COLLATION`,`tables`.`CHECKSUM` AS `CHECKSUM`,`tables`.`CREATE_OPTIONS` AS `CREATE_OPTIONS`,`tables`.`TABLE_COMMENT` AS `TABLE_COMMENT` from `information_schema`.`tables` NONE NO root@localhost DEFINER
  2917. NULL db_datadict vu /* ALGORITHM=UNDEFINED */ select distinct `vu1`.`u` AS `u`,substr(`vu1`.`u`,(length(substring_index(`vu1`.`u`,_utf8'@',1)) + 3)) AS `server`,substr(`vu1`.`u`,(length(substring_index(`vu1`.`u`,_utf8'@',1)) + 3),(length(substr(`vu1`.`u`,(length(substring_index(`vu1`.`u`,_utf8'@',1)) + 3))) - 1)) AS `Server_Clean` from `db_datadict`.`vu1` NONE NO root@localhost DEFINER
  2918. NULL db_datadict vu1 /* ALGORITHM=UNDEFINED */ select `user_privileges`.`GRANTEE` AS `u` from `information_schema`.`user_privileges` NONE NO root@localhost DEFINER
  2919. select * from user_privileges;
  2920. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  2921. 'root'@'localhost' NULL SELECT YES
  2922. 'root'@'localhost' NULL INSERT YES
  2923. 'root'@'localhost' NULL UPDATE YES
  2924. 'root'@'localhost' NULL DELETE YES
  2925. 'root'@'localhost' NULL CREATE YES
  2926. 'root'@'localhost' NULL DROP YES
  2927. 'root'@'localhost' NULL RELOAD YES
  2928. 'root'@'localhost' NULL SHUTDOWN YES
  2929. 'root'@'localhost' NULL PROCESS YES
  2930. 'root'@'localhost' NULL FILE YES
  2931. 'root'@'localhost' NULL REFERENCES YES
  2932. 'root'@'localhost' NULL INDEX YES
  2933. 'root'@'localhost' NULL ALTER YES
  2934. 'root'@'localhost' NULL SHOW DATABASES YES
  2935. 'root'@'localhost' NULL SUPER YES
  2936. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  2937. 'root'@'localhost' NULL LOCK TABLES YES
  2938. 'root'@'localhost' NULL EXECUTE YES
  2939. 'root'@'localhost' NULL REPLICATION SLAVE YES
  2940. 'root'@'localhost' NULL REPLICATION CLIENT YES
  2941. 'root'@'localhost' NULL CREATE VIEW YES
  2942. 'root'@'localhost' NULL SHOW VIEW YES
  2943. 'root'@'localhost' NULL CREATE ROUTINE YES
  2944. 'root'@'localhost' NULL ALTER ROUTINE YES
  2945. 'root'@'localhost' NULL CREATE USER YES
  2946. 'root'@'localhost' NULL EVENT YES
  2947. 'root'@'localhost' NULL TRIGGER YES
  2948. 'root'@'127.0.0.1' NULL SELECT YES
  2949. 'root'@'127.0.0.1' NULL INSERT YES
  2950. 'root'@'127.0.0.1' NULL UPDATE YES
  2951. 'root'@'127.0.0.1' NULL DELETE YES
  2952. 'root'@'127.0.0.1' NULL CREATE YES
  2953. 'root'@'127.0.0.1' NULL DROP YES
  2954. 'root'@'127.0.0.1' NULL RELOAD YES
  2955. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  2956. 'root'@'127.0.0.1' NULL PROCESS YES
  2957. 'root'@'127.0.0.1' NULL FILE YES
  2958. 'root'@'127.0.0.1' NULL REFERENCES YES
  2959. 'root'@'127.0.0.1' NULL INDEX YES
  2960. 'root'@'127.0.0.1' NULL ALTER YES
  2961. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  2962. 'root'@'127.0.0.1' NULL SUPER YES
  2963. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  2964. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  2965. 'root'@'127.0.0.1' NULL EXECUTE YES
  2966. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  2967. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  2968. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  2969. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  2970. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  2971. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  2972. 'root'@'127.0.0.1' NULL CREATE USER YES
  2973. 'root'@'127.0.0.1' NULL EVENT YES
  2974. 'root'@'127.0.0.1' NULL TRIGGER YES
  2975. ''@'localhost' NULL USAGE NO
  2976. 'root'@'<SERVER_NAME>' NULL SELECT YES
  2977. 'root'@'<SERVER_NAME>' NULL INSERT YES
  2978. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  2979. 'root'@'<SERVER_NAME>' NULL DELETE YES
  2980. 'root'@'<SERVER_NAME>' NULL CREATE YES
  2981. 'root'@'<SERVER_NAME>' NULL DROP YES
  2982. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  2983. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  2984. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  2985. 'root'@'<SERVER_NAME>' NULL FILE YES
  2986. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  2987. 'root'@'<SERVER_NAME>' NULL INDEX YES
  2988. 'root'@'<SERVER_NAME>' NULL ALTER YES
  2989. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  2990. 'root'@'<SERVER_NAME>' NULL SUPER YES
  2991. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  2992. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  2993. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  2994. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  2995. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  2996. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  2997. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  2998. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  2999. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  3000. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  3001. 'root'@'<SERVER_NAME>' NULL EVENT YES
  3002. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  3003. ''@'<SERVER_NAME>' NULL USAGE NO
  3004. select * from schema_privileges;
  3005. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  3006. ''@'%' NULL test SELECT NO
  3007. ''@'%' NULL test INSERT NO
  3008. ''@'%' NULL test UPDATE NO
  3009. ''@'%' NULL test DELETE NO
  3010. ''@'%' NULL test CREATE NO
  3011. ''@'%' NULL test DROP NO
  3012. ''@'%' NULL test REFERENCES NO
  3013. ''@'%' NULL test INDEX NO
  3014. ''@'%' NULL test ALTER NO
  3015. ''@'%' NULL test CREATE TEMPORARY TABLES NO
  3016. ''@'%' NULL test LOCK TABLES NO
  3017. ''@'%' NULL test CREATE VIEW NO
  3018. ''@'%' NULL test SHOW VIEW NO
  3019. ''@'%' NULL test CREATE ROUTINE NO
  3020. ''@'%' NULL test EVENT NO
  3021. ''@'%' NULL test TRIGGER NO
  3022. ''@'%' NULL test\_% SELECT NO
  3023. ''@'%' NULL test\_% INSERT NO
  3024. ''@'%' NULL test\_% UPDATE NO
  3025. ''@'%' NULL test\_% DELETE NO
  3026. ''@'%' NULL test\_% CREATE NO
  3027. ''@'%' NULL test\_% DROP NO
  3028. ''@'%' NULL test\_% REFERENCES NO
  3029. ''@'%' NULL test\_% INDEX NO
  3030. ''@'%' NULL test\_% ALTER NO
  3031. ''@'%' NULL test\_% CREATE TEMPORARY TABLES NO
  3032. ''@'%' NULL test\_% LOCK TABLES NO
  3033. ''@'%' NULL test\_% CREATE VIEW NO
  3034. ''@'%' NULL test\_% SHOW VIEW NO
  3035. ''@'%' NULL test\_% CREATE ROUTINE NO
  3036. ''@'%' NULL test\_% EVENT NO
  3037. ''@'%' NULL test\_% TRIGGER NO
  3038. select * from table_privileges;
  3039. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  3040. select * from column_privileges;
  3041. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  3042. select * from table_constraints;
  3043. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  3044. NULL mysql PRIMARY mysql user PRIMARY KEY
  3045. NULL mysql PRIMARY mysql columns_priv PRIMARY KEY
  3046. NULL mysql PRIMARY mysql db PRIMARY KEY
  3047. NULL mysql PRIMARY mysql event PRIMARY KEY
  3048. NULL mysql PRIMARY mysql func PRIMARY KEY
  3049. NULL mysql PRIMARY mysql help_category PRIMARY KEY
  3050. NULL mysql name mysql help_category UNIQUE
  3051. NULL mysql PRIMARY mysql help_keyword PRIMARY KEY
  3052. NULL mysql name mysql help_keyword UNIQUE
  3053. NULL mysql PRIMARY mysql help_relation PRIMARY KEY
  3054. NULL mysql PRIMARY mysql help_topic PRIMARY KEY
  3055. NULL mysql name mysql help_topic UNIQUE
  3056. NULL mysql PRIMARY mysql host PRIMARY KEY
  3057. NULL mysql PRIMARY mysql ndb_apply_status PRIMARY KEY
  3058. NULL mysql PRIMARY mysql ndb_binlog_index PRIMARY KEY
  3059. NULL mysql PRIMARY mysql plugin PRIMARY KEY
  3060. NULL mysql PRIMARY mysql proc PRIMARY KEY
  3061. NULL mysql PRIMARY mysql procs_priv PRIMARY KEY
  3062. NULL mysql PRIMARY mysql servers PRIMARY KEY
  3063. NULL mysql PRIMARY mysql tables_priv PRIMARY KEY
  3064. NULL mysql PRIMARY mysql time_zone PRIMARY KEY
  3065. NULL mysql PRIMARY mysql time_zone_leap_second PRIMARY KEY
  3066. NULL mysql PRIMARY mysql time_zone_name PRIMARY KEY
  3067. NULL mysql PRIMARY mysql time_zone_transition PRIMARY KEY
  3068. NULL mysql PRIMARY mysql time_zone_transition_type PRIMARY KEY
  3069. select * from key_column_usage;
  3070. 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
  3071. NULL mysql PRIMARY NULL mysql user Host 1 NULL NULL NULL NULL
  3072. NULL mysql PRIMARY NULL mysql user User 2 NULL NULL NULL NULL
  3073. NULL mysql PRIMARY NULL mysql columns_priv Host 1 NULL NULL NULL NULL
  3074. NULL mysql PRIMARY NULL mysql columns_priv Db 2 NULL NULL NULL NULL
  3075. NULL mysql PRIMARY NULL mysql columns_priv User 3 NULL NULL NULL NULL
  3076. NULL mysql PRIMARY NULL mysql columns_priv Table_name 4 NULL NULL NULL NULL
  3077. NULL mysql PRIMARY NULL mysql columns_priv Column_name 5 NULL NULL NULL NULL
  3078. NULL mysql PRIMARY NULL mysql db Host 1 NULL NULL NULL NULL
  3079. NULL mysql PRIMARY NULL mysql db Db 2 NULL NULL NULL NULL
  3080. NULL mysql PRIMARY NULL mysql db User 3 NULL NULL NULL NULL
  3081. NULL mysql PRIMARY NULL mysql event db 1 NULL NULL NULL NULL
  3082. NULL mysql PRIMARY NULL mysql event name 2 NULL NULL NULL NULL
  3083. NULL mysql PRIMARY NULL mysql func name 1 NULL NULL NULL NULL
  3084. NULL mysql PRIMARY NULL mysql help_category help_category_id 1 NULL NULL NULL NULL
  3085. NULL mysql name NULL mysql help_category name 1 NULL NULL NULL NULL
  3086. NULL mysql PRIMARY NULL mysql help_keyword help_keyword_id 1 NULL NULL NULL NULL
  3087. NULL mysql name NULL mysql help_keyword name 1 NULL NULL NULL NULL
  3088. NULL mysql PRIMARY NULL mysql help_relation help_keyword_id 1 NULL NULL NULL NULL
  3089. NULL mysql PRIMARY NULL mysql help_relation help_topic_id 2 NULL NULL NULL NULL
  3090. NULL mysql PRIMARY NULL mysql help_topic help_topic_id 1 NULL NULL NULL NULL
  3091. NULL mysql name NULL mysql help_topic name 1 NULL NULL NULL NULL
  3092. NULL mysql PRIMARY NULL mysql host Host 1 NULL NULL NULL NULL
  3093. NULL mysql PRIMARY NULL mysql host Db 2 NULL NULL NULL NULL
  3094. NULL mysql PRIMARY NULL mysql ndb_apply_status server_id 1 NULL NULL NULL NULL
  3095. NULL mysql PRIMARY NULL mysql ndb_binlog_index epoch 1 NULL NULL NULL NULL
  3096. NULL mysql PRIMARY NULL mysql plugin name 1 NULL NULL NULL NULL
  3097. NULL mysql PRIMARY NULL mysql proc db 1 NULL NULL NULL NULL
  3098. NULL mysql PRIMARY NULL mysql proc name 2 NULL NULL NULL NULL
  3099. NULL mysql PRIMARY NULL mysql proc type 3 NULL NULL NULL NULL
  3100. NULL mysql PRIMARY NULL mysql procs_priv Host 1 NULL NULL NULL NULL
  3101. NULL mysql PRIMARY NULL mysql procs_priv Db 2 NULL NULL NULL NULL
  3102. NULL mysql PRIMARY NULL mysql procs_priv User 3 NULL NULL NULL NULL
  3103. NULL mysql PRIMARY NULL mysql procs_priv Routine_name 4 NULL NULL NULL NULL
  3104. NULL mysql PRIMARY NULL mysql procs_priv Routine_type 5 NULL NULL NULL NULL
  3105. NULL mysql PRIMARY NULL mysql servers Server_name 1 NULL NULL NULL NULL
  3106. NULL mysql PRIMARY NULL mysql tables_priv Host 1 NULL NULL NULL NULL
  3107. NULL mysql PRIMARY NULL mysql tables_priv Db 2 NULL NULL NULL NULL
  3108. NULL mysql PRIMARY NULL mysql tables_priv User 3 NULL NULL NULL NULL
  3109. NULL mysql PRIMARY NULL mysql tables_priv Table_name 4 NULL NULL NULL NULL
  3110. NULL mysql PRIMARY NULL mysql time_zone Time_zone_id 1 NULL NULL NULL NULL
  3111. NULL mysql PRIMARY NULL mysql time_zone_leap_second Transition_time 1 NULL NULL NULL NULL
  3112. NULL mysql PRIMARY NULL mysql time_zone_name Name 1 NULL NULL NULL NULL
  3113. NULL mysql PRIMARY NULL mysql time_zone_transition Time_zone_id 1 NULL NULL NULL NULL
  3114. NULL mysql PRIMARY NULL mysql time_zone_transition Transition_time 2 NULL NULL NULL NULL
  3115. NULL mysql PRIMARY NULL mysql time_zone_transition_type Time_zone_id 1 NULL NULL NULL NULL
  3116. NULL mysql PRIMARY NULL mysql time_zone_transition_type Transition_type_id 2 NULL NULL NULL NULL
  3117. select count(*) as max_recs from key_column_usage;
  3118. max_recs
  3119. 46
  3120. select max(cardinality) from statistics;
  3121. max(cardinality)
  3122. 393
  3123. select concat("View '",
  3124. table_name, "' is associated with the database '", table_schema, "'.")
  3125. AS "Who is Who for the Views"
  3126. from views;
  3127. Who is Who for the Views
  3128. View 'v1' is associated with the database 'db_datadict'.
  3129. View 'vu' is associated with the database 'db_datadict'.
  3130. View 'vu1' is associated with the database 'db_datadict'.
  3131. select concat("Table or view '", table_name,
  3132. "' is associated with the database '", table_schema, "'.") as "Who is Who"
  3133. from tables;
  3134. Who is Who
  3135. Table or view 'CHARACTER_SETS' is associated with the database 'information_schema'.
  3136. Table or view 'COLLATIONS' is associated with the database 'information_schema'.
  3137. Table or view 'COLLATION_CHARACTER_SET_APPLICABILITY' is associated with the database 'information_schema'.
  3138. Table or view 'COLUMNS' is associated with the database 'information_schema'.
  3139. Table or view 'COLUMN_PRIVILEGES' is associated with the database 'information_schema'.
  3140. Table or view 'ENGINES' is associated with the database 'information_schema'.
  3141. Table or view 'EVENTS' is associated with the database 'information_schema'.
  3142. Table or view 'FILES' is associated with the database 'information_schema'.
  3143. Table or view 'GLOBAL_STATUS' is associated with the database 'information_schema'.
  3144. Table or view 'GLOBAL_VARIABLES' is associated with the database 'information_schema'.
  3145. Table or view 'KEY_COLUMN_USAGE' is associated with the database 'information_schema'.
  3146. Table or view 'PARTITIONS' is associated with the database 'information_schema'.
  3147. Table or view 'PLUGINS' is associated with the database 'information_schema'.
  3148. Table or view 'PROCESSLIST' is associated with the database 'information_schema'.
  3149. Table or view 'REFERENTIAL_CONSTRAINTS' is associated with the database 'information_schema'.
  3150. Table or view 'ROUTINES' is associated with the database 'information_schema'.
  3151. Table or view 'SCHEMATA' is associated with the database 'information_schema'.
  3152. Table or view 'SCHEMA_PRIVILEGES' is associated with the database 'information_schema'.
  3153. Table or view 'SESSION_STATUS' is associated with the database 'information_schema'.
  3154. Table or view 'SESSION_VARIABLES' is associated with the database 'information_schema'.
  3155. Table or view 'STATISTICS' is associated with the database 'information_schema'.
  3156. Table or view 'TABLES' is associated with the database 'information_schema'.
  3157. Table or view 'TABLE_CONSTRAINTS' is associated with the database 'information_schema'.
  3158. Table or view 'TABLE_PRIVILEGES' is associated with the database 'information_schema'.
  3159. Table or view 'TRIGGERS' is associated with the database 'information_schema'.
  3160. Table or view 'USER_PRIVILEGES' is associated with the database 'information_schema'.
  3161. Table or view 'VIEWS' is associated with the database 'information_schema'.
  3162. Table or view 'v1' is associated with the database 'db_datadict'.
  3163. Table or view 'vu' is associated with the database 'db_datadict'.
  3164. Table or view 'vu1' is associated with the database 'db_datadict'.
  3165. Table or view 'user' is associated with the database 'mysql'.
  3166. Table or view 'columns_priv' is associated with the database 'mysql'.
  3167. Table or view 'db' is associated with the database 'mysql'.
  3168. Table or view 'event' is associated with the database 'mysql'.
  3169. Table or view 'func' is associated with the database 'mysql'.
  3170. Table or view 'general_log' is associated with the database 'mysql'.
  3171. Table or view 'help_category' is associated with the database 'mysql'.
  3172. Table or view 'help_keyword' is associated with the database 'mysql'.
  3173. Table or view 'help_relation' is associated with the database 'mysql'.
  3174. Table or view 'help_topic' is associated with the database 'mysql'.
  3175. Table or view 'host' is associated with the database 'mysql'.
  3176. Table or view 'ndb_apply_status' is associated with the database 'mysql'.
  3177. Table or view 'ndb_binlog_index' is associated with the database 'mysql'.
  3178. Table or view 'plugin' is associated with the database 'mysql'.
  3179. Table or view 'proc' is associated with the database 'mysql'.
  3180. Table or view 'procs_priv' is associated with the database 'mysql'.
  3181. Table or view 'servers' is associated with the database 'mysql'.
  3182. Table or view 'slow_log' is associated with the database 'mysql'.
  3183. Table or view 'tables_priv' is associated with the database 'mysql'.
  3184. Table or view 'time_zone' is associated with the database 'mysql'.
  3185. Table or view 'time_zone_leap_second' is associated with the database 'mysql'.
  3186. Table or view 'time_zone_name' is associated with the database 'mysql'.
  3187. Table or view 'time_zone_transition' is associated with the database 'mysql'.
  3188. Table or view 'time_zone_transition_type' is associated with the database 'mysql'.
  3189. Table or view 't1' is associated with the database 'test'.
  3190. Table or view 't10' is associated with the database 'test'.
  3191. Table or view 't11' is associated with the database 'test'.
  3192. Table or view 't2' is associated with the database 'test'.
  3193. Table or view 't3' is associated with the database 'test'.
  3194. Table or view 't4' is associated with the database 'test'.
  3195. Table or view 't7' is associated with the database 'test'.
  3196. Table or view 't8' is associated with the database 'test'.
  3197. Table or view 't9' is associated with the database 'test'.
  3198. Table or view 'tb1' is associated with the database 'test'.
  3199. Table or view 'tb2' is associated with the database 'test'.
  3200. Table or view 'tb3' is associated with the database 'test'.
  3201. Table or view 'tb4' is associated with the database 'test'.
  3202. Table or view 't6' is associated with the database 'test4'.
  3203. select grantee as "user's having select privilege",
  3204. substring( grantee, length(SUBSTRING_INDEX(grantee,_utf8'@',1))+2 )
  3205. from user_privileges where privilege_type = 'select';
  3206. user's having select privilege substring( grantee, length(SUBSTRING_INDEX(grantee,_utf8'@',1))+2 )
  3207. 'root'@'localhost' 'localhost'
  3208. 'root'@'127.0.0.1' '127.0.0.1'
  3209. 'root'@'<SERVER_NAME>' '<SERVER_NAME>'
  3210. select all table_schema from schema_privileges limit 0,5;
  3211. table_schema
  3212. test
  3213. test
  3214. test
  3215. test
  3216. test
  3217. select distinct(privilege_type) from table_privileges;
  3218. privilege_type
  3219. select * from column_privileges
  3220. group by table_schema having table_schema = 'db_datadict';
  3221. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  3222. select * from table_constraints limit 0,5;
  3223. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  3224. NULL mysql PRIMARY mysql user PRIMARY KEY
  3225. NULL mysql PRIMARY mysql columns_priv PRIMARY KEY
  3226. NULL mysql PRIMARY mysql db PRIMARY KEY
  3227. NULL mysql PRIMARY mysql event PRIMARY KEY
  3228. NULL mysql PRIMARY mysql func PRIMARY KEY
  3229. select count(*) as max_recs from key_column_usage limit 0,5;
  3230. max_recs
  3231. 46
  3232. select information_schema.tables.table_name as "table name",
  3233. count(distinct(column_name)) as "no of columns in the table"
  3234. from information_schema.tables left outer join information_schema.columns on
  3235. information_schema.tables.table_name = information_schema.columns.table_name
  3236. group by information_schema.tables.table_name;
  3237. table name no of columns in the table
  3238. CHARACTER_SETS 4
  3239. COLLATIONS 6
  3240. COLLATION_CHARACTER_SET_APPLICABILITY 2
  3241. COLUMNS 19
  3242. columns_priv 7
  3243. COLUMN_PRIVILEGES 7
  3244. db 22
  3245. ENGINES 6
  3246. event 16
  3247. EVENTS 19
  3248. FILES 38
  3249. func 4
  3250. general_log 6
  3251. GLOBAL_STATUS 2
  3252. GLOBAL_VARIABLES 2
  3253. help_category 4
  3254. help_keyword 2
  3255. help_relation 2
  3256. help_topic 6
  3257. host 20
  3258. KEY_COLUMN_USAGE 12
  3259. ndb_apply_status 2
  3260. ndb_binlog_index 7
  3261. PARTITIONS 25
  3262. plugin 2
  3263. PLUGINS 10
  3264. proc 16
  3265. PROCESSLIST 8
  3266. procs_priv 8
  3267. REFERENTIAL_CONSTRAINTS 11
  3268. ROUTINES 20
  3269. SCHEMATA 5
  3270. SCHEMA_PRIVILEGES 5
  3271. servers 9
  3272. SESSION_STATUS 2
  3273. SESSION_VARIABLES 2
  3274. slow_log 11
  3275. STATISTICS 15
  3276. t1 6
  3277. t10 6
  3278. t11 6
  3279. t2 6
  3280. t3 3
  3281. t4 6
  3282. t6 6
  3283. t7 4
  3284. t8 4
  3285. t9 3
  3286. TABLES 21
  3287. tables_priv 8
  3288. TABLE_CONSTRAINTS 6
  3289. TABLE_PRIVILEGES 6
  3290. tb1 58
  3291. tb2 59
  3292. tb3 58
  3293. tb4 67
  3294. time_zone 2
  3295. time_zone_leap_second 2
  3296. time_zone_name 2
  3297. time_zone_transition 3
  3298. time_zone_transition_type 5
  3299. TRIGGERS 19
  3300. user 39
  3301. USER_PRIVILEGES 4
  3302. v1 21
  3303. VIEWS 8
  3304. vu 3
  3305. vu1 1
  3306. root: simple select to check all - and never forget some - tables
  3307. -----------------------------------------------------------------
  3308. SELECT * FROM schemata LIMIT 1;
  3309. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  3310. NULL information_schema utf8 utf8_general_ci NULL
  3311. SELECT * FROM tables LIMIT 1;
  3312. 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
  3313. 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#
  3314. SELECT * FROM columns LIMIT 1;
  3315. 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
  3316. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  3317. SELECT * FROM character_sets LIMIT 1;
  3318. CHARACTER_SET_NAME DEFAULT_COLLATE_NAME DESCRIPTION MAXLEN
  3319. big5 big5_chinese_ci Big5 Traditional Chinese 2
  3320. SELECT * FROM collations LIMIT 1;
  3321. COLLATION_NAME CHARACTER_SET_NAME ID IS_DEFAULT IS_COMPILED SORTLEN
  3322. big5_chinese_ci big5 1 Yes Yes 1
  3323. SELECT * FROM collation_character_set_applicability LIMIT 1;
  3324. COLLATION_NAME CHARACTER_SET_NAME
  3325. big5_chinese_ci big5
  3326. SELECT * FROM routines LIMIT 1;
  3327. 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
  3328. sp_1 NULL db_datadict sp_1 PROCEDURE NULL SQL BEGIN
  3329. SELECT * FROM db_datadict.v1;
  3330. END NULL NULL SQL NO CONTAINS SQL NULL DEFINER <Created> <Last_Altered> root@localhost
  3331. SELECT * FROM statistics LIMIT 1;
  3332. 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
  3333. NULL mysql user 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  3334. SELECT * FROM views LIMIT 1;
  3335. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE
  3336. NULL db_datadict v1 /* ALGORITHM=UNDEFINED */ select `tables`.`TABLE_CATALOG` AS `TABLE_CATALOG`,`tables`.`TABLE_SCHEMA` AS `TABLE_SCHEMA`,`tables`.`TABLE_NAME` AS `TABLE_NAME`,`tables`.`TABLE_TYPE` AS `TABLE_TYPE`,`tables`.`ENGINE` AS `ENGINE`,`tables`.`VERSION` AS `VERSION`,`tables`.`ROW_FORMAT` AS `ROW_FORMAT`,`tables`.`TABLE_ROWS` AS `TABLE_ROWS`,`tables`.`AVG_ROW_LENGTH` AS `AVG_ROW_LENGTH`,`tables`.`DATA_LENGTH` AS `DATA_LENGTH`,`tables`.`MAX_DATA_LENGTH` AS `MAX_DATA_LENGTH`,`tables`.`INDEX_LENGTH` AS `INDEX_LENGTH`,`tables`.`DATA_FREE` AS `DATA_FREE`,`tables`.`AUTO_INCREMENT` AS `AUTO_INCREMENT`,`tables`.`CREATE_TIME` AS `CREATE_TIME`,`tables`.`UPDATE_TIME` AS `UPDATE_TIME`,`tables`.`CHECK_TIME` AS `CHECK_TIME`,`tables`.`TABLE_COLLATION` AS `TABLE_COLLATION`,`tables`.`CHECKSUM` AS `CHECKSUM`,`tables`.`CREATE_OPTIONS` AS `CREATE_OPTIONS`,`tables`.`TABLE_COMMENT` AS `TABLE_COMMENT` from `information_schema`.`tables` NONE NO root@localhost DEFINER
  3337. SELECT * FROM user_privileges LIMIT 1;
  3338. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  3339. 'root'@'localhost' NULL SELECT YES
  3340. SELECT * FROM schema_privileges LIMIT 1;
  3341. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  3342. ''@'%' NULL test SELECT NO
  3343. SELECT * FROM table_privileges LIMIT 1;
  3344. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  3345. SELECT * FROM column_privileges LIMIT 1;
  3346. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  3347. SELECT * FROM table_constraints LIMIT 1;
  3348. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  3349. NULL mysql PRIMARY mysql user PRIMARY KEY
  3350. SELECT * FROM key_column_usage LIMIT 1;
  3351. 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
  3352. NULL mysql PRIMARY NULL mysql user Host 1 NULL NULL NULL NULL
  3353. SELECT * FROM triggers LIMIT 1;
  3354. 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
  3355. SELECT * FROM parameters LIMIT 1;
  3356. ERROR 42S02: Unknown table 'parameters' in information_schema
  3357. SELECT * FROM referential_constraints LIMIT 1;
  3358. 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
  3359. use db_datadict;
  3360. select * from schemata;
  3361. ERROR 42S02: Table 'db_datadict.schemata' doesn't exist
  3362. select * from tables;
  3363. ERROR 42S02: Table 'db_datadict.tables' doesn't exist
  3364. select s.catalog_name, s.schema_name, s.default_character_set_name,
  3365. t.table_type, t.engine
  3366. from schemata s inner join tables t
  3367. ORDER BY s.catalog_name, s.schema_name, s.default_character_set_name;
  3368. ERROR 42S02: Table 'db_datadict.schemata' doesn't exist
  3369. select * from columns limit 0, 5;
  3370. ERROR 42S02: Table 'db_datadict.columns' doesn't exist
  3371. select * from character_sets limit 0, 5;
  3372. ERROR 42S02: Table 'db_datadict.character_sets' doesn't exist
  3373. select * from collations limit 0, 5;
  3374. ERROR 42S02: Table 'db_datadict.collations' doesn't exist
  3375. select * from collation_character_set_applicability limit 0, 5;
  3376. ERROR 42S02: Table 'db_datadict.collation_character_set_applicability' doesn't exist
  3377. select * from routines limit 0, 5;
  3378. ERROR 42S02: Table 'db_datadict.routines' doesn't exist
  3379. select * from statistics limit 0, 5;
  3380. ERROR 42S02: Table 'db_datadict.statistics' doesn't exist
  3381. select * from views limit 0, 5;
  3382. ERROR 42S02: Table 'db_datadict.views' doesn't exist
  3383. select * from user_privileges limit 0, 5;
  3384. ERROR 42S02: Table 'db_datadict.user_privileges' doesn't exist
  3385. select * from schema_privileges limit 0, 5;
  3386. ERROR 42S02: Table 'db_datadict.schema_privileges' doesn't exist
  3387. select * from table_privileges limit 0, 5;
  3388. ERROR 42S02: Table 'db_datadict.table_privileges' doesn't exist
  3389. select * from column_privileges limit 0, 5;
  3390. ERROR 42S02: Table 'db_datadict.column_privileges' doesn't exist
  3391. select * from table_constraints limit 0, 5;
  3392. ERROR 42S02: Table 'db_datadict.table_constraints' doesn't exist
  3393. select * from key_column_usage limit 0, 5;
  3394. ERROR 42S02: Table 'db_datadict.key_column_usage' doesn't exist
  3395. will fail due to missing database name
  3396. --------------------------------------
  3397. known error 1146:
  3398. -----------------
  3399. SELECT * FROM schemata ;
  3400. ERROR 42S02: Table 'db_datadict.schemata' doesn't exist
  3401. SELECT * FROM tables ;
  3402. ERROR 42S02: Table 'db_datadict.tables' doesn't exist
  3403. SELECT * FROM columns ;
  3404. ERROR 42S02: Table 'db_datadict.columns' doesn't exist
  3405. SELECT * FROM character_sets ;
  3406. ERROR 42S02: Table 'db_datadict.character_sets' doesn't exist
  3407. SELECT * FROM collations ;
  3408. ERROR 42S02: Table 'db_datadict.collations' doesn't exist
  3409. SELECT * FROM collation_character_set_applicability ;
  3410. ERROR 42S02: Table 'db_datadict.collation_character_set_applicability' doesn't exist
  3411. SELECT * FROM routines ;
  3412. ERROR 42S02: Table 'db_datadict.routines' doesn't exist
  3413. SELECT * FROM statistics ;
  3414. ERROR 42S02: Table 'db_datadict.statistics' doesn't exist
  3415. SELECT * FROM views ;
  3416. ERROR 42S02: Table 'db_datadict.views' doesn't exist
  3417. SELECT * FROM user_privileges ;
  3418. ERROR 42S02: Table 'db_datadict.user_privileges' doesn't exist
  3419. SELECT * FROM schema_privileges ;
  3420. ERROR 42S02: Table 'db_datadict.schema_privileges' doesn't exist
  3421. SELECT * FROM table_privileges ;
  3422. ERROR 42S02: Table 'db_datadict.table_privileges' doesn't exist
  3423. SELECT * FROM column_privileges ;
  3424. ERROR 42S02: Table 'db_datadict.column_privileges' doesn't exist
  3425. SELECT * FROM table_constraints ;
  3426. ERROR 42S02: Table 'db_datadict.table_constraints' doesn't exist
  3427. SELECT * FROM key_column_usage ;
  3428. ERROR 42S02: Table 'db_datadict.key_column_usage' doesn't exist
  3429. SELECT * FROM triggers ;
  3430. ERROR 42S02: Table 'db_datadict.triggers' doesn't exist
  3431. select * from information_schema.schemata ORDER BY 2 DESC;
  3432. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  3433. NULL test4 latin1 latin1_swedish_ci NULL
  3434. NULL test1 latin1 latin1_swedish_ci NULL
  3435. NULL test latin1 latin1_swedish_ci NULL
  3436. NULL mysql latin1 latin1_swedish_ci NULL
  3437. NULL information_schema utf8 utf8_general_ci NULL
  3438. NULL db_datadict latin1 latin1_swedish_ci NULL
  3439. SELECT * FROM information_schema.tables
  3440. WHERE table_schema = 'information_schema';
  3441. TABLE_CATALOG NULL
  3442. TABLE_SCHEMA information_schema
  3443. TABLE_NAME CHARACTER_SETS
  3444. TABLE_TYPE SYSTEM VIEW
  3445. ENGINE MEMORY
  3446. VERSION 10
  3447. ROW_FORMAT Fixed
  3448. TABLE_ROWS NULL
  3449. AVG_ROW_LENGTH #ARL#
  3450. DATA_LENGTH #DL#
  3451. MAX_DATA_LENGTH #MDL#
  3452. INDEX_LENGTH #IL#
  3453. DATA_FREE #DF#
  3454. AUTO_INCREMENT NULL
  3455. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3456. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3457. CHECK_TIME NULL
  3458. TABLE_COLLATION utf8_general_ci
  3459. CHECKSUM NULL
  3460. CREATE_OPTIONS #CO#
  3461. TABLE_COMMENT
  3462. TABLE_CATALOG NULL
  3463. TABLE_SCHEMA information_schema
  3464. TABLE_NAME COLLATIONS
  3465. TABLE_TYPE SYSTEM VIEW
  3466. ENGINE MEMORY
  3467. VERSION 10
  3468. ROW_FORMAT Fixed
  3469. TABLE_ROWS NULL
  3470. AVG_ROW_LENGTH #ARL#
  3471. DATA_LENGTH #DL#
  3472. MAX_DATA_LENGTH #MDL#
  3473. INDEX_LENGTH #IL#
  3474. DATA_FREE #DF#
  3475. AUTO_INCREMENT NULL
  3476. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3477. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3478. CHECK_TIME NULL
  3479. TABLE_COLLATION utf8_general_ci
  3480. CHECKSUM NULL
  3481. CREATE_OPTIONS #CO#
  3482. TABLE_COMMENT
  3483. TABLE_CATALOG NULL
  3484. TABLE_SCHEMA information_schema
  3485. TABLE_NAME COLLATION_CHARACTER_SET_APPLICABILITY
  3486. TABLE_TYPE SYSTEM VIEW
  3487. ENGINE MEMORY
  3488. VERSION 10
  3489. ROW_FORMAT Fixed
  3490. TABLE_ROWS NULL
  3491. AVG_ROW_LENGTH #ARL#
  3492. DATA_LENGTH #DL#
  3493. MAX_DATA_LENGTH #MDL#
  3494. INDEX_LENGTH #IL#
  3495. DATA_FREE #DF#
  3496. AUTO_INCREMENT NULL
  3497. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3498. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3499. CHECK_TIME NULL
  3500. TABLE_COLLATION utf8_general_ci
  3501. CHECKSUM NULL
  3502. CREATE_OPTIONS #CO#
  3503. TABLE_COMMENT
  3504. TABLE_CATALOG NULL
  3505. TABLE_SCHEMA information_schema
  3506. TABLE_NAME COLUMNS
  3507. TABLE_TYPE SYSTEM VIEW
  3508. ENGINE MyISAM
  3509. VERSION 10
  3510. ROW_FORMAT Dynamic
  3511. TABLE_ROWS NULL
  3512. AVG_ROW_LENGTH #ARL#
  3513. DATA_LENGTH #DL#
  3514. MAX_DATA_LENGTH #MDL#
  3515. INDEX_LENGTH #IL#
  3516. DATA_FREE #DF#
  3517. AUTO_INCREMENT NULL
  3518. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3519. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3520. CHECK_TIME NULL
  3521. TABLE_COLLATION utf8_general_ci
  3522. CHECKSUM NULL
  3523. CREATE_OPTIONS #CO#
  3524. TABLE_COMMENT
  3525. TABLE_CATALOG NULL
  3526. TABLE_SCHEMA information_schema
  3527. TABLE_NAME COLUMN_PRIVILEGES
  3528. TABLE_TYPE SYSTEM VIEW
  3529. ENGINE MEMORY
  3530. VERSION 10
  3531. ROW_FORMAT Fixed
  3532. TABLE_ROWS NULL
  3533. AVG_ROW_LENGTH #ARL#
  3534. DATA_LENGTH #DL#
  3535. MAX_DATA_LENGTH #MDL#
  3536. INDEX_LENGTH #IL#
  3537. DATA_FREE #DF#
  3538. AUTO_INCREMENT NULL
  3539. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3540. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3541. CHECK_TIME NULL
  3542. TABLE_COLLATION utf8_general_ci
  3543. CHECKSUM NULL
  3544. CREATE_OPTIONS #CO#
  3545. TABLE_COMMENT
  3546. TABLE_CATALOG NULL
  3547. TABLE_SCHEMA information_schema
  3548. TABLE_NAME ENGINES
  3549. TABLE_TYPE SYSTEM VIEW
  3550. ENGINE MEMORY
  3551. VERSION 10
  3552. ROW_FORMAT Fixed
  3553. TABLE_ROWS NULL
  3554. AVG_ROW_LENGTH #ARL#
  3555. DATA_LENGTH #DL#
  3556. MAX_DATA_LENGTH #MDL#
  3557. INDEX_LENGTH #IL#
  3558. DATA_FREE #DF#
  3559. AUTO_INCREMENT NULL
  3560. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3561. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3562. CHECK_TIME NULL
  3563. TABLE_COLLATION utf8_general_ci
  3564. CHECKSUM NULL
  3565. CREATE_OPTIONS #CO#
  3566. TABLE_COMMENT
  3567. TABLE_CATALOG NULL
  3568. TABLE_SCHEMA information_schema
  3569. TABLE_NAME EVENTS
  3570. TABLE_TYPE SYSTEM VIEW
  3571. ENGINE MyISAM
  3572. VERSION 10
  3573. ROW_FORMAT Dynamic
  3574. TABLE_ROWS NULL
  3575. AVG_ROW_LENGTH #ARL#
  3576. DATA_LENGTH #DL#
  3577. MAX_DATA_LENGTH #MDL#
  3578. INDEX_LENGTH #IL#
  3579. DATA_FREE #DF#
  3580. AUTO_INCREMENT NULL
  3581. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3582. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3583. CHECK_TIME NULL
  3584. TABLE_COLLATION utf8_general_ci
  3585. CHECKSUM NULL
  3586. CREATE_OPTIONS #CO#
  3587. TABLE_COMMENT
  3588. TABLE_CATALOG NULL
  3589. TABLE_SCHEMA information_schema
  3590. TABLE_NAME FILES
  3591. TABLE_TYPE SYSTEM VIEW
  3592. ENGINE MEMORY
  3593. VERSION 10
  3594. ROW_FORMAT Fixed
  3595. TABLE_ROWS NULL
  3596. AVG_ROW_LENGTH #ARL#
  3597. DATA_LENGTH #DL#
  3598. MAX_DATA_LENGTH #MDL#
  3599. INDEX_LENGTH #IL#
  3600. DATA_FREE #DF#
  3601. AUTO_INCREMENT NULL
  3602. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3603. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3604. CHECK_TIME NULL
  3605. TABLE_COLLATION utf8_general_ci
  3606. CHECKSUM NULL
  3607. CREATE_OPTIONS #CO#
  3608. TABLE_COMMENT
  3609. TABLE_CATALOG NULL
  3610. TABLE_SCHEMA information_schema
  3611. TABLE_NAME GLOBAL_STATUS
  3612. TABLE_TYPE SYSTEM VIEW
  3613. ENGINE MEMORY
  3614. VERSION 10
  3615. ROW_FORMAT Fixed
  3616. TABLE_ROWS NULL
  3617. AVG_ROW_LENGTH #ARL#
  3618. DATA_LENGTH #DL#
  3619. MAX_DATA_LENGTH #MDL#
  3620. INDEX_LENGTH #IL#
  3621. DATA_FREE #DF#
  3622. AUTO_INCREMENT NULL
  3623. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3624. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3625. CHECK_TIME NULL
  3626. TABLE_COLLATION utf8_general_ci
  3627. CHECKSUM NULL
  3628. CREATE_OPTIONS #CO#
  3629. TABLE_COMMENT
  3630. TABLE_CATALOG NULL
  3631. TABLE_SCHEMA information_schema
  3632. TABLE_NAME GLOBAL_VARIABLES
  3633. TABLE_TYPE SYSTEM VIEW
  3634. ENGINE MyISAM
  3635. VERSION 10
  3636. ROW_FORMAT Dynamic
  3637. TABLE_ROWS NULL
  3638. AVG_ROW_LENGTH #ARL#
  3639. DATA_LENGTH #DL#
  3640. MAX_DATA_LENGTH #MDL#
  3641. INDEX_LENGTH #IL#
  3642. DATA_FREE #DF#
  3643. AUTO_INCREMENT NULL
  3644. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3645. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3646. CHECK_TIME NULL
  3647. TABLE_COLLATION utf8_general_ci
  3648. CHECKSUM NULL
  3649. CREATE_OPTIONS #CO#
  3650. TABLE_COMMENT
  3651. TABLE_CATALOG NULL
  3652. TABLE_SCHEMA information_schema
  3653. TABLE_NAME KEY_COLUMN_USAGE
  3654. TABLE_TYPE SYSTEM VIEW
  3655. ENGINE MEMORY
  3656. VERSION 10
  3657. ROW_FORMAT Fixed
  3658. TABLE_ROWS NULL
  3659. AVG_ROW_LENGTH #ARL#
  3660. DATA_LENGTH #DL#
  3661. MAX_DATA_LENGTH #MDL#
  3662. INDEX_LENGTH #IL#
  3663. DATA_FREE #DF#
  3664. AUTO_INCREMENT NULL
  3665. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3666. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3667. CHECK_TIME NULL
  3668. TABLE_COLLATION utf8_general_ci
  3669. CHECKSUM NULL
  3670. CREATE_OPTIONS #CO#
  3671. TABLE_COMMENT
  3672. TABLE_CATALOG NULL
  3673. TABLE_SCHEMA information_schema
  3674. TABLE_NAME PARTITIONS
  3675. TABLE_TYPE SYSTEM VIEW
  3676. ENGINE MyISAM
  3677. VERSION 10
  3678. ROW_FORMAT Dynamic
  3679. TABLE_ROWS NULL
  3680. AVG_ROW_LENGTH #ARL#
  3681. DATA_LENGTH #DL#
  3682. MAX_DATA_LENGTH #MDL#
  3683. INDEX_LENGTH #IL#
  3684. DATA_FREE #DF#
  3685. AUTO_INCREMENT NULL
  3686. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3687. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3688. CHECK_TIME NULL
  3689. TABLE_COLLATION utf8_general_ci
  3690. CHECKSUM NULL
  3691. CREATE_OPTIONS #CO#
  3692. TABLE_COMMENT
  3693. TABLE_CATALOG NULL
  3694. TABLE_SCHEMA information_schema
  3695. TABLE_NAME PLUGINS
  3696. TABLE_TYPE SYSTEM VIEW
  3697. ENGINE MyISAM
  3698. VERSION 10
  3699. ROW_FORMAT Dynamic
  3700. TABLE_ROWS NULL
  3701. AVG_ROW_LENGTH #ARL#
  3702. DATA_LENGTH #DL#
  3703. MAX_DATA_LENGTH #MDL#
  3704. INDEX_LENGTH #IL#
  3705. DATA_FREE #DF#
  3706. AUTO_INCREMENT NULL
  3707. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3708. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3709. CHECK_TIME NULL
  3710. TABLE_COLLATION utf8_general_ci
  3711. CHECKSUM NULL
  3712. CREATE_OPTIONS #CO#
  3713. TABLE_COMMENT
  3714. TABLE_CATALOG NULL
  3715. TABLE_SCHEMA information_schema
  3716. TABLE_NAME PROCESSLIST
  3717. TABLE_TYPE SYSTEM VIEW
  3718. ENGINE MyISAM
  3719. VERSION 10
  3720. ROW_FORMAT Dynamic
  3721. TABLE_ROWS NULL
  3722. AVG_ROW_LENGTH #ARL#
  3723. DATA_LENGTH #DL#
  3724. MAX_DATA_LENGTH #MDL#
  3725. INDEX_LENGTH #IL#
  3726. DATA_FREE #DF#
  3727. AUTO_INCREMENT NULL
  3728. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3729. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3730. CHECK_TIME NULL
  3731. TABLE_COLLATION utf8_general_ci
  3732. CHECKSUM NULL
  3733. CREATE_OPTIONS #CO#
  3734. TABLE_COMMENT
  3735. TABLE_CATALOG NULL
  3736. TABLE_SCHEMA information_schema
  3737. TABLE_NAME REFERENTIAL_CONSTRAINTS
  3738. TABLE_TYPE SYSTEM VIEW
  3739. ENGINE MEMORY
  3740. VERSION 10
  3741. ROW_FORMAT Fixed
  3742. TABLE_ROWS NULL
  3743. AVG_ROW_LENGTH #ARL#
  3744. DATA_LENGTH #DL#
  3745. MAX_DATA_LENGTH #MDL#
  3746. INDEX_LENGTH #IL#
  3747. DATA_FREE #DF#
  3748. AUTO_INCREMENT NULL
  3749. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3750. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3751. CHECK_TIME NULL
  3752. TABLE_COLLATION utf8_general_ci
  3753. CHECKSUM NULL
  3754. CREATE_OPTIONS #CO#
  3755. TABLE_COMMENT
  3756. TABLE_CATALOG NULL
  3757. TABLE_SCHEMA information_schema
  3758. TABLE_NAME ROUTINES
  3759. TABLE_TYPE SYSTEM VIEW
  3760. ENGINE MyISAM
  3761. VERSION 10
  3762. ROW_FORMAT Dynamic
  3763. TABLE_ROWS NULL
  3764. AVG_ROW_LENGTH #ARL#
  3765. DATA_LENGTH #DL#
  3766. MAX_DATA_LENGTH #MDL#
  3767. INDEX_LENGTH #IL#
  3768. DATA_FREE #DF#
  3769. AUTO_INCREMENT NULL
  3770. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3771. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3772. CHECK_TIME NULL
  3773. TABLE_COLLATION utf8_general_ci
  3774. CHECKSUM NULL
  3775. CREATE_OPTIONS #CO#
  3776. TABLE_COMMENT
  3777. TABLE_CATALOG NULL
  3778. TABLE_SCHEMA information_schema
  3779. TABLE_NAME SCHEMATA
  3780. TABLE_TYPE SYSTEM VIEW
  3781. ENGINE MEMORY
  3782. VERSION 10
  3783. ROW_FORMAT Fixed
  3784. TABLE_ROWS NULL
  3785. AVG_ROW_LENGTH #ARL#
  3786. DATA_LENGTH #DL#
  3787. MAX_DATA_LENGTH #MDL#
  3788. INDEX_LENGTH #IL#
  3789. DATA_FREE #DF#
  3790. AUTO_INCREMENT NULL
  3791. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3792. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3793. CHECK_TIME NULL
  3794. TABLE_COLLATION utf8_general_ci
  3795. CHECKSUM NULL
  3796. CREATE_OPTIONS #CO#
  3797. TABLE_COMMENT
  3798. TABLE_CATALOG NULL
  3799. TABLE_SCHEMA information_schema
  3800. TABLE_NAME SCHEMA_PRIVILEGES
  3801. TABLE_TYPE SYSTEM VIEW
  3802. ENGINE MEMORY
  3803. VERSION 10
  3804. ROW_FORMAT Fixed
  3805. TABLE_ROWS NULL
  3806. AVG_ROW_LENGTH #ARL#
  3807. DATA_LENGTH #DL#
  3808. MAX_DATA_LENGTH #MDL#
  3809. INDEX_LENGTH #IL#
  3810. DATA_FREE #DF#
  3811. AUTO_INCREMENT NULL
  3812. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3813. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3814. CHECK_TIME NULL
  3815. TABLE_COLLATION utf8_general_ci
  3816. CHECKSUM NULL
  3817. CREATE_OPTIONS #CO#
  3818. TABLE_COMMENT
  3819. TABLE_CATALOG NULL
  3820. TABLE_SCHEMA information_schema
  3821. TABLE_NAME SESSION_STATUS
  3822. TABLE_TYPE SYSTEM VIEW
  3823. ENGINE MEMORY
  3824. VERSION 10
  3825. ROW_FORMAT Fixed
  3826. TABLE_ROWS NULL
  3827. AVG_ROW_LENGTH #ARL#
  3828. DATA_LENGTH #DL#
  3829. MAX_DATA_LENGTH #MDL#
  3830. INDEX_LENGTH #IL#
  3831. DATA_FREE #DF#
  3832. AUTO_INCREMENT NULL
  3833. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3834. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3835. CHECK_TIME NULL
  3836. TABLE_COLLATION utf8_general_ci
  3837. CHECKSUM NULL
  3838. CREATE_OPTIONS #CO#
  3839. TABLE_COMMENT
  3840. TABLE_CATALOG NULL
  3841. TABLE_SCHEMA information_schema
  3842. TABLE_NAME SESSION_VARIABLES
  3843. TABLE_TYPE SYSTEM VIEW
  3844. ENGINE MyISAM
  3845. VERSION 10
  3846. ROW_FORMAT Dynamic
  3847. TABLE_ROWS NULL
  3848. AVG_ROW_LENGTH #ARL#
  3849. DATA_LENGTH #DL#
  3850. MAX_DATA_LENGTH #MDL#
  3851. INDEX_LENGTH #IL#
  3852. DATA_FREE #DF#
  3853. AUTO_INCREMENT NULL
  3854. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3855. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3856. CHECK_TIME NULL
  3857. TABLE_COLLATION utf8_general_ci
  3858. CHECKSUM NULL
  3859. CREATE_OPTIONS #CO#
  3860. TABLE_COMMENT
  3861. TABLE_CATALOG NULL
  3862. TABLE_SCHEMA information_schema
  3863. TABLE_NAME STATISTICS
  3864. TABLE_TYPE SYSTEM VIEW
  3865. ENGINE MEMORY
  3866. VERSION 10
  3867. ROW_FORMAT Fixed
  3868. TABLE_ROWS NULL
  3869. AVG_ROW_LENGTH #ARL#
  3870. DATA_LENGTH #DL#
  3871. MAX_DATA_LENGTH #MDL#
  3872. INDEX_LENGTH #IL#
  3873. DATA_FREE #DF#
  3874. AUTO_INCREMENT NULL
  3875. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3876. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3877. CHECK_TIME NULL
  3878. TABLE_COLLATION utf8_general_ci
  3879. CHECKSUM NULL
  3880. CREATE_OPTIONS #CO#
  3881. TABLE_COMMENT
  3882. TABLE_CATALOG NULL
  3883. TABLE_SCHEMA information_schema
  3884. TABLE_NAME TABLES
  3885. TABLE_TYPE SYSTEM VIEW
  3886. ENGINE MEMORY
  3887. VERSION 10
  3888. ROW_FORMAT Fixed
  3889. TABLE_ROWS NULL
  3890. AVG_ROW_LENGTH #ARL#
  3891. DATA_LENGTH #DL#
  3892. MAX_DATA_LENGTH #MDL#
  3893. INDEX_LENGTH #IL#
  3894. DATA_FREE #DF#
  3895. AUTO_INCREMENT NULL
  3896. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3897. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3898. CHECK_TIME NULL
  3899. TABLE_COLLATION utf8_general_ci
  3900. CHECKSUM NULL
  3901. CREATE_OPTIONS #CO#
  3902. TABLE_COMMENT
  3903. TABLE_CATALOG NULL
  3904. TABLE_SCHEMA information_schema
  3905. TABLE_NAME TABLE_CONSTRAINTS
  3906. TABLE_TYPE SYSTEM VIEW
  3907. ENGINE MEMORY
  3908. VERSION 10
  3909. ROW_FORMAT Fixed
  3910. TABLE_ROWS NULL
  3911. AVG_ROW_LENGTH #ARL#
  3912. DATA_LENGTH #DL#
  3913. MAX_DATA_LENGTH #MDL#
  3914. INDEX_LENGTH #IL#
  3915. DATA_FREE #DF#
  3916. AUTO_INCREMENT NULL
  3917. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3918. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3919. CHECK_TIME NULL
  3920. TABLE_COLLATION utf8_general_ci
  3921. CHECKSUM NULL
  3922. CREATE_OPTIONS #CO#
  3923. TABLE_COMMENT
  3924. TABLE_CATALOG NULL
  3925. TABLE_SCHEMA information_schema
  3926. TABLE_NAME TABLE_PRIVILEGES
  3927. TABLE_TYPE SYSTEM VIEW
  3928. ENGINE MEMORY
  3929. VERSION 10
  3930. ROW_FORMAT Fixed
  3931. TABLE_ROWS NULL
  3932. AVG_ROW_LENGTH #ARL#
  3933. DATA_LENGTH #DL#
  3934. MAX_DATA_LENGTH #MDL#
  3935. INDEX_LENGTH #IL#
  3936. DATA_FREE #DF#
  3937. AUTO_INCREMENT NULL
  3938. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3939. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3940. CHECK_TIME NULL
  3941. TABLE_COLLATION utf8_general_ci
  3942. CHECKSUM NULL
  3943. CREATE_OPTIONS #CO#
  3944. TABLE_COMMENT
  3945. TABLE_CATALOG NULL
  3946. TABLE_SCHEMA information_schema
  3947. TABLE_NAME TRIGGERS
  3948. TABLE_TYPE SYSTEM VIEW
  3949. ENGINE MyISAM
  3950. VERSION 10
  3951. ROW_FORMAT Dynamic
  3952. TABLE_ROWS NULL
  3953. AVG_ROW_LENGTH #ARL#
  3954. DATA_LENGTH #DL#
  3955. MAX_DATA_LENGTH #MDL#
  3956. INDEX_LENGTH #IL#
  3957. DATA_FREE #DF#
  3958. AUTO_INCREMENT NULL
  3959. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3960. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3961. CHECK_TIME NULL
  3962. TABLE_COLLATION utf8_general_ci
  3963. CHECKSUM NULL
  3964. CREATE_OPTIONS #CO#
  3965. TABLE_COMMENT
  3966. TABLE_CATALOG NULL
  3967. TABLE_SCHEMA information_schema
  3968. TABLE_NAME USER_PRIVILEGES
  3969. TABLE_TYPE SYSTEM VIEW
  3970. ENGINE MEMORY
  3971. VERSION 10
  3972. ROW_FORMAT Fixed
  3973. TABLE_ROWS NULL
  3974. AVG_ROW_LENGTH #ARL#
  3975. DATA_LENGTH #DL#
  3976. MAX_DATA_LENGTH #MDL#
  3977. INDEX_LENGTH #IL#
  3978. DATA_FREE #DF#
  3979. AUTO_INCREMENT NULL
  3980. CREATE_TIME YYYY-MM-DD hh:mm:ss
  3981. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  3982. CHECK_TIME NULL
  3983. TABLE_COLLATION utf8_general_ci
  3984. CHECKSUM NULL
  3985. CREATE_OPTIONS #CO#
  3986. TABLE_COMMENT
  3987. TABLE_CATALOG NULL
  3988. TABLE_SCHEMA information_schema
  3989. TABLE_NAME VIEWS
  3990. TABLE_TYPE SYSTEM VIEW
  3991. ENGINE MyISAM
  3992. VERSION 10
  3993. ROW_FORMAT Dynamic
  3994. TABLE_ROWS NULL
  3995. AVG_ROW_LENGTH #ARL#
  3996. DATA_LENGTH #DL#
  3997. MAX_DATA_LENGTH #MDL#
  3998. INDEX_LENGTH #IL#
  3999. DATA_FREE #DF#
  4000. AUTO_INCREMENT NULL
  4001. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4002. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4003. CHECK_TIME NULL
  4004. TABLE_COLLATION utf8_general_ci
  4005. CHECKSUM NULL
  4006. CREATE_OPTIONS #CO#
  4007. TABLE_COMMENT
  4008. SELECT * FROM information_schema.tables
  4009. WHERE NOT( table_schema = 'information_schema');
  4010. TABLE_CATALOG NULL
  4011. TABLE_SCHEMA db_datadict
  4012. TABLE_NAME v1
  4013. TABLE_TYPE VIEW
  4014. ENGINE NULL
  4015. VERSION NULL
  4016. ROW_FORMAT NULL
  4017. TABLE_ROWS NULL
  4018. AVG_ROW_LENGTH #ARL#
  4019. DATA_LENGTH #DL#
  4020. MAX_DATA_LENGTH #MDL#
  4021. INDEX_LENGTH #IL#
  4022. DATA_FREE #DF#
  4023. AUTO_INCREMENT NULL
  4024. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4025. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4026. CHECK_TIME NULL
  4027. TABLE_COLLATION NULL
  4028. CHECKSUM NULL
  4029. CREATE_OPTIONS NULL
  4030. TABLE_COMMENT VIEW
  4031. TABLE_CATALOG NULL
  4032. TABLE_SCHEMA db_datadict
  4033. TABLE_NAME vu
  4034. TABLE_TYPE VIEW
  4035. ENGINE NULL
  4036. VERSION NULL
  4037. ROW_FORMAT NULL
  4038. TABLE_ROWS NULL
  4039. AVG_ROW_LENGTH #ARL#
  4040. DATA_LENGTH #DL#
  4041. MAX_DATA_LENGTH #MDL#
  4042. INDEX_LENGTH #IL#
  4043. DATA_FREE #DF#
  4044. AUTO_INCREMENT NULL
  4045. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4046. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4047. CHECK_TIME NULL
  4048. TABLE_COLLATION NULL
  4049. CHECKSUM NULL
  4050. CREATE_OPTIONS NULL
  4051. TABLE_COMMENT VIEW
  4052. TABLE_CATALOG NULL
  4053. TABLE_SCHEMA db_datadict
  4054. TABLE_NAME vu1
  4055. TABLE_TYPE VIEW
  4056. ENGINE NULL
  4057. VERSION NULL
  4058. ROW_FORMAT NULL
  4059. TABLE_ROWS NULL
  4060. AVG_ROW_LENGTH #ARL#
  4061. DATA_LENGTH #DL#
  4062. MAX_DATA_LENGTH #MDL#
  4063. INDEX_LENGTH #IL#
  4064. DATA_FREE #DF#
  4065. AUTO_INCREMENT NULL
  4066. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4067. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4068. CHECK_TIME NULL
  4069. TABLE_COLLATION NULL
  4070. CHECKSUM NULL
  4071. CREATE_OPTIONS NULL
  4072. TABLE_COMMENT VIEW
  4073. TABLE_CATALOG NULL
  4074. TABLE_SCHEMA mysql
  4075. TABLE_NAME user
  4076. TABLE_TYPE BASE TABLE
  4077. ENGINE MyISAM
  4078. VERSION 10
  4079. ROW_FORMAT Dynamic
  4080. TABLE_ROWS 5
  4081. AVG_ROW_LENGTH #ARL#
  4082. DATA_LENGTH #DL#
  4083. MAX_DATA_LENGTH #MDL#
  4084. INDEX_LENGTH #IL#
  4085. DATA_FREE #DF#
  4086. AUTO_INCREMENT NULL
  4087. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4088. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4089. CHECK_TIME NULL
  4090. TABLE_COLLATION utf8_bin
  4091. CHECKSUM NULL
  4092. CREATE_OPTIONS
  4093. TABLE_COMMENT Users and global privileges
  4094. TABLE_CATALOG NULL
  4095. TABLE_SCHEMA mysql
  4096. TABLE_NAME columns_priv
  4097. TABLE_TYPE BASE TABLE
  4098. ENGINE MyISAM
  4099. VERSION 10
  4100. ROW_FORMAT Fixed
  4101. TABLE_ROWS 0
  4102. AVG_ROW_LENGTH #ARL#
  4103. DATA_LENGTH #DL#
  4104. MAX_DATA_LENGTH #MDL#
  4105. INDEX_LENGTH #IL#
  4106. DATA_FREE #DF#
  4107. AUTO_INCREMENT NULL
  4108. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4109. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4110. CHECK_TIME NULL
  4111. TABLE_COLLATION utf8_bin
  4112. CHECKSUM NULL
  4113. CREATE_OPTIONS
  4114. TABLE_COMMENT Column privileges
  4115. TABLE_CATALOG NULL
  4116. TABLE_SCHEMA mysql
  4117. TABLE_NAME db
  4118. TABLE_TYPE BASE TABLE
  4119. ENGINE MyISAM
  4120. VERSION 10
  4121. ROW_FORMAT Fixed
  4122. TABLE_ROWS 2
  4123. AVG_ROW_LENGTH #ARL#
  4124. DATA_LENGTH #DL#
  4125. MAX_DATA_LENGTH #MDL#
  4126. INDEX_LENGTH #IL#
  4127. DATA_FREE #DF#
  4128. AUTO_INCREMENT NULL
  4129. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4130. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4131. CHECK_TIME NULL
  4132. TABLE_COLLATION utf8_bin
  4133. CHECKSUM NULL
  4134. CREATE_OPTIONS
  4135. TABLE_COMMENT Database privileges
  4136. TABLE_CATALOG NULL
  4137. TABLE_SCHEMA mysql
  4138. TABLE_NAME event
  4139. TABLE_TYPE BASE TABLE
  4140. ENGINE MyISAM
  4141. VERSION 10
  4142. ROW_FORMAT Dynamic
  4143. TABLE_ROWS 0
  4144. AVG_ROW_LENGTH #ARL#
  4145. DATA_LENGTH #DL#
  4146. MAX_DATA_LENGTH #MDL#
  4147. INDEX_LENGTH #IL#
  4148. DATA_FREE #DF#
  4149. AUTO_INCREMENT NULL
  4150. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4151. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4152. CHECK_TIME NULL
  4153. TABLE_COLLATION utf8_general_ci
  4154. CHECKSUM NULL
  4155. CREATE_OPTIONS
  4156. TABLE_COMMENT Events
  4157. TABLE_CATALOG NULL
  4158. TABLE_SCHEMA mysql
  4159. TABLE_NAME func
  4160. TABLE_TYPE BASE TABLE
  4161. ENGINE MyISAM
  4162. VERSION 10
  4163. ROW_FORMAT Fixed
  4164. TABLE_ROWS 0
  4165. AVG_ROW_LENGTH #ARL#
  4166. DATA_LENGTH #DL#
  4167. MAX_DATA_LENGTH #MDL#
  4168. INDEX_LENGTH #IL#
  4169. DATA_FREE #DF#
  4170. AUTO_INCREMENT NULL
  4171. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4172. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4173. CHECK_TIME NULL
  4174. TABLE_COLLATION utf8_bin
  4175. CHECKSUM NULL
  4176. CREATE_OPTIONS
  4177. TABLE_COMMENT User defined functions
  4178. TABLE_CATALOG NULL
  4179. TABLE_SCHEMA mysql
  4180. TABLE_NAME general_log
  4181. TABLE_TYPE BASE TABLE
  4182. ENGINE CSV
  4183. VERSION 10
  4184. ROW_FORMAT Dynamic
  4185. TABLE_ROWS 2
  4186. AVG_ROW_LENGTH #ARL#
  4187. DATA_LENGTH #DL#
  4188. MAX_DATA_LENGTH #MDL#
  4189. INDEX_LENGTH #IL#
  4190. DATA_FREE #DF#
  4191. AUTO_INCREMENT NULL
  4192. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4193. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4194. CHECK_TIME NULL
  4195. TABLE_COLLATION utf8_general_ci
  4196. CHECKSUM NULL
  4197. CREATE_OPTIONS
  4198. TABLE_COMMENT General log
  4199. TABLE_CATALOG NULL
  4200. TABLE_SCHEMA mysql
  4201. TABLE_NAME help_category
  4202. TABLE_TYPE BASE TABLE
  4203. ENGINE MyISAM
  4204. VERSION 10
  4205. ROW_FORMAT Fixed
  4206. TABLE_ROWS 0
  4207. AVG_ROW_LENGTH #ARL#
  4208. DATA_LENGTH #DL#
  4209. MAX_DATA_LENGTH #MDL#
  4210. INDEX_LENGTH #IL#
  4211. DATA_FREE #DF#
  4212. AUTO_INCREMENT NULL
  4213. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4214. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4215. CHECK_TIME NULL
  4216. TABLE_COLLATION utf8_general_ci
  4217. CHECKSUM NULL
  4218. CREATE_OPTIONS
  4219. TABLE_COMMENT help categories
  4220. TABLE_CATALOG NULL
  4221. TABLE_SCHEMA mysql
  4222. TABLE_NAME help_keyword
  4223. TABLE_TYPE BASE TABLE
  4224. ENGINE MyISAM
  4225. VERSION 10
  4226. ROW_FORMAT Fixed
  4227. TABLE_ROWS 0
  4228. AVG_ROW_LENGTH #ARL#
  4229. DATA_LENGTH #DL#
  4230. MAX_DATA_LENGTH #MDL#
  4231. INDEX_LENGTH #IL#
  4232. DATA_FREE #DF#
  4233. AUTO_INCREMENT NULL
  4234. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4235. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4236. CHECK_TIME NULL
  4237. TABLE_COLLATION utf8_general_ci
  4238. CHECKSUM NULL
  4239. CREATE_OPTIONS
  4240. TABLE_COMMENT help keywords
  4241. TABLE_CATALOG NULL
  4242. TABLE_SCHEMA mysql
  4243. TABLE_NAME help_relation
  4244. TABLE_TYPE BASE TABLE
  4245. ENGINE MyISAM
  4246. VERSION 10
  4247. ROW_FORMAT Fixed
  4248. TABLE_ROWS 0
  4249. AVG_ROW_LENGTH #ARL#
  4250. DATA_LENGTH #DL#
  4251. MAX_DATA_LENGTH #MDL#
  4252. INDEX_LENGTH #IL#
  4253. DATA_FREE #DF#
  4254. AUTO_INCREMENT NULL
  4255. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4256. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4257. CHECK_TIME NULL
  4258. TABLE_COLLATION utf8_general_ci
  4259. CHECKSUM NULL
  4260. CREATE_OPTIONS
  4261. TABLE_COMMENT keyword-topic relation
  4262. TABLE_CATALOG NULL
  4263. TABLE_SCHEMA mysql
  4264. TABLE_NAME help_topic
  4265. TABLE_TYPE BASE TABLE
  4266. ENGINE MyISAM
  4267. VERSION 10
  4268. ROW_FORMAT Dynamic
  4269. TABLE_ROWS 0
  4270. AVG_ROW_LENGTH #ARL#
  4271. DATA_LENGTH #DL#
  4272. MAX_DATA_LENGTH #MDL#
  4273. INDEX_LENGTH #IL#
  4274. DATA_FREE #DF#
  4275. AUTO_INCREMENT NULL
  4276. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4277. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4278. CHECK_TIME NULL
  4279. TABLE_COLLATION utf8_general_ci
  4280. CHECKSUM NULL
  4281. CREATE_OPTIONS
  4282. TABLE_COMMENT help topics
  4283. TABLE_CATALOG NULL
  4284. TABLE_SCHEMA mysql
  4285. TABLE_NAME host
  4286. TABLE_TYPE BASE TABLE
  4287. ENGINE MyISAM
  4288. VERSION 10
  4289. ROW_FORMAT Fixed
  4290. TABLE_ROWS 0
  4291. AVG_ROW_LENGTH #ARL#
  4292. DATA_LENGTH #DL#
  4293. MAX_DATA_LENGTH #MDL#
  4294. INDEX_LENGTH #IL#
  4295. DATA_FREE #DF#
  4296. AUTO_INCREMENT NULL
  4297. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4298. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4299. CHECK_TIME NULL
  4300. TABLE_COLLATION utf8_bin
  4301. CHECKSUM NULL
  4302. CREATE_OPTIONS
  4303. TABLE_COMMENT Host privileges; Merged with database privileges
  4304. TABLE_CATALOG NULL
  4305. TABLE_SCHEMA mysql
  4306. TABLE_NAME ndb_apply_status
  4307. TABLE_TYPE BASE TABLE
  4308. ENGINE NDBCLUSTER
  4309. VERSION 10
  4310. ROW_FORMAT Fixed
  4311. TABLE_ROWS 0
  4312. AVG_ROW_LENGTH #ARL#
  4313. DATA_LENGTH #DL#
  4314. MAX_DATA_LENGTH #MDL#
  4315. INDEX_LENGTH #IL#
  4316. DATA_FREE #DF#
  4317. AUTO_INCREMENT NULL
  4318. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4319. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4320. CHECK_TIME NULL
  4321. TABLE_COLLATION latin1_swedish_ci
  4322. CHECKSUM NULL
  4323. CREATE_OPTIONS
  4324. TABLE_COMMENT number_of_replicas: 2
  4325. TABLE_CATALOG NULL
  4326. TABLE_SCHEMA mysql
  4327. TABLE_NAME ndb_binlog_index
  4328. TABLE_TYPE BASE TABLE
  4329. ENGINE MyISAM
  4330. VERSION 10
  4331. ROW_FORMAT Dynamic
  4332. TABLE_ROWS 5
  4333. AVG_ROW_LENGTH #ARL#
  4334. DATA_LENGTH #DL#
  4335. MAX_DATA_LENGTH #MDL#
  4336. INDEX_LENGTH #IL#
  4337. DATA_FREE #DF#
  4338. AUTO_INCREMENT NULL
  4339. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4340. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4341. CHECK_TIME NULL
  4342. TABLE_COLLATION latin1_swedish_ci
  4343. CHECKSUM NULL
  4344. CREATE_OPTIONS
  4345. TABLE_COMMENT
  4346. TABLE_CATALOG NULL
  4347. TABLE_SCHEMA mysql
  4348. TABLE_NAME plugin
  4349. TABLE_TYPE BASE TABLE
  4350. ENGINE MyISAM
  4351. VERSION 10
  4352. ROW_FORMAT Fixed
  4353. TABLE_ROWS 0
  4354. AVG_ROW_LENGTH #ARL#
  4355. DATA_LENGTH #DL#
  4356. MAX_DATA_LENGTH #MDL#
  4357. INDEX_LENGTH #IL#
  4358. DATA_FREE #DF#
  4359. AUTO_INCREMENT NULL
  4360. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4361. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4362. CHECK_TIME NULL
  4363. TABLE_COLLATION utf8_bin
  4364. CHECKSUM NULL
  4365. CREATE_OPTIONS
  4366. TABLE_COMMENT MySQL plugins
  4367. TABLE_CATALOG NULL
  4368. TABLE_SCHEMA mysql
  4369. TABLE_NAME proc
  4370. TABLE_TYPE BASE TABLE
  4371. ENGINE MyISAM
  4372. VERSION 10
  4373. ROW_FORMAT Dynamic
  4374. TABLE_ROWS 1
  4375. AVG_ROW_LENGTH #ARL#
  4376. DATA_LENGTH #DL#
  4377. MAX_DATA_LENGTH #MDL#
  4378. INDEX_LENGTH #IL#
  4379. DATA_FREE #DF#
  4380. AUTO_INCREMENT NULL
  4381. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4382. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4383. CHECK_TIME NULL
  4384. TABLE_COLLATION utf8_general_ci
  4385. CHECKSUM NULL
  4386. CREATE_OPTIONS
  4387. TABLE_COMMENT Stored Procedures
  4388. TABLE_CATALOG NULL
  4389. TABLE_SCHEMA mysql
  4390. TABLE_NAME procs_priv
  4391. TABLE_TYPE BASE TABLE
  4392. ENGINE MyISAM
  4393. VERSION 10
  4394. ROW_FORMAT Fixed
  4395. TABLE_ROWS 0
  4396. AVG_ROW_LENGTH #ARL#
  4397. DATA_LENGTH #DL#
  4398. MAX_DATA_LENGTH #MDL#
  4399. INDEX_LENGTH #IL#
  4400. DATA_FREE #DF#
  4401. AUTO_INCREMENT NULL
  4402. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4403. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4404. CHECK_TIME NULL
  4405. TABLE_COLLATION utf8_bin
  4406. CHECKSUM NULL
  4407. CREATE_OPTIONS
  4408. TABLE_COMMENT Procedure privileges
  4409. TABLE_CATALOG NULL
  4410. TABLE_SCHEMA mysql
  4411. TABLE_NAME servers
  4412. TABLE_TYPE BASE TABLE
  4413. ENGINE MyISAM
  4414. VERSION 10
  4415. ROW_FORMAT Fixed
  4416. TABLE_ROWS 1
  4417. AVG_ROW_LENGTH #ARL#
  4418. DATA_LENGTH #DL#
  4419. MAX_DATA_LENGTH #MDL#
  4420. INDEX_LENGTH #IL#
  4421. DATA_FREE #DF#
  4422. AUTO_INCREMENT NULL
  4423. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4424. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4425. CHECK_TIME NULL
  4426. TABLE_COLLATION utf8_general_ci
  4427. CHECKSUM NULL
  4428. CREATE_OPTIONS
  4429. TABLE_COMMENT MySQL Foreign Servers table
  4430. TABLE_CATALOG NULL
  4431. TABLE_SCHEMA mysql
  4432. TABLE_NAME slow_log
  4433. TABLE_TYPE BASE TABLE
  4434. ENGINE CSV
  4435. VERSION 10
  4436. ROW_FORMAT Dynamic
  4437. TABLE_ROWS 2
  4438. AVG_ROW_LENGTH #ARL#
  4439. DATA_LENGTH #DL#
  4440. MAX_DATA_LENGTH #MDL#
  4441. INDEX_LENGTH #IL#
  4442. DATA_FREE #DF#
  4443. AUTO_INCREMENT NULL
  4444. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4445. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4446. CHECK_TIME NULL
  4447. TABLE_COLLATION utf8_general_ci
  4448. CHECKSUM NULL
  4449. CREATE_OPTIONS
  4450. TABLE_COMMENT Slow log
  4451. TABLE_CATALOG NULL
  4452. TABLE_SCHEMA mysql
  4453. TABLE_NAME tables_priv
  4454. TABLE_TYPE BASE TABLE
  4455. ENGINE MyISAM
  4456. VERSION 10
  4457. ROW_FORMAT Fixed
  4458. TABLE_ROWS 0
  4459. AVG_ROW_LENGTH #ARL#
  4460. DATA_LENGTH #DL#
  4461. MAX_DATA_LENGTH #MDL#
  4462. INDEX_LENGTH #IL#
  4463. DATA_FREE #DF#
  4464. AUTO_INCREMENT NULL
  4465. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4466. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4467. CHECK_TIME NULL
  4468. TABLE_COLLATION utf8_bin
  4469. CHECKSUM NULL
  4470. CREATE_OPTIONS
  4471. TABLE_COMMENT Table privileges
  4472. TABLE_CATALOG NULL
  4473. TABLE_SCHEMA mysql
  4474. TABLE_NAME time_zone
  4475. TABLE_TYPE BASE TABLE
  4476. ENGINE MyISAM
  4477. VERSION 10
  4478. ROW_FORMAT Fixed
  4479. TABLE_ROWS 5
  4480. AVG_ROW_LENGTH #ARL#
  4481. DATA_LENGTH #DL#
  4482. MAX_DATA_LENGTH #MDL#
  4483. INDEX_LENGTH #IL#
  4484. DATA_FREE #DF#
  4485. AUTO_INCREMENT 6
  4486. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4487. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4488. CHECK_TIME NULL
  4489. TABLE_COLLATION utf8_general_ci
  4490. CHECKSUM NULL
  4491. CREATE_OPTIONS
  4492. TABLE_COMMENT Time zones
  4493. TABLE_CATALOG NULL
  4494. TABLE_SCHEMA mysql
  4495. TABLE_NAME time_zone_leap_second
  4496. TABLE_TYPE BASE TABLE
  4497. ENGINE MyISAM
  4498. VERSION 10
  4499. ROW_FORMAT Fixed
  4500. TABLE_ROWS 22
  4501. AVG_ROW_LENGTH #ARL#
  4502. DATA_LENGTH #DL#
  4503. MAX_DATA_LENGTH #MDL#
  4504. INDEX_LENGTH #IL#
  4505. DATA_FREE #DF#
  4506. AUTO_INCREMENT NULL
  4507. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4508. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4509. CHECK_TIME NULL
  4510. TABLE_COLLATION utf8_general_ci
  4511. CHECKSUM NULL
  4512. CREATE_OPTIONS
  4513. TABLE_COMMENT Leap seconds information for time zones
  4514. TABLE_CATALOG NULL
  4515. TABLE_SCHEMA mysql
  4516. TABLE_NAME time_zone_name
  4517. TABLE_TYPE BASE TABLE
  4518. ENGINE MyISAM
  4519. VERSION 10
  4520. ROW_FORMAT Fixed
  4521. TABLE_ROWS 6
  4522. AVG_ROW_LENGTH #ARL#
  4523. DATA_LENGTH #DL#
  4524. MAX_DATA_LENGTH #MDL#
  4525. INDEX_LENGTH #IL#
  4526. DATA_FREE #DF#
  4527. AUTO_INCREMENT NULL
  4528. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4529. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4530. CHECK_TIME NULL
  4531. TABLE_COLLATION utf8_general_ci
  4532. CHECKSUM NULL
  4533. CREATE_OPTIONS
  4534. TABLE_COMMENT Time zone names
  4535. TABLE_CATALOG NULL
  4536. TABLE_SCHEMA mysql
  4537. TABLE_NAME time_zone_transition
  4538. TABLE_TYPE BASE TABLE
  4539. ENGINE MyISAM
  4540. VERSION 10
  4541. ROW_FORMAT Fixed
  4542. TABLE_ROWS 393
  4543. AVG_ROW_LENGTH #ARL#
  4544. DATA_LENGTH #DL#
  4545. MAX_DATA_LENGTH #MDL#
  4546. INDEX_LENGTH #IL#
  4547. DATA_FREE #DF#
  4548. AUTO_INCREMENT NULL
  4549. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4550. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4551. CHECK_TIME NULL
  4552. TABLE_COLLATION utf8_general_ci
  4553. CHECKSUM NULL
  4554. CREATE_OPTIONS
  4555. TABLE_COMMENT Time zone transitions
  4556. TABLE_CATALOG NULL
  4557. TABLE_SCHEMA mysql
  4558. TABLE_NAME time_zone_transition_type
  4559. TABLE_TYPE BASE TABLE
  4560. ENGINE MyISAM
  4561. VERSION 10
  4562. ROW_FORMAT Fixed
  4563. TABLE_ROWS 31
  4564. AVG_ROW_LENGTH #ARL#
  4565. DATA_LENGTH #DL#
  4566. MAX_DATA_LENGTH #MDL#
  4567. INDEX_LENGTH #IL#
  4568. DATA_FREE #DF#
  4569. AUTO_INCREMENT NULL
  4570. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4571. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4572. CHECK_TIME NULL
  4573. TABLE_COLLATION utf8_general_ci
  4574. CHECKSUM NULL
  4575. CREATE_OPTIONS
  4576. TABLE_COMMENT Time zone transition types
  4577. TABLE_CATALOG NULL
  4578. TABLE_SCHEMA test
  4579. TABLE_NAME t1
  4580. TABLE_TYPE BASE TABLE
  4581. ENGINE NDBCLUSTER
  4582. VERSION 10
  4583. ROW_FORMAT Fixed
  4584. TABLE_ROWS 10
  4585. AVG_ROW_LENGTH #ARL#
  4586. DATA_LENGTH #DL#
  4587. MAX_DATA_LENGTH #MDL#
  4588. INDEX_LENGTH #IL#
  4589. DATA_FREE #DF#
  4590. AUTO_INCREMENT NULL
  4591. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4592. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4593. CHECK_TIME NULL
  4594. TABLE_COLLATION latin1_swedish_ci
  4595. CHECKSUM NULL
  4596. CREATE_OPTIONS
  4597. TABLE_COMMENT number_of_replicas: 2
  4598. TABLE_CATALOG NULL
  4599. TABLE_SCHEMA test
  4600. TABLE_NAME t10
  4601. TABLE_TYPE BASE TABLE
  4602. ENGINE NDBCLUSTER
  4603. VERSION 10
  4604. ROW_FORMAT Fixed
  4605. TABLE_ROWS 10
  4606. AVG_ROW_LENGTH #ARL#
  4607. DATA_LENGTH #DL#
  4608. MAX_DATA_LENGTH #MDL#
  4609. INDEX_LENGTH #IL#
  4610. DATA_FREE #DF#
  4611. AUTO_INCREMENT NULL
  4612. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4613. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4614. CHECK_TIME NULL
  4615. TABLE_COLLATION latin1_swedish_ci
  4616. CHECKSUM NULL
  4617. CREATE_OPTIONS
  4618. TABLE_COMMENT number_of_replicas: 2
  4619. TABLE_CATALOG NULL
  4620. TABLE_SCHEMA test
  4621. TABLE_NAME t11
  4622. TABLE_TYPE BASE TABLE
  4623. ENGINE NDBCLUSTER
  4624. VERSION 10
  4625. ROW_FORMAT Fixed
  4626. TABLE_ROWS 10
  4627. AVG_ROW_LENGTH #ARL#
  4628. DATA_LENGTH #DL#
  4629. MAX_DATA_LENGTH #MDL#
  4630. INDEX_LENGTH #IL#
  4631. DATA_FREE #DF#
  4632. AUTO_INCREMENT NULL
  4633. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4634. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4635. CHECK_TIME NULL
  4636. TABLE_COLLATION latin1_swedish_ci
  4637. CHECKSUM NULL
  4638. CREATE_OPTIONS
  4639. TABLE_COMMENT number_of_replicas: 2
  4640. TABLE_CATALOG NULL
  4641. TABLE_SCHEMA test
  4642. TABLE_NAME t2
  4643. TABLE_TYPE BASE TABLE
  4644. ENGINE NDBCLUSTER
  4645. VERSION 10
  4646. ROW_FORMAT Fixed
  4647. TABLE_ROWS 10
  4648. AVG_ROW_LENGTH #ARL#
  4649. DATA_LENGTH #DL#
  4650. MAX_DATA_LENGTH #MDL#
  4651. INDEX_LENGTH #IL#
  4652. DATA_FREE #DF#
  4653. AUTO_INCREMENT NULL
  4654. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4655. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4656. CHECK_TIME NULL
  4657. TABLE_COLLATION latin1_swedish_ci
  4658. CHECKSUM NULL
  4659. CREATE_OPTIONS
  4660. TABLE_COMMENT number_of_replicas: 2
  4661. TABLE_CATALOG NULL
  4662. TABLE_SCHEMA test
  4663. TABLE_NAME t3
  4664. TABLE_TYPE BASE TABLE
  4665. ENGINE NDBCLUSTER
  4666. VERSION 10
  4667. ROW_FORMAT Fixed
  4668. TABLE_ROWS 10
  4669. AVG_ROW_LENGTH #ARL#
  4670. DATA_LENGTH #DL#
  4671. MAX_DATA_LENGTH #MDL#
  4672. INDEX_LENGTH #IL#
  4673. DATA_FREE #DF#
  4674. AUTO_INCREMENT NULL
  4675. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4676. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4677. CHECK_TIME NULL
  4678. TABLE_COLLATION latin1_swedish_ci
  4679. CHECKSUM NULL
  4680. CREATE_OPTIONS
  4681. TABLE_COMMENT number_of_replicas: 2
  4682. TABLE_CATALOG NULL
  4683. TABLE_SCHEMA test
  4684. TABLE_NAME t4
  4685. TABLE_TYPE BASE TABLE
  4686. ENGINE NDBCLUSTER
  4687. VERSION 10
  4688. ROW_FORMAT Fixed
  4689. TABLE_ROWS 10
  4690. AVG_ROW_LENGTH #ARL#
  4691. DATA_LENGTH #DL#
  4692. MAX_DATA_LENGTH #MDL#
  4693. INDEX_LENGTH #IL#
  4694. DATA_FREE #DF#
  4695. AUTO_INCREMENT NULL
  4696. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4697. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4698. CHECK_TIME NULL
  4699. TABLE_COLLATION latin1_swedish_ci
  4700. CHECKSUM NULL
  4701. CREATE_OPTIONS
  4702. TABLE_COMMENT number_of_replicas: 2
  4703. TABLE_CATALOG NULL
  4704. TABLE_SCHEMA test
  4705. TABLE_NAME t7
  4706. TABLE_TYPE BASE TABLE
  4707. ENGINE NDBCLUSTER
  4708. VERSION 10
  4709. ROW_FORMAT Fixed
  4710. TABLE_ROWS 10
  4711. AVG_ROW_LENGTH #ARL#
  4712. DATA_LENGTH #DL#
  4713. MAX_DATA_LENGTH #MDL#
  4714. INDEX_LENGTH #IL#
  4715. DATA_FREE #DF#
  4716. AUTO_INCREMENT NULL
  4717. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4718. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4719. CHECK_TIME NULL
  4720. TABLE_COLLATION latin1_swedish_ci
  4721. CHECKSUM NULL
  4722. CREATE_OPTIONS
  4723. TABLE_COMMENT number_of_replicas: 2
  4724. TABLE_CATALOG NULL
  4725. TABLE_SCHEMA test
  4726. TABLE_NAME t8
  4727. TABLE_TYPE BASE TABLE
  4728. ENGINE NDBCLUSTER
  4729. VERSION 10
  4730. ROW_FORMAT Fixed
  4731. TABLE_ROWS 10
  4732. AVG_ROW_LENGTH #ARL#
  4733. DATA_LENGTH #DL#
  4734. MAX_DATA_LENGTH #MDL#
  4735. INDEX_LENGTH #IL#
  4736. DATA_FREE #DF#
  4737. AUTO_INCREMENT NULL
  4738. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4739. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4740. CHECK_TIME NULL
  4741. TABLE_COLLATION latin1_swedish_ci
  4742. CHECKSUM NULL
  4743. CREATE_OPTIONS
  4744. TABLE_COMMENT number_of_replicas: 2
  4745. TABLE_CATALOG NULL
  4746. TABLE_SCHEMA test
  4747. TABLE_NAME t9
  4748. TABLE_TYPE BASE TABLE
  4749. ENGINE NDBCLUSTER
  4750. VERSION 10
  4751. ROW_FORMAT Fixed
  4752. TABLE_ROWS 10
  4753. AVG_ROW_LENGTH #ARL#
  4754. DATA_LENGTH #DL#
  4755. MAX_DATA_LENGTH #MDL#
  4756. INDEX_LENGTH #IL#
  4757. DATA_FREE #DF#
  4758. AUTO_INCREMENT NULL
  4759. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4760. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4761. CHECK_TIME NULL
  4762. TABLE_COLLATION latin1_swedish_ci
  4763. CHECKSUM NULL
  4764. CREATE_OPTIONS
  4765. TABLE_COMMENT number_of_replicas: 2
  4766. TABLE_CATALOG NULL
  4767. TABLE_SCHEMA test
  4768. TABLE_NAME tb1
  4769. TABLE_TYPE BASE TABLE
  4770. ENGINE MyISAM
  4771. VERSION 10
  4772. ROW_FORMAT Dynamic
  4773. TABLE_ROWS 10
  4774. AVG_ROW_LENGTH #ARL#
  4775. DATA_LENGTH #DL#
  4776. MAX_DATA_LENGTH #MDL#
  4777. INDEX_LENGTH #IL#
  4778. DATA_FREE #DF#
  4779. AUTO_INCREMENT NULL
  4780. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4781. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4782. CHECK_TIME NULL
  4783. TABLE_COLLATION latin1_swedish_ci
  4784. CHECKSUM NULL
  4785. CREATE_OPTIONS
  4786. TABLE_COMMENT
  4787. TABLE_CATALOG NULL
  4788. TABLE_SCHEMA test
  4789. TABLE_NAME tb2
  4790. TABLE_TYPE BASE TABLE
  4791. ENGINE MyISAM
  4792. VERSION 10
  4793. ROW_FORMAT Dynamic
  4794. TABLE_ROWS 54
  4795. AVG_ROW_LENGTH #ARL#
  4796. DATA_LENGTH #DL#
  4797. MAX_DATA_LENGTH #MDL#
  4798. INDEX_LENGTH #IL#
  4799. DATA_FREE #DF#
  4800. AUTO_INCREMENT NULL
  4801. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4802. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4803. CHECK_TIME NULL
  4804. TABLE_COLLATION latin1_swedish_ci
  4805. CHECKSUM NULL
  4806. CREATE_OPTIONS
  4807. TABLE_COMMENT
  4808. TABLE_CATALOG NULL
  4809. TABLE_SCHEMA test
  4810. TABLE_NAME tb3
  4811. TABLE_TYPE BASE TABLE
  4812. ENGINE MyISAM
  4813. VERSION 10
  4814. ROW_FORMAT Dynamic
  4815. TABLE_ROWS 11
  4816. AVG_ROW_LENGTH #ARL#
  4817. DATA_LENGTH #DL#
  4818. MAX_DATA_LENGTH #MDL#
  4819. INDEX_LENGTH #IL#
  4820. DATA_FREE #DF#
  4821. AUTO_INCREMENT NULL
  4822. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4823. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4824. CHECK_TIME NULL
  4825. TABLE_COLLATION latin1_swedish_ci
  4826. CHECKSUM NULL
  4827. CREATE_OPTIONS
  4828. TABLE_COMMENT
  4829. TABLE_CATALOG NULL
  4830. TABLE_SCHEMA test
  4831. TABLE_NAME tb4
  4832. TABLE_TYPE BASE TABLE
  4833. ENGINE MyISAM
  4834. VERSION 10
  4835. ROW_FORMAT Dynamic
  4836. TABLE_ROWS 10
  4837. AVG_ROW_LENGTH #ARL#
  4838. DATA_LENGTH #DL#
  4839. MAX_DATA_LENGTH #MDL#
  4840. INDEX_LENGTH #IL#
  4841. DATA_FREE #DF#
  4842. AUTO_INCREMENT NULL
  4843. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4844. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4845. CHECK_TIME NULL
  4846. TABLE_COLLATION latin1_swedish_ci
  4847. CHECKSUM NULL
  4848. CREATE_OPTIONS
  4849. TABLE_COMMENT
  4850. TABLE_CATALOG NULL
  4851. TABLE_SCHEMA test4
  4852. TABLE_NAME t6
  4853. TABLE_TYPE BASE TABLE
  4854. ENGINE NDBCLUSTER
  4855. VERSION 10
  4856. ROW_FORMAT Fixed
  4857. TABLE_ROWS 10
  4858. AVG_ROW_LENGTH #ARL#
  4859. DATA_LENGTH #DL#
  4860. MAX_DATA_LENGTH #MDL#
  4861. INDEX_LENGTH #IL#
  4862. DATA_FREE #DF#
  4863. AUTO_INCREMENT NULL
  4864. CREATE_TIME YYYY-MM-DD hh:mm:ss
  4865. UPDATE_TIME YYYY-MM-DD hh:mm:ss
  4866. CHECK_TIME NULL
  4867. TABLE_COLLATION latin1_swedish_ci
  4868. CHECKSUM NULL
  4869. CREATE_OPTIONS
  4870. TABLE_COMMENT number_of_replicas: 2
  4871. select s.catalog_name, s.schema_name, s.default_character_set_name,
  4872. t.table_type, t.engine
  4873. from information_schema.schemata s inner join information_schema.tables t
  4874. ORDER BY s.schema_name, s.default_character_set_name, table_type, engine;
  4875. catalog_name schema_name default_character_set_name table_type engine
  4876. NULL db_datadict latin1 BASE TABLE CSV
  4877. NULL db_datadict latin1 BASE TABLE CSV
  4878. NULL db_datadict latin1 BASE TABLE MyISAM
  4879. NULL db_datadict latin1 BASE TABLE MyISAM
  4880. NULL db_datadict latin1 BASE TABLE MyISAM
  4881. NULL db_datadict latin1 BASE TABLE MyISAM
  4882. NULL db_datadict latin1 BASE TABLE MyISAM
  4883. NULL db_datadict latin1 BASE TABLE MyISAM
  4884. NULL db_datadict latin1 BASE TABLE MyISAM
  4885. NULL db_datadict latin1 BASE TABLE MyISAM
  4886. NULL db_datadict latin1 BASE TABLE MyISAM
  4887. NULL db_datadict latin1 BASE TABLE MyISAM
  4888. NULL db_datadict latin1 BASE TABLE MyISAM
  4889. NULL db_datadict latin1 BASE TABLE MyISAM
  4890. NULL db_datadict latin1 BASE TABLE MyISAM
  4891. NULL db_datadict latin1 BASE TABLE MyISAM
  4892. NULL db_datadict latin1 BASE TABLE MyISAM
  4893. NULL db_datadict latin1 BASE TABLE MyISAM
  4894. NULL db_datadict latin1 BASE TABLE MyISAM
  4895. NULL db_datadict latin1 BASE TABLE MyISAM
  4896. NULL db_datadict latin1 BASE TABLE MyISAM
  4897. NULL db_datadict latin1 BASE TABLE MyISAM
  4898. NULL db_datadict latin1 BASE TABLE MyISAM
  4899. NULL db_datadict latin1 BASE TABLE MyISAM
  4900. NULL db_datadict latin1 BASE TABLE MyISAM
  4901. NULL db_datadict latin1 BASE TABLE MyISAM
  4902. NULL db_datadict latin1 BASE TABLE MyISAM
  4903. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4904. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4905. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4906. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4907. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4908. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4909. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4910. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4911. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4912. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4913. NULL db_datadict latin1 BASE TABLE NDBCLUSTER
  4914. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4915. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4916. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4917. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4918. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4919. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4920. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4921. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4922. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4923. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4924. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4925. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4926. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4927. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4928. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4929. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4930. NULL db_datadict latin1 SYSTEM VIEW MEMORY
  4931. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4932. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4933. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4934. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4935. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4936. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4937. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4938. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4939. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4940. NULL db_datadict latin1 SYSTEM VIEW MyISAM
  4941. NULL db_datadict latin1 VIEW NULL
  4942. NULL db_datadict latin1 VIEW NULL
  4943. NULL db_datadict latin1 VIEW NULL
  4944. NULL information_schema utf8 BASE TABLE CSV
  4945. NULL information_schema utf8 BASE TABLE CSV
  4946. NULL information_schema utf8 BASE TABLE MyISAM
  4947. NULL information_schema utf8 BASE TABLE MyISAM
  4948. NULL information_schema utf8 BASE TABLE MyISAM
  4949. NULL information_schema utf8 BASE TABLE MyISAM
  4950. NULL information_schema utf8 BASE TABLE MyISAM
  4951. NULL information_schema utf8 BASE TABLE MyISAM
  4952. NULL information_schema utf8 BASE TABLE MyISAM
  4953. NULL information_schema utf8 BASE TABLE MyISAM
  4954. NULL information_schema utf8 BASE TABLE MyISAM
  4955. NULL information_schema utf8 BASE TABLE MyISAM
  4956. NULL information_schema utf8 BASE TABLE MyISAM
  4957. NULL information_schema utf8 BASE TABLE MyISAM
  4958. NULL information_schema utf8 BASE TABLE MyISAM
  4959. NULL information_schema utf8 BASE TABLE MyISAM
  4960. NULL information_schema utf8 BASE TABLE MyISAM
  4961. NULL information_schema utf8 BASE TABLE MyISAM
  4962. NULL information_schema utf8 BASE TABLE MyISAM
  4963. NULL information_schema utf8 BASE TABLE MyISAM
  4964. NULL information_schema utf8 BASE TABLE MyISAM
  4965. NULL information_schema utf8 BASE TABLE MyISAM
  4966. NULL information_schema utf8 BASE TABLE MyISAM
  4967. NULL information_schema utf8 BASE TABLE MyISAM
  4968. NULL information_schema utf8 BASE TABLE MyISAM
  4969. NULL information_schema utf8 BASE TABLE MyISAM
  4970. NULL information_schema utf8 BASE TABLE MyISAM
  4971. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4972. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4973. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4974. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4975. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4976. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4977. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4978. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4979. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4980. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4981. NULL information_schema utf8 BASE TABLE NDBCLUSTER
  4982. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4983. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4984. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4985. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4986. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4987. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4988. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4989. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4990. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4991. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4992. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4993. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4994. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4995. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4996. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4997. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4998. NULL information_schema utf8 SYSTEM VIEW MEMORY
  4999. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5000. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5001. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5002. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5003. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5004. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5005. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5006. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5007. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5008. NULL information_schema utf8 SYSTEM VIEW MyISAM
  5009. NULL information_schema utf8 VIEW NULL
  5010. NULL information_schema utf8 VIEW NULL
  5011. NULL information_schema utf8 VIEW NULL
  5012. NULL mysql latin1 BASE TABLE CSV
  5013. NULL mysql latin1 BASE TABLE CSV
  5014. NULL mysql latin1 BASE TABLE MyISAM
  5015. NULL mysql latin1 BASE TABLE MyISAM
  5016. NULL mysql latin1 BASE TABLE MyISAM
  5017. NULL mysql latin1 BASE TABLE MyISAM
  5018. NULL mysql latin1 BASE TABLE MyISAM
  5019. NULL mysql latin1 BASE TABLE MyISAM
  5020. NULL mysql latin1 BASE TABLE MyISAM
  5021. NULL mysql latin1 BASE TABLE MyISAM
  5022. NULL mysql latin1 BASE TABLE MyISAM
  5023. NULL mysql latin1 BASE TABLE MyISAM
  5024. NULL mysql latin1 BASE TABLE MyISAM
  5025. NULL mysql latin1 BASE TABLE MyISAM
  5026. NULL mysql latin1 BASE TABLE MyISAM
  5027. NULL mysql latin1 BASE TABLE MyISAM
  5028. NULL mysql latin1 BASE TABLE MyISAM
  5029. NULL mysql latin1 BASE TABLE MyISAM
  5030. NULL mysql latin1 BASE TABLE MyISAM
  5031. NULL mysql latin1 BASE TABLE MyISAM
  5032. NULL mysql latin1 BASE TABLE MyISAM
  5033. NULL mysql latin1 BASE TABLE MyISAM
  5034. NULL mysql latin1 BASE TABLE MyISAM
  5035. NULL mysql latin1 BASE TABLE MyISAM
  5036. NULL mysql latin1 BASE TABLE MyISAM
  5037. NULL mysql latin1 BASE TABLE MyISAM
  5038. NULL mysql latin1 BASE TABLE MyISAM
  5039. NULL mysql latin1 BASE TABLE NDBCLUSTER
  5040. NULL mysql latin1 BASE TABLE NDBCLUSTER
  5041. NULL mysql latin1 BASE TABLE NDBCLUSTER
  5042. NULL mysql latin1 BASE TABLE NDBCLUSTER
  5043. NULL mysql latin1 BASE TABLE NDBCLUSTER
  5044. NULL mysql latin1 BASE TABLE NDBCLUSTER
  5045. NULL mysql latin1 BASE TABLE NDBCLUSTER
  5046. NULL mysql latin1 BASE TABLE NDBCLUSTER
  5047. NULL mysql latin1 BASE TABLE NDBCLUSTER
  5048. NULL mysql latin1 BASE TABLE NDBCLUSTER
  5049. NULL mysql latin1 BASE TABLE NDBCLUSTER
  5050. NULL mysql latin1 SYSTEM VIEW MEMORY
  5051. NULL mysql latin1 SYSTEM VIEW MEMORY
  5052. NULL mysql latin1 SYSTEM VIEW MEMORY
  5053. NULL mysql latin1 SYSTEM VIEW MEMORY
  5054. NULL mysql latin1 SYSTEM VIEW MEMORY
  5055. NULL mysql latin1 SYSTEM VIEW MEMORY
  5056. NULL mysql latin1 SYSTEM VIEW MEMORY
  5057. NULL mysql latin1 SYSTEM VIEW MEMORY
  5058. NULL mysql latin1 SYSTEM VIEW MEMORY
  5059. NULL mysql latin1 SYSTEM VIEW MEMORY
  5060. NULL mysql latin1 SYSTEM VIEW MEMORY
  5061. NULL mysql latin1 SYSTEM VIEW MEMORY
  5062. NULL mysql latin1 SYSTEM VIEW MEMORY
  5063. NULL mysql latin1 SYSTEM VIEW MEMORY
  5064. NULL mysql latin1 SYSTEM VIEW MEMORY
  5065. NULL mysql latin1 SYSTEM VIEW MEMORY
  5066. NULL mysql latin1 SYSTEM VIEW MEMORY
  5067. NULL mysql latin1 SYSTEM VIEW MyISAM
  5068. NULL mysql latin1 SYSTEM VIEW MyISAM
  5069. NULL mysql latin1 SYSTEM VIEW MyISAM
  5070. NULL mysql latin1 SYSTEM VIEW MyISAM
  5071. NULL mysql latin1 SYSTEM VIEW MyISAM
  5072. NULL mysql latin1 SYSTEM VIEW MyISAM
  5073. NULL mysql latin1 SYSTEM VIEW MyISAM
  5074. NULL mysql latin1 SYSTEM VIEW MyISAM
  5075. NULL mysql latin1 SYSTEM VIEW MyISAM
  5076. NULL mysql latin1 SYSTEM VIEW MyISAM
  5077. NULL mysql latin1 VIEW NULL
  5078. NULL mysql latin1 VIEW NULL
  5079. NULL mysql latin1 VIEW NULL
  5080. NULL test latin1 BASE TABLE CSV
  5081. NULL test latin1 BASE TABLE CSV
  5082. NULL test latin1 BASE TABLE MyISAM
  5083. NULL test latin1 BASE TABLE MyISAM
  5084. NULL test latin1 BASE TABLE MyISAM
  5085. NULL test latin1 BASE TABLE MyISAM
  5086. NULL test latin1 BASE TABLE MyISAM
  5087. NULL test latin1 BASE TABLE MyISAM
  5088. NULL test latin1 BASE TABLE MyISAM
  5089. NULL test latin1 BASE TABLE MyISAM
  5090. NULL test latin1 BASE TABLE MyISAM
  5091. NULL test latin1 BASE TABLE MyISAM
  5092. NULL test latin1 BASE TABLE MyISAM
  5093. NULL test latin1 BASE TABLE MyISAM
  5094. NULL test latin1 BASE TABLE MyISAM
  5095. NULL test latin1 BASE TABLE MyISAM
  5096. NULL test latin1 BASE TABLE MyISAM
  5097. NULL test latin1 BASE TABLE MyISAM
  5098. NULL test latin1 BASE TABLE MyISAM
  5099. NULL test latin1 BASE TABLE MyISAM
  5100. NULL test latin1 BASE TABLE MyISAM
  5101. NULL test latin1 BASE TABLE MyISAM
  5102. NULL test latin1 BASE TABLE MyISAM
  5103. NULL test latin1 BASE TABLE MyISAM
  5104. NULL test latin1 BASE TABLE MyISAM
  5105. NULL test latin1 BASE TABLE MyISAM
  5106. NULL test latin1 BASE TABLE MyISAM
  5107. NULL test latin1 BASE TABLE NDBCLUSTER
  5108. NULL test latin1 BASE TABLE NDBCLUSTER
  5109. NULL test latin1 BASE TABLE NDBCLUSTER
  5110. NULL test latin1 BASE TABLE NDBCLUSTER
  5111. NULL test latin1 BASE TABLE NDBCLUSTER
  5112. NULL test latin1 BASE TABLE NDBCLUSTER
  5113. NULL test latin1 BASE TABLE NDBCLUSTER
  5114. NULL test latin1 BASE TABLE NDBCLUSTER
  5115. NULL test latin1 BASE TABLE NDBCLUSTER
  5116. NULL test latin1 BASE TABLE NDBCLUSTER
  5117. NULL test latin1 BASE TABLE NDBCLUSTER
  5118. NULL test latin1 SYSTEM VIEW MEMORY
  5119. NULL test latin1 SYSTEM VIEW MEMORY
  5120. NULL test latin1 SYSTEM VIEW MEMORY
  5121. NULL test latin1 SYSTEM VIEW MEMORY
  5122. NULL test latin1 SYSTEM VIEW MEMORY
  5123. NULL test latin1 SYSTEM VIEW MEMORY
  5124. NULL test latin1 SYSTEM VIEW MEMORY
  5125. NULL test latin1 SYSTEM VIEW MEMORY
  5126. NULL test latin1 SYSTEM VIEW MEMORY
  5127. NULL test latin1 SYSTEM VIEW MEMORY
  5128. NULL test latin1 SYSTEM VIEW MEMORY
  5129. NULL test latin1 SYSTEM VIEW MEMORY
  5130. NULL test latin1 SYSTEM VIEW MEMORY
  5131. NULL test latin1 SYSTEM VIEW MEMORY
  5132. NULL test latin1 SYSTEM VIEW MEMORY
  5133. NULL test latin1 SYSTEM VIEW MEMORY
  5134. NULL test latin1 SYSTEM VIEW MEMORY
  5135. NULL test latin1 SYSTEM VIEW MyISAM
  5136. NULL test latin1 SYSTEM VIEW MyISAM
  5137. NULL test latin1 SYSTEM VIEW MyISAM
  5138. NULL test latin1 SYSTEM VIEW MyISAM
  5139. NULL test latin1 SYSTEM VIEW MyISAM
  5140. NULL test latin1 SYSTEM VIEW MyISAM
  5141. NULL test latin1 SYSTEM VIEW MyISAM
  5142. NULL test latin1 SYSTEM VIEW MyISAM
  5143. NULL test latin1 SYSTEM VIEW MyISAM
  5144. NULL test latin1 SYSTEM VIEW MyISAM
  5145. NULL test latin1 VIEW NULL
  5146. NULL test latin1 VIEW NULL
  5147. NULL test latin1 VIEW NULL
  5148. NULL test1 latin1 BASE TABLE CSV
  5149. NULL test1 latin1 BASE TABLE CSV
  5150. NULL test1 latin1 BASE TABLE MyISAM
  5151. NULL test1 latin1 BASE TABLE MyISAM
  5152. NULL test1 latin1 BASE TABLE MyISAM
  5153. NULL test1 latin1 BASE TABLE MyISAM
  5154. NULL test1 latin1 BASE TABLE MyISAM
  5155. NULL test1 latin1 BASE TABLE MyISAM
  5156. NULL test1 latin1 BASE TABLE MyISAM
  5157. NULL test1 latin1 BASE TABLE MyISAM
  5158. NULL test1 latin1 BASE TABLE MyISAM
  5159. NULL test1 latin1 BASE TABLE MyISAM
  5160. NULL test1 latin1 BASE TABLE MyISAM
  5161. NULL test1 latin1 BASE TABLE MyISAM
  5162. NULL test1 latin1 BASE TABLE MyISAM
  5163. NULL test1 latin1 BASE TABLE MyISAM
  5164. NULL test1 latin1 BASE TABLE MyISAM
  5165. NULL test1 latin1 BASE TABLE MyISAM
  5166. NULL test1 latin1 BASE TABLE MyISAM
  5167. NULL test1 latin1 BASE TABLE MyISAM
  5168. NULL test1 latin1 BASE TABLE MyISAM
  5169. NULL test1 latin1 BASE TABLE MyISAM
  5170. NULL test1 latin1 BASE TABLE MyISAM
  5171. NULL test1 latin1 BASE TABLE MyISAM
  5172. NULL test1 latin1 BASE TABLE MyISAM
  5173. NULL test1 latin1 BASE TABLE MyISAM
  5174. NULL test1 latin1 BASE TABLE MyISAM
  5175. NULL test1 latin1 BASE TABLE NDBCLUSTER
  5176. NULL test1 latin1 BASE TABLE NDBCLUSTER
  5177. NULL test1 latin1 BASE TABLE NDBCLUSTER
  5178. NULL test1 latin1 BASE TABLE NDBCLUSTER
  5179. NULL test1 latin1 BASE TABLE NDBCLUSTER
  5180. NULL test1 latin1 BASE TABLE NDBCLUSTER
  5181. NULL test1 latin1 BASE TABLE NDBCLUSTER
  5182. NULL test1 latin1 BASE TABLE NDBCLUSTER
  5183. NULL test1 latin1 BASE TABLE NDBCLUSTER
  5184. NULL test1 latin1 BASE TABLE NDBCLUSTER
  5185. NULL test1 latin1 BASE TABLE NDBCLUSTER
  5186. NULL test1 latin1 SYSTEM VIEW MEMORY
  5187. NULL test1 latin1 SYSTEM VIEW MEMORY
  5188. NULL test1 latin1 SYSTEM VIEW MEMORY
  5189. NULL test1 latin1 SYSTEM VIEW MEMORY
  5190. NULL test1 latin1 SYSTEM VIEW MEMORY
  5191. NULL test1 latin1 SYSTEM VIEW MEMORY
  5192. NULL test1 latin1 SYSTEM VIEW MEMORY
  5193. NULL test1 latin1 SYSTEM VIEW MEMORY
  5194. NULL test1 latin1 SYSTEM VIEW MEMORY
  5195. NULL test1 latin1 SYSTEM VIEW MEMORY
  5196. NULL test1 latin1 SYSTEM VIEW MEMORY
  5197. NULL test1 latin1 SYSTEM VIEW MEMORY
  5198. NULL test1 latin1 SYSTEM VIEW MEMORY
  5199. NULL test1 latin1 SYSTEM VIEW MEMORY
  5200. NULL test1 latin1 SYSTEM VIEW MEMORY
  5201. NULL test1 latin1 SYSTEM VIEW MEMORY
  5202. NULL test1 latin1 SYSTEM VIEW MEMORY
  5203. NULL test1 latin1 SYSTEM VIEW MyISAM
  5204. NULL test1 latin1 SYSTEM VIEW MyISAM
  5205. NULL test1 latin1 SYSTEM VIEW MyISAM
  5206. NULL test1 latin1 SYSTEM VIEW MyISAM
  5207. NULL test1 latin1 SYSTEM VIEW MyISAM
  5208. NULL test1 latin1 SYSTEM VIEW MyISAM
  5209. NULL test1 latin1 SYSTEM VIEW MyISAM
  5210. NULL test1 latin1 SYSTEM VIEW MyISAM
  5211. NULL test1 latin1 SYSTEM VIEW MyISAM
  5212. NULL test1 latin1 SYSTEM VIEW MyISAM
  5213. NULL test1 latin1 VIEW NULL
  5214. NULL test1 latin1 VIEW NULL
  5215. NULL test1 latin1 VIEW NULL
  5216. NULL test4 latin1 BASE TABLE CSV
  5217. NULL test4 latin1 BASE TABLE CSV
  5218. NULL test4 latin1 BASE TABLE MyISAM
  5219. NULL test4 latin1 BASE TABLE MyISAM
  5220. NULL test4 latin1 BASE TABLE MyISAM
  5221. NULL test4 latin1 BASE TABLE MyISAM
  5222. NULL test4 latin1 BASE TABLE MyISAM
  5223. NULL test4 latin1 BASE TABLE MyISAM
  5224. NULL test4 latin1 BASE TABLE MyISAM
  5225. NULL test4 latin1 BASE TABLE MyISAM
  5226. NULL test4 latin1 BASE TABLE MyISAM
  5227. NULL test4 latin1 BASE TABLE MyISAM
  5228. NULL test4 latin1 BASE TABLE MyISAM
  5229. NULL test4 latin1 BASE TABLE MyISAM
  5230. NULL test4 latin1 BASE TABLE MyISAM
  5231. NULL test4 latin1 BASE TABLE MyISAM
  5232. NULL test4 latin1 BASE TABLE MyISAM
  5233. NULL test4 latin1 BASE TABLE MyISAM
  5234. NULL test4 latin1 BASE TABLE MyISAM
  5235. NULL test4 latin1 BASE TABLE MyISAM
  5236. NULL test4 latin1 BASE TABLE MyISAM
  5237. NULL test4 latin1 BASE TABLE MyISAM
  5238. NULL test4 latin1 BASE TABLE MyISAM
  5239. NULL test4 latin1 BASE TABLE MyISAM
  5240. NULL test4 latin1 BASE TABLE MyISAM
  5241. NULL test4 latin1 BASE TABLE MyISAM
  5242. NULL test4 latin1 BASE TABLE MyISAM
  5243. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5244. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5245. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5246. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5247. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5248. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5249. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5250. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5251. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5252. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5253. NULL test4 latin1 BASE TABLE NDBCLUSTER
  5254. NULL test4 latin1 SYSTEM VIEW MEMORY
  5255. NULL test4 latin1 SYSTEM VIEW MEMORY
  5256. NULL test4 latin1 SYSTEM VIEW MEMORY
  5257. NULL test4 latin1 SYSTEM VIEW MEMORY
  5258. NULL test4 latin1 SYSTEM VIEW MEMORY
  5259. NULL test4 latin1 SYSTEM VIEW MEMORY
  5260. NULL test4 latin1 SYSTEM VIEW MEMORY
  5261. NULL test4 latin1 SYSTEM VIEW MEMORY
  5262. NULL test4 latin1 SYSTEM VIEW MEMORY
  5263. NULL test4 latin1 SYSTEM VIEW MEMORY
  5264. NULL test4 latin1 SYSTEM VIEW MEMORY
  5265. NULL test4 latin1 SYSTEM VIEW MEMORY
  5266. NULL test4 latin1 SYSTEM VIEW MEMORY
  5267. NULL test4 latin1 SYSTEM VIEW MEMORY
  5268. NULL test4 latin1 SYSTEM VIEW MEMORY
  5269. NULL test4 latin1 SYSTEM VIEW MEMORY
  5270. NULL test4 latin1 SYSTEM VIEW MEMORY
  5271. NULL test4 latin1 SYSTEM VIEW MyISAM
  5272. NULL test4 latin1 SYSTEM VIEW MyISAM
  5273. NULL test4 latin1 SYSTEM VIEW MyISAM
  5274. NULL test4 latin1 SYSTEM VIEW MyISAM
  5275. NULL test4 latin1 SYSTEM VIEW MyISAM
  5276. NULL test4 latin1 SYSTEM VIEW MyISAM
  5277. NULL test4 latin1 SYSTEM VIEW MyISAM
  5278. NULL test4 latin1 SYSTEM VIEW MyISAM
  5279. NULL test4 latin1 SYSTEM VIEW MyISAM
  5280. NULL test4 latin1 SYSTEM VIEW MyISAM
  5281. NULL test4 latin1 VIEW NULL
  5282. NULL test4 latin1 VIEW NULL
  5283. NULL test4 latin1 VIEW NULL
  5284. select * from information_schema.columns limit 0, 5;
  5285. 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
  5286. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  5287. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  5288. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  5289. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  5290. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  5291. select * from information_schema.character_sets limit 0, 5;
  5292. CHARACTER_SET_NAME DEFAULT_COLLATE_NAME DESCRIPTION MAXLEN
  5293. big5 big5_chinese_ci Big5 Traditional Chinese 2
  5294. dec8 dec8_swedish_ci DEC West European 1
  5295. cp850 cp850_general_ci DOS West European 1
  5296. hp8 hp8_english_ci HP West European 1
  5297. koi8r koi8r_general_ci KOI8-R Relcom Russian 1
  5298. select * from information_schema.collations limit 0, 5;
  5299. COLLATION_NAME CHARACTER_SET_NAME ID IS_DEFAULT IS_COMPILED SORTLEN
  5300. big5_chinese_ci big5 1 Yes Yes 1
  5301. big5_bin big5 84 Yes 1
  5302. dec8_swedish_ci dec8 3 Yes 0
  5303. dec8_bin dec8 69 0
  5304. cp850_general_ci cp850 4 Yes 0
  5305. select * from information_schema.collation_character_set_applicability limit 0, 5;
  5306. COLLATION_NAME CHARACTER_SET_NAME
  5307. big5_chinese_ci big5
  5308. big5_bin big5
  5309. dec8_swedish_ci dec8
  5310. dec8_bin dec8
  5311. cp850_general_ci cp850
  5312. select * from information_schema.routines limit 0, 5;
  5313. 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
  5314. sp_1 NULL db_datadict sp_1 PROCEDURE NULL SQL BEGIN
  5315. SELECT * FROM db_datadict.v1;
  5316. END NULL NULL SQL NO CONTAINS SQL NULL DEFINER YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss root@localhost
  5317. select * from information_schema.statistics limit 0, 5;
  5318. 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
  5319. NULL mysql user 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  5320. NULL mysql user 0 mysql PRIMARY 2 User A 5 NULL NULL BTREE
  5321. NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  5322. NULL mysql columns_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  5323. NULL mysql columns_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  5324. select * from information_schema.views limit 0, 5;
  5325. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE
  5326. NULL db_datadict v1 /* ALGORITHM=UNDEFINED */ select `tables`.`TABLE_CATALOG` AS `TABLE_CATALOG`,`tables`.`TABLE_SCHEMA` AS `TABLE_SCHEMA`,`tables`.`TABLE_NAME` AS `TABLE_NAME`,`tables`.`TABLE_TYPE` AS `TABLE_TYPE`,`tables`.`ENGINE` AS `ENGINE`,`tables`.`VERSION` AS `VERSION`,`tables`.`ROW_FORMAT` AS `ROW_FORMAT`,`tables`.`TABLE_ROWS` AS `TABLE_ROWS`,`tables`.`AVG_ROW_LENGTH` AS `AVG_ROW_LENGTH`,`tables`.`DATA_LENGTH` AS `DATA_LENGTH`,`tables`.`MAX_DATA_LENGTH` AS `MAX_DATA_LENGTH`,`tables`.`INDEX_LENGTH` AS `INDEX_LENGTH`,`tables`.`DATA_FREE` AS `DATA_FREE`,`tables`.`AUTO_INCREMENT` AS `AUTO_INCREMENT`,`tables`.`CREATE_TIME` AS `CREATE_TIME`,`tables`.`UPDATE_TIME` AS `UPDATE_TIME`,`tables`.`CHECK_TIME` AS `CHECK_TIME`,`tables`.`TABLE_COLLATION` AS `TABLE_COLLATION`,`tables`.`CHECKSUM` AS `CHECKSUM`,`tables`.`CREATE_OPTIONS` AS `CREATE_OPTIONS`,`tables`.`TABLE_COMMENT` AS `TABLE_COMMENT` from `information_schema`.`tables` NONE NO root@localhost DEFINER
  5327. NULL db_datadict vu /* ALGORITHM=UNDEFINED */ select distinct `vu1`.`u` AS `u`,substr(`vu1`.`u`,(length(substring_index(`vu1`.`u`,_utf8'@',1)) + 3)) AS `server`,substr(`vu1`.`u`,(length(substring_index(`vu1`.`u`,_utf8'@',1)) + 3),(length(substr(`vu1`.`u`,(length(substring_index(`vu1`.`u`,_utf8'@',1)) + 3))) - 1)) AS `Server_Clean` from `db_datadict`.`vu1` NONE NO root@localhost DEFINER
  5328. NULL db_datadict vu1 /* ALGORITHM=UNDEFINED */ select `user_privileges`.`GRANTEE` AS `u` from `information_schema`.`user_privileges` NONE NO root@localhost DEFINER
  5329. select * from information_schema.user_privileges limit 0, 5;
  5330. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  5331. 'root'@'localhost' NULL SELECT YES
  5332. 'root'@'localhost' NULL INSERT YES
  5333. 'root'@'localhost' NULL UPDATE YES
  5334. 'root'@'localhost' NULL DELETE YES
  5335. 'root'@'localhost' NULL CREATE YES
  5336. select * from information_schema.schema_privileges limit 0, 5;
  5337. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  5338. ''@'%' NULL test SELECT NO
  5339. ''@'%' NULL test INSERT NO
  5340. ''@'%' NULL test UPDATE NO
  5341. ''@'%' NULL test DELETE NO
  5342. ''@'%' NULL test CREATE NO
  5343. select * from information_schema.table_privileges limit 0, 5;
  5344. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  5345. select * from information_schema.column_privileges limit 0, 5;
  5346. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  5347. select * from information_schema.table_constraints limit 0, 5;
  5348. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  5349. NULL mysql PRIMARY mysql user PRIMARY KEY
  5350. NULL mysql PRIMARY mysql columns_priv PRIMARY KEY
  5351. NULL mysql PRIMARY mysql db PRIMARY KEY
  5352. NULL mysql PRIMARY mysql event PRIMARY KEY
  5353. NULL mysql PRIMARY mysql func PRIMARY KEY
  5354. select * from information_schema.key_column_usage limit 0, 5;
  5355. 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
  5356. NULL mysql PRIMARY NULL mysql user Host 1 NULL NULL NULL NULL
  5357. NULL mysql PRIMARY NULL mysql user User 2 NULL NULL NULL NULL
  5358. NULL mysql PRIMARY NULL mysql columns_priv Host 1 NULL NULL NULL NULL
  5359. NULL mysql PRIMARY NULL mysql columns_priv Db 2 NULL NULL NULL NULL
  5360. NULL mysql PRIMARY NULL mysql columns_priv User 3 NULL NULL NULL NULL
  5361. select count(*) as max_recs from information_schema.key_column_usage limit 0, 5;
  5362. max_recs
  5363. 46
  5364. root: check with db name
  5365. ------------------------
  5366. SELECT COUNT(*) FROM information_schema. schemata ;
  5367. COUNT(*)
  5368. 6
  5369. SELECT COUNT(*) FROM information_schema. tables ;
  5370. COUNT(*)
  5371. 68
  5372. SELECT COUNT(*) FROM information_schema. columns ;
  5373. COUNT(*)
  5374. 806
  5375. SELECT COUNT(*) FROM information_schema. character_sets ;
  5376. COUNT(*)
  5377. 36
  5378. SELECT COUNT(*) FROM information_schema. collations ;
  5379. COUNT(*)
  5380. 127
  5381. SELECT COUNT(*) FROM information_schema. collation_character_set_applicability ;
  5382. COUNT(*)
  5383. 128
  5384. SELECT COUNT(*) FROM information_schema. routines ;
  5385. COUNT(*)
  5386. 1
  5387. SELECT COUNT(*) FROM information_schema. statistics ;
  5388. COUNT(*)
  5389. 49
  5390. SELECT COUNT(*) FROM information_schema. views ;
  5391. COUNT(*)
  5392. 3
  5393. SELECT COUNT(*) FROM information_schema. user_privileges ;
  5394. COUNT(*)
  5395. 83
  5396. SELECT COUNT(*) FROM information_schema. schema_privileges ;
  5397. COUNT(*)
  5398. 32
  5399. SELECT COUNT(*) FROM information_schema. table_privileges ;
  5400. COUNT(*)
  5401. 0
  5402. SELECT COUNT(*) FROM information_schema. column_privileges ;
  5403. COUNT(*)
  5404. 0
  5405. SELECT COUNT(*) FROM information_schema. table_constraints ;
  5406. COUNT(*)
  5407. 25
  5408. SELECT COUNT(*) FROM information_schema. key_column_usage ;
  5409. COUNT(*)
  5410. 46
  5411. SELECT COUNT(*) FROM information_schema. triggers ;
  5412. COUNT(*)
  5413. 0
  5414. SELECT COUNT(*) FROM information_schema. parameters ;
  5415. ERROR 42S02: Unknown table 'parameters' in information_schema
  5416. SELECT COUNT(*) FROM information_schema. referential_constraints ;
  5417. COUNT(*)
  5418. 0
  5419. USE db_datadict;
  5420. DROP VIEW v1, vu1, vu;
  5421. DROP PROCEDURE db_datadict.sp_1;
  5422. USE information_schema;
  5423. Testcase 3.2.1.2:
  5424. --------------------------------------------------------------------------------
  5425. select catalog_name, schema_name, default_character_set_name
  5426. from schemata where schema_name like '%s%';
  5427. catalog_name schema_name default_character_set_name
  5428. NULL information_schema utf8
  5429. NULL mysql latin1
  5430. NULL test latin1
  5431. NULL test1 latin1
  5432. NULL test4 latin1
  5433. select count(*) as tot_tabs from tables;
  5434. tot_tabs
  5435. 65
  5436. select count(*) as the_cols from columns;
  5437. the_cols
  5438. 781
  5439. select max(maxlen) as the_max from character_sets;
  5440. the_max
  5441. 3
  5442. select * from collations order by id asc limit 0, 5;
  5443. COLLATION_NAME CHARACTER_SET_NAME ID IS_DEFAULT IS_COMPILED SORTLEN
  5444. big5_chinese_ci big5 1 Yes Yes 1
  5445. latin2_czech_cs latin2 2 Yes 4
  5446. dec8_swedish_ci dec8 3 Yes 0
  5447. cp850_general_ci cp850 4 Yes 0
  5448. latin1_german1_ci latin1 5 Yes 1
  5449. select * from collation_character_set_applicability
  5450. order by character_set_name desc, collation_name limit 0, 5;
  5451. COLLATION_NAME CHARACTER_SET_NAME
  5452. utf8_bin utf8
  5453. utf8_czech_ci utf8
  5454. utf8_danish_ci utf8
  5455. utf8_esperanto_ci utf8
  5456. utf8_estonian_ci utf8
  5457. select routine_definition from routines;
  5458. routine_definition
  5459. select * from statistics group by index_name asc limit 0, 5;
  5460. 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
  5461. NULL mysql procs_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
  5462. NULL mysql help_category 0 mysql name 1 name A 0 NULL NULL BTREE
  5463. NULL mysql user 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  5464. NULL mysql db 1 mysql User 1 User A NULL NULL NULL BTREE
  5465. select concat(table_schema, ', ', table_name, ', ', view_definition) view_info
  5466. from views;
  5467. view_info
  5468. select concat(table_schema, ', ', table_name) "Table_info"
  5469. from tables ORDER BY 1;
  5470. Table_info
  5471. information_schema, CHARACTER_SETS
  5472. information_schema, COLLATIONS
  5473. information_schema, COLLATION_CHARACTER_SET_APPLICABILITY
  5474. information_schema, COLUMNS
  5475. information_schema, COLUMN_PRIVILEGES
  5476. information_schema, ENGINES
  5477. information_schema, EVENTS
  5478. information_schema, FILES
  5479. information_schema, GLOBAL_STATUS
  5480. information_schema, GLOBAL_VARIABLES
  5481. information_schema, KEY_COLUMN_USAGE
  5482. information_schema, PARTITIONS
  5483. information_schema, PLUGINS
  5484. information_schema, PROCESSLIST
  5485. information_schema, REFERENTIAL_CONSTRAINTS
  5486. information_schema, ROUTINES
  5487. information_schema, SCHEMATA
  5488. information_schema, SCHEMA_PRIVILEGES
  5489. information_schema, SESSION_STATUS
  5490. information_schema, SESSION_VARIABLES
  5491. information_schema, STATISTICS
  5492. information_schema, TABLES
  5493. information_schema, TABLE_CONSTRAINTS
  5494. information_schema, TABLE_PRIVILEGES
  5495. information_schema, TRIGGERS
  5496. information_schema, USER_PRIVILEGES
  5497. information_schema, VIEWS
  5498. mysql, columns_priv
  5499. mysql, db
  5500. mysql, event
  5501. mysql, func
  5502. mysql, general_log
  5503. mysql, help_category
  5504. mysql, help_keyword
  5505. mysql, help_relation
  5506. mysql, help_topic
  5507. mysql, host
  5508. mysql, ndb_apply_status
  5509. mysql, ndb_binlog_index
  5510. mysql, plugin
  5511. mysql, proc
  5512. mysql, procs_priv
  5513. mysql, servers
  5514. mysql, slow_log
  5515. mysql, tables_priv
  5516. mysql, time_zone
  5517. mysql, time_zone_leap_second
  5518. mysql, time_zone_name
  5519. mysql, time_zone_transition
  5520. mysql, time_zone_transition_type
  5521. mysql, user
  5522. test, t1
  5523. test, t10
  5524. test, t11
  5525. test, t2
  5526. test, t3
  5527. test, t4
  5528. test, t7
  5529. test, t8
  5530. test, t9
  5531. test, tb1
  5532. test, tb2
  5533. test, tb3
  5534. test, tb4
  5535. test4, t6
  5536. select distinct grantee from user_privileges;
  5537. grantee
  5538. 'root'@'localhost'
  5539. 'root'@'127.0.0.1'
  5540. ''@'localhost'
  5541. 'root'@'<SERVER_NAME>'
  5542. ''@'<SERVER_NAME>'
  5543. select * from schema_privileges where table_catalog is null limit 0, 5;
  5544. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  5545. ''@'%' NULL test SELECT NO
  5546. ''@'%' NULL test INSERT NO
  5547. ''@'%' NULL test UPDATE NO
  5548. ''@'%' NULL test DELETE NO
  5549. ''@'%' NULL test CREATE NO
  5550. select * from table_privileges where grantee like '%r%' limit 0, 5;
  5551. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  5552. select * from column_privileges where table_catalog is not null limit 0, 5;
  5553. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  5554. select HIGH_PRIORITY * from table_constraints
  5555. group by constraint_name desc limit 0, 5;
  5556. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  5557. NULL mysql PRIMARY mysql user PRIMARY KEY
  5558. NULL mysql name mysql help_category UNIQUE
  5559. select sum(ordinal_position) from key_column_usage;
  5560. sum(ordinal_position)
  5561. 84
  5562. select * from schemata limit 0,5;
  5563. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  5564. NULL information_schema utf8 utf8_general_ci NULL
  5565. NULL db_datadict latin1 latin1_swedish_ci NULL
  5566. NULL mysql latin1 latin1_swedish_ci NULL
  5567. NULL test latin1 latin1_swedish_ci NULL
  5568. NULL test1 latin1 latin1_swedish_ci NULL
  5569. select * from schemata limit 0,5;
  5570. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  5571. NULL information_schema utf8 utf8_general_ci NULL
  5572. NULL db_datadict latin1 latin1_swedish_ci NULL
  5573. NULL mysql latin1 latin1_swedish_ci NULL
  5574. NULL test latin1 latin1_swedish_ci NULL
  5575. NULL test1 latin1 latin1_swedish_ci NULL
  5576. select distinct grantee from user_privileges;
  5577. grantee
  5578. 'root'@'localhost'
  5579. 'root'@'127.0.0.1'
  5580. ''@'localhost'
  5581. 'root'@'<SERVER_NAME>'
  5582. ''@'<SERVER_NAME>'
  5583. select all grantee from user_privileges;
  5584. grantee
  5585. 'root'@'localhost'
  5586. 'root'@'localhost'
  5587. 'root'@'localhost'
  5588. 'root'@'localhost'
  5589. 'root'@'localhost'
  5590. 'root'@'localhost'
  5591. 'root'@'localhost'
  5592. 'root'@'localhost'
  5593. 'root'@'localhost'
  5594. 'root'@'localhost'
  5595. 'root'@'localhost'
  5596. 'root'@'localhost'
  5597. 'root'@'localhost'
  5598. 'root'@'localhost'
  5599. 'root'@'localhost'
  5600. 'root'@'localhost'
  5601. 'root'@'localhost'
  5602. 'root'@'localhost'
  5603. 'root'@'localhost'
  5604. 'root'@'localhost'
  5605. 'root'@'localhost'
  5606. 'root'@'localhost'
  5607. 'root'@'localhost'
  5608. 'root'@'localhost'
  5609. 'root'@'localhost'
  5610. 'root'@'localhost'
  5611. 'root'@'localhost'
  5612. 'root'@'127.0.0.1'
  5613. 'root'@'127.0.0.1'
  5614. 'root'@'127.0.0.1'
  5615. 'root'@'127.0.0.1'
  5616. 'root'@'127.0.0.1'
  5617. 'root'@'127.0.0.1'
  5618. 'root'@'127.0.0.1'
  5619. 'root'@'127.0.0.1'
  5620. 'root'@'127.0.0.1'
  5621. 'root'@'127.0.0.1'
  5622. 'root'@'127.0.0.1'
  5623. 'root'@'127.0.0.1'
  5624. 'root'@'127.0.0.1'
  5625. 'root'@'127.0.0.1'
  5626. 'root'@'127.0.0.1'
  5627. 'root'@'127.0.0.1'
  5628. 'root'@'127.0.0.1'
  5629. 'root'@'127.0.0.1'
  5630. 'root'@'127.0.0.1'
  5631. 'root'@'127.0.0.1'
  5632. 'root'@'127.0.0.1'
  5633. 'root'@'127.0.0.1'
  5634. 'root'@'127.0.0.1'
  5635. 'root'@'127.0.0.1'
  5636. 'root'@'127.0.0.1'
  5637. 'root'@'127.0.0.1'
  5638. 'root'@'127.0.0.1'
  5639. ''@'localhost'
  5640. 'root'@'<SERVER_NAME>'
  5641. 'root'@'<SERVER_NAME>'
  5642. 'root'@'<SERVER_NAME>'
  5643. 'root'@'<SERVER_NAME>'
  5644. 'root'@'<SERVER_NAME>'
  5645. 'root'@'<SERVER_NAME>'
  5646. 'root'@'<SERVER_NAME>'
  5647. 'root'@'<SERVER_NAME>'
  5648. 'root'@'<SERVER_NAME>'
  5649. 'root'@'<SERVER_NAME>'
  5650. 'root'@'<SERVER_NAME>'
  5651. 'root'@'<SERVER_NAME>'
  5652. 'root'@'<SERVER_NAME>'
  5653. 'root'@'<SERVER_NAME>'
  5654. 'root'@'<SERVER_NAME>'
  5655. 'root'@'<SERVER_NAME>'
  5656. 'root'@'<SERVER_NAME>'
  5657. 'root'@'<SERVER_NAME>'
  5658. 'root'@'<SERVER_NAME>'
  5659. 'root'@'<SERVER_NAME>'
  5660. 'root'@'<SERVER_NAME>'
  5661. 'root'@'<SERVER_NAME>'
  5662. 'root'@'<SERVER_NAME>'
  5663. 'root'@'<SERVER_NAME>'
  5664. 'root'@'<SERVER_NAME>'
  5665. 'root'@'<SERVER_NAME>'
  5666. 'root'@'<SERVER_NAME>'
  5667. ''@'<SERVER_NAME>'
  5668. select id , character_set_name from collations order by id asc limit 10;
  5669. id character_set_name
  5670. 1 big5
  5671. 2 latin2
  5672. 3 dec8
  5673. 4 cp850
  5674. 5 latin1
  5675. 6 hp8
  5676. 7 koi8r
  5677. 8 latin1
  5678. 9 latin2
  5679. 10 swe7
  5680. select table_catalog from columns
  5681. union all
  5682. select table_catalog from tables limit 0,5;
  5683. table_catalog
  5684. NULL
  5685. NULL
  5686. NULL
  5687. NULL
  5688. NULL
  5689. select table_catalog from columns
  5690. union
  5691. select table_catalog from tables limit 0,5;
  5692. table_catalog
  5693. NULL
  5694. select all schema_name from information_schema.schemata;
  5695. schema_name
  5696. information_schema
  5697. db_datadict
  5698. mysql
  5699. test
  5700. test1
  5701. test4
  5702. SELECT *
  5703. INTO OUTFILE '../tmp/out.ndb.file'
  5704. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  5705. LINES TERMINATED BY '\n'
  5706. FROM schemata LIMIT 0, 5;
  5707. USE test;
  5708. SELECT *
  5709. INTO OUTFILE '../tmp/out.ndb.db.file'
  5710. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  5711. LINES TERMINATED BY '\n'
  5712. FROM information_schema.schemata
  5713. WHERE schema_name LIKE 'db_%';
  5714. CREATE USER user_3212@localhost;
  5715. GRANT ALL ON db_datadict.* TO user_3212@localhost;
  5716. connect(localhost,user_3212,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  5717. user_3212@localhost db_datadict
  5718. SELECT *
  5719. INTO OUTFILE '../tmp/out.ndb.user.file'
  5720. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  5721. LINES TERMINATED BY '\n'
  5722. FROM schemata LIMIT 0, 5;
  5723. ERROR 28000: Access denied for user 'user_3212'@'localhost' (using password: NO)
  5724. SELECT *
  5725. FROM schemata LIMIT 0, 5;
  5726. ERROR 42S02: Table 'db_datadict.schemata' doesn't exist
  5727. SELECT *
  5728. INTO OUTFILE '../tmp/out.ndb.user.db.file'
  5729. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  5730. LINES TERMINATED BY '\n'
  5731. FROM information_schema.schemata
  5732. WHERE schema_name LIKE 'db_%';
  5733. SELECT *
  5734. FROM information_schema.schemata
  5735. WHERE schema_name LIKE 'db_%';
  5736. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  5737. NULL db_datadict latin1 latin1_swedish_ci NULL
  5738. USE information_schema;
  5739. SELECT *
  5740. INTO OUTFILE '../tmp/out.ndb.user_2.file'
  5741. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  5742. LINES TERMINATED BY '\n'
  5743. FROM schemata LIMIT 0, 5;
  5744. SELECT *
  5745. FROM schemata LIMIT 0, 5;
  5746. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  5747. NULL information_schema utf8 utf8_general_ci NULL
  5748. NULL db_datadict latin1 latin1_swedish_ci NULL
  5749. NULL test latin1 latin1_swedish_ci NULL
  5750. SELECT *
  5751. INTO OUTFILE '../tmp/out.ndb.user_2.db.file'
  5752. FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  5753. LINES TERMINATED BY '\n'
  5754. FROM information_schema.schemata
  5755. WHERE schema_name LIKE 'db_%';
  5756. SELECT *
  5757. FROM information_schema.schemata
  5758. WHERE schema_name LIKE 'db_%';
  5759. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  5760. NULL db_datadict latin1 latin1_swedish_ci NULL
  5761. USE information_schema;
  5762. root@localhost information_schema
  5763. use db_datadict;
  5764. select table_catalog "1", table_schema "2", table_name "3", column_name "4"
  5765. from information_schema.columns
  5766. union
  5767. select table_catalog, table_schema, table_name,
  5768. concat( "*** type = ", table_type )
  5769. from information_schema.tables
  5770. order by 3, 4 desc, 1, 2 limit 30;
  5771. 1 2 3 4
  5772. NULL information_schema CHARACTER_SETS MAXLEN
  5773. NULL information_schema CHARACTER_SETS DESCRIPTION
  5774. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME
  5775. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME
  5776. NULL information_schema CHARACTER_SETS *** type = SYSTEM VIEW
  5777. NULL information_schema COLLATIONS SORTLEN
  5778. NULL information_schema COLLATIONS IS_DEFAULT
  5779. NULL information_schema COLLATIONS IS_COMPILED
  5780. NULL information_schema COLLATIONS ID
  5781. NULL information_schema COLLATIONS COLLATION_NAME
  5782. NULL information_schema COLLATIONS CHARACTER_SET_NAME
  5783. NULL information_schema COLLATIONS *** type = SYSTEM VIEW
  5784. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME
  5785. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME
  5786. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY *** type = SYSTEM VIEW
  5787. NULL information_schema COLUMNS TABLE_SCHEMA
  5788. NULL information_schema COLUMNS TABLE_NAME
  5789. NULL information_schema COLUMNS TABLE_CATALOG
  5790. NULL information_schema COLUMNS PRIVILEGES
  5791. NULL information_schema COLUMNS ORDINAL_POSITION
  5792. NULL information_schema COLUMNS NUMERIC_SCALE
  5793. NULL information_schema COLUMNS NUMERIC_PRECISION
  5794. NULL information_schema COLUMNS IS_NULLABLE
  5795. NULL information_schema COLUMNS EXTRA
  5796. NULL information_schema COLUMNS DATA_TYPE
  5797. NULL information_schema COLUMNS COLUMN_TYPE
  5798. NULL information_schema COLUMNS COLUMN_NAME
  5799. NULL information_schema COLUMNS COLUMN_KEY
  5800. NULL information_schema COLUMNS COLUMN_DEFAULT
  5801. NULL information_schema COLUMNS COLUMN_COMMENT
  5802. use information_schema;
  5803. select table_catalog "1", table_schema "2", table_name "3", column_name "4"
  5804. from columns
  5805. union
  5806. select table_catalog, table_schema, table_name,
  5807. concat( "*** type = ", table_type )
  5808. from tables
  5809. order by 3, 4 desc, 1, 2 limit 30;
  5810. 1 2 3 4
  5811. NULL information_schema CHARACTER_SETS MAXLEN
  5812. NULL information_schema CHARACTER_SETS DESCRIPTION
  5813. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME
  5814. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME
  5815. NULL information_schema CHARACTER_SETS *** type = SYSTEM VIEW
  5816. NULL information_schema COLLATIONS SORTLEN
  5817. NULL information_schema COLLATIONS IS_DEFAULT
  5818. NULL information_schema COLLATIONS IS_COMPILED
  5819. NULL information_schema COLLATIONS ID
  5820. NULL information_schema COLLATIONS COLLATION_NAME
  5821. NULL information_schema COLLATIONS CHARACTER_SET_NAME
  5822. NULL information_schema COLLATIONS *** type = SYSTEM VIEW
  5823. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME
  5824. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME
  5825. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY *** type = SYSTEM VIEW
  5826. NULL information_schema COLUMNS TABLE_SCHEMA
  5827. NULL information_schema COLUMNS TABLE_NAME
  5828. NULL information_schema COLUMNS TABLE_CATALOG
  5829. NULL information_schema COLUMNS PRIVILEGES
  5830. NULL information_schema COLUMNS ORDINAL_POSITION
  5831. NULL information_schema COLUMNS NUMERIC_SCALE
  5832. NULL information_schema COLUMNS NUMERIC_PRECISION
  5833. NULL information_schema COLUMNS IS_NULLABLE
  5834. NULL information_schema COLUMNS EXTRA
  5835. NULL information_schema COLUMNS DATA_TYPE
  5836. NULL information_schema COLUMNS COLUMN_TYPE
  5837. NULL information_schema COLUMNS COLUMN_NAME
  5838. NULL information_schema COLUMNS COLUMN_KEY
  5839. NULL information_schema COLUMNS COLUMN_DEFAULT
  5840. NULL information_schema COLUMNS COLUMN_COMMENT
  5841. DROP USER user_3212@localhost;
  5842. Testcase 3.2.1.3:
  5843. --------------------------------------------------------------------------------
  5844. insert into schemata (catalog_name, schema_name, default_character_set_name, sql_path)
  5845. values ('null', 'db1', 'latin1', 'null');
  5846. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5847. insert into tables (table_schema, table_name)values('db_datadict', 't1');
  5848. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5849. insert into columns (table_name, column_name)values('t3', 'f2');
  5850. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5851. insert into character_sets (character_set_name, default_collate_name, description, maxlen)
  5852. values('cp1251', 'cp1251_general_ci', 'windows cyrillic', 1);
  5853. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5854. insert into collations ( collation_name, character_set_name, id, is_default, is_compiled, sortlen)
  5855. values ('cp1251_bin', 'cp1251', 50, '', '', 0);
  5856. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5857. insert into collation_character_set_applicability (collation_name, character_set_name)
  5858. values (' big5_chinese_ci', 'big6');
  5859. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5860. insert into routines(routine_name, routine_type ) values ('p2', 'procedure');
  5861. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5862. insert into statistics(table_schema, table_name, index_name)
  5863. values ('mysql', 'db', 'primary');
  5864. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5865. insert into views(table_schema, table_name) values ('db2', 'v2');
  5866. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5867. insert into user_privileges (privilege_type, is_grantable) values ('select', 'yes');
  5868. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5869. insert into schema_privileges (table_schema, privilege_type) values('db2', 'insert');
  5870. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5871. insert into table_privileges (able_schema, table_name, privilege_type)
  5872. values('db2', 'v2', 'insert');
  5873. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5874. insert into column_privileges (table_name, column_name, privilege_type)
  5875. values ('t3', 'f3', 'insert');
  5876. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5877. insert into table_constraints ( constraint_schema, constraint_name, table_schema)
  5878. values ('primary', 'mysql', 'user');
  5879. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5880. insert into key_column_usage (constraint_schema, constraint_name, table_name)
  5881. values ('mysql', 'primary', 'db');
  5882. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5883. drop procedure if exists db_datadict.sp_4_1_3;
  5884. create procedure db_datadict.sp_4_1_3()
  5885. begin
  5886. insert into information_schema.schema_privileges (table_schema,privilege_type)
  5887. values('db2','insert');
  5888. end//
  5889. SELECT table_schema, privilege_type FROM information_schema.schema_privileges
  5890. WHERE table_schema LIKE 'db%';
  5891. table_schema privilege_type
  5892. call db_datadict.sp_4_1_3();
  5893. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5894. SELECT table_schema, privilege_type FROM information_schema.schema_privileges
  5895. WHERE table_schema LIKE 'db%';
  5896. table_schema privilege_type
  5897. drop procedure db_datadict.sp_4_1_3;
  5898. CREATE USER user_4_1_3@localhost;
  5899. connect(localhost,user_4_1_3,,test,MYSQL_PORT,MYSQL_SOCK);
  5900. user_4_1_3@localhost test
  5901. use information_schema;
  5902. insert into table_constraints ( constraint_schema, constraint_name, table_schema)
  5903. values ('primary', 'mysql', 'user');
  5904. ERROR 42000: Access denied for user 'user_4_1_3'@'localhost' to database 'information_schema'
  5905. root@localhost information_schema
  5906. Testcase 3.2.1.4:
  5907. --------------------------------------------------------------------------------
  5908. use information_schema;
  5909. root@localhost information_schema
  5910. update schemata set schema_name = 'db5' where default_character_set_name = 'latin1';
  5911. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5912. update tables set table_schema = 'db_datadict1' where table_name = 't1';
  5913. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5914. update columns set table_name = 't4' where column_name = 'f2';
  5915. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5916. update character_sets set character_set_name = 'cp1252' where maxlen = 1;
  5917. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5918. update collations set collation_name = 'cp1253_bin'
  5919. where character_set_name = 'cp1251';
  5920. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5921. update collation_character_set_applicability set collation_name = 'big6_chinese_ci'
  5922. where character_set_name = 'big6';
  5923. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5924. update routines set routine_name = p2 where routine_body = 'sql';
  5925. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5926. update statistics set table_schema = 'mysql1' where table_name = 'db';
  5927. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5928. update views set table_schema = 'db3' where table_name = 'v1';
  5929. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5930. update user_privileges set privilege_type = 'insert' where is_grantable = 'yes';
  5931. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5932. update schema_privileges set table_schema = 'db2' where privilege_type = 'select';
  5933. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5934. update table_privileges set table_name = 'v3' where privilege_type = 'select';
  5935. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5936. update column_privileges set table_name = 't4' where column_name = 'f3';
  5937. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5938. update table_constraints set constraint_schema = 'primary'
  5939. where table_schema = 'proc';
  5940. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5941. update key_column_usage set table_name = 'db1' where constraint_name = 'primary';
  5942. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5943. drop procedure if exists db_datadict.sp_4_1_4;
  5944. create procedure db_datadict.sp_4_1_4()
  5945. begin
  5946. update information_schema.routines set routine_name = 'p2'
  5947. where routine_name = 'sp_4_1_4';
  5948. end//
  5949. select * from information_schema.routines;
  5950. 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
  5951. sp_4_1_4 NULL db_datadict sp_4_1_4 PROCEDURE NULL SQL begin
  5952. update information_schema.routines set routine_name = 'p2'
  5953. where routine_name = 'sp_4_1_4';
  5954. end NULL NULL SQL NO CONTAINS SQL NULL DEFINER YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss root@localhost
  5955. call db_datadict.sp_4_1_4();
  5956. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5957. select * from information_schema.routines;
  5958. 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
  5959. sp_4_1_4 NULL db_datadict sp_4_1_4 PROCEDURE NULL SQL begin
  5960. update information_schema.routines set routine_name = 'p2'
  5961. where routine_name = 'sp_4_1_4';
  5962. end NULL NULL SQL NO CONTAINS SQL NULL DEFINER YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss root@localhost
  5963. drop procedure db_datadict.sp_4_1_4;
  5964. use information_schema;
  5965. user_4_1_3@localhost information_schema
  5966. update user_privileges set privilege_type = 'insert' where is_grantable = 'yes';
  5967. ERROR 42000: Access denied for user 'user_4_1_3'@'localhost' to database 'information_schema'
  5968. root@localhost information_schema
  5969. Testcase 3.2.1.5:
  5970. --------------------------------------------------------------------------------
  5971. use information_schema;
  5972. root: DELETE FROM any table in IS
  5973. ---------------------------------
  5974. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  5975. ---------------------------------------------------------------------------
  5976. DELETE FROM schemata ;
  5977. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5978. DELETE FROM tables ;
  5979. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5980. DELETE FROM columns ;
  5981. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5982. DELETE FROM character_sets ;
  5983. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5984. DELETE FROM collations ;
  5985. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5986. DELETE FROM collation_character_set_applicability ;
  5987. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5988. DELETE FROM routines ;
  5989. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5990. DELETE FROM statistics ;
  5991. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5992. DELETE FROM views ;
  5993. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5994. DELETE FROM user_privileges ;
  5995. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5996. DELETE FROM schema_privileges ;
  5997. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  5998. DELETE FROM table_privileges ;
  5999. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6000. DELETE FROM column_privileges ;
  6001. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6002. DELETE FROM table_constraints ;
  6003. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6004. DELETE FROM key_column_usage ;
  6005. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6006. DELETE FROM triggers ;
  6007. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6008. delete from schemata where schema_name = 'mysql';
  6009. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6010. delete from tables where table_name = 'abc';
  6011. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6012. delete from columns;
  6013. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6014. delete from character_sets;
  6015. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6016. delete from collations;
  6017. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6018. delete from collation_character_set_applicability;
  6019. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6020. delete from routines;
  6021. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6022. delete from statistics;
  6023. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6024. delete from views;
  6025. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6026. delete from user_privileges;
  6027. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6028. delete from schema_privileges;
  6029. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6030. delete from table_privileges;
  6031. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6032. delete from column_privileges;
  6033. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6034. delete from table_constraints;
  6035. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6036. delete from key_column_usage;
  6037. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6038. drop procedure if exists db_datadict.sp_4_1_5;
  6039. create procedure db_datadict.sp_4_1_5()
  6040. begin
  6041. delete from information_schema.column_privileges;
  6042. end//
  6043. call db_datadict.sp_4_1_5();
  6044. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6045. drop procedure db_datadict.sp_4_1_5;
  6046. use information_schema;
  6047. user_4_1_3@localhost information_schema
  6048. delete from tables where table_name = 'abc';
  6049. ERROR 42000: Access denied for user 'user_4_1_3'@'localhost' to database 'information_schema'
  6050. root@localhost information_schema
  6051. DROP USER user_4_1_3@localhost;
  6052. Testcase 3.2.1.6:
  6053. --------------------------------------------------------------------------------
  6054. use information_schema;
  6055. root: create a table with a name of an IS table directly in IS
  6056. --------------------------------------------------------------
  6057. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6058. ---------------------------------------------------------------------------
  6059. CREATE TABLE schemata ( c1 INT );
  6060. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6061. CREATE TABLE tables ( c1 INT );
  6062. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6063. CREATE TABLE columns ( c1 INT );
  6064. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6065. CREATE TABLE character_sets ( c1 INT );
  6066. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6067. CREATE TABLE collations ( c1 INT );
  6068. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6069. CREATE TABLE collation_character_set_applicability ( c1 INT );
  6070. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6071. CREATE TABLE routines ( c1 INT );
  6072. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6073. CREATE TABLE statistics ( c1 INT );
  6074. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6075. CREATE TABLE views ( c1 INT );
  6076. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6077. CREATE TABLE user_privileges ( c1 INT );
  6078. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6079. CREATE TABLE schema_privileges ( c1 INT );
  6080. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6081. CREATE TABLE table_privileges ( c1 INT );
  6082. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6083. CREATE TABLE column_privileges ( c1 INT );
  6084. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6085. CREATE TABLE table_constraints ( c1 INT );
  6086. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6087. CREATE TABLE key_column_usage ( c1 INT );
  6088. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6089. CREATE TABLE triggers ( c1 INT );
  6090. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6091. create table t1 (f1 int, f2 int, f3 int);
  6092. ERROR 42S02: Unknown table 't1' in information_schema
  6093. use db_datadict;
  6094. root: create a table with a name of an IS table from other db
  6095. -------------------------------------------------------------
  6096. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6097. ---------------------------------------------------------------------------
  6098. CREATE TABLE information_schema. schemata ( c1 INT );
  6099. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6100. CREATE TABLE information_schema. tables ( c1 INT );
  6101. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6102. CREATE TABLE information_schema. columns ( c1 INT );
  6103. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6104. CREATE TABLE information_schema. character_sets ( c1 INT );
  6105. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6106. CREATE TABLE information_schema. collations ( c1 INT );
  6107. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6108. CREATE TABLE information_schema. collation_character_set_applicability ( c1 INT );
  6109. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6110. CREATE TABLE information_schema. routines ( c1 INT );
  6111. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6112. CREATE TABLE information_schema. statistics ( c1 INT );
  6113. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6114. CREATE TABLE information_schema. views ( c1 INT );
  6115. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6116. CREATE TABLE information_schema. user_privileges ( c1 INT );
  6117. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6118. CREATE TABLE information_schema. schema_privileges ( c1 INT );
  6119. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6120. CREATE TABLE information_schema. table_privileges ( c1 INT );
  6121. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6122. CREATE TABLE information_schema. column_privileges ( c1 INT );
  6123. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6124. CREATE TABLE information_schema. table_constraints ( c1 INT );
  6125. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6126. CREATE TABLE information_schema. key_column_usage ( c1 INT );
  6127. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6128. CREATE TABLE information_schema. triggers ( c1 INT );
  6129. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6130. create table information_schema.t1 (f1 int, f2 int, f3 int);
  6131. ERROR 42S02: Unknown table 't1' in information_schema
  6132. CREATE USER user_4_1_6@localhost;
  6133. grant all on *.* to user_4_1_6@localhost;
  6134. FLUSH PRIVILEGES;
  6135. SHOW GRANTS FOR user_4_1_6@localhost;
  6136. Grants for user_4_1_6@localhost
  6137. GRANT ALL PRIVILEGES ON *.* TO 'user_4_1_6'@'localhost'
  6138. connect(localhost,user_4_1_6,,information_schema,MYSQL_PORT,MYSQL_SOCK);
  6139. user_4_1_6@localhost information_schema
  6140. use information_schema;
  6141. user: create a table with a name of an IS table directly in IS
  6142. --------------------------------------------------------------
  6143. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6144. ---------------------------------------------------------------------------
  6145. CREATE TABLE schemata ( c1 INT );
  6146. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6147. CREATE TABLE tables ( c1 INT );
  6148. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6149. CREATE TABLE columns ( c1 INT );
  6150. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6151. CREATE TABLE character_sets ( c1 INT );
  6152. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6153. CREATE TABLE collations ( c1 INT );
  6154. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6155. CREATE TABLE collation_character_set_applicability ( c1 INT );
  6156. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6157. CREATE TABLE routines ( c1 INT );
  6158. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6159. CREATE TABLE statistics ( c1 INT );
  6160. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6161. CREATE TABLE views ( c1 INT );
  6162. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6163. CREATE TABLE user_privileges ( c1 INT );
  6164. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6165. CREATE TABLE schema_privileges ( c1 INT );
  6166. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6167. CREATE TABLE table_privileges ( c1 INT );
  6168. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6169. CREATE TABLE column_privileges ( c1 INT );
  6170. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6171. CREATE TABLE table_constraints ( c1 INT );
  6172. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6173. CREATE TABLE key_column_usage ( c1 INT );
  6174. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6175. CREATE TABLE triggers ( c1 INT );
  6176. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6177. create table t1 (f1 int, f2 int, f3 int);
  6178. ERROR 42S02: Unknown table 't1' in information_schema
  6179. use test;
  6180. user: create a table with a name of an IS table from other db
  6181. -------------------------------------------------------------
  6182. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6183. ---------------------------------------------------------------------------
  6184. CREATE TABLE information_schema. schemata ( c1 INT );
  6185. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6186. CREATE TABLE information_schema. tables ( c1 INT );
  6187. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6188. CREATE TABLE information_schema. columns ( c1 INT );
  6189. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6190. CREATE TABLE information_schema. character_sets ( c1 INT );
  6191. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6192. CREATE TABLE information_schema. collations ( c1 INT );
  6193. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6194. CREATE TABLE information_schema. collation_character_set_applicability ( c1 INT );
  6195. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6196. CREATE TABLE information_schema. routines ( c1 INT );
  6197. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6198. CREATE TABLE information_schema. statistics ( c1 INT );
  6199. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6200. CREATE TABLE information_schema. views ( c1 INT );
  6201. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6202. CREATE TABLE information_schema. user_privileges ( c1 INT );
  6203. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6204. CREATE TABLE information_schema. schema_privileges ( c1 INT );
  6205. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6206. CREATE TABLE information_schema. table_privileges ( c1 INT );
  6207. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6208. CREATE TABLE information_schema. column_privileges ( c1 INT );
  6209. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6210. CREATE TABLE information_schema. table_constraints ( c1 INT );
  6211. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6212. CREATE TABLE information_schema. key_column_usage ( c1 INT );
  6213. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6214. CREATE TABLE information_schema. triggers ( c1 INT );
  6215. ERROR 42000: Access denied for user 'user_4_1_6'@'localhost' to database 'information_schema'
  6216. create table information_schema.t1 (f1 int, f2 int, f3 int);
  6217. ERROR 42S02: Unknown table 't1' in information_schema
  6218. root@localhost db_datadict
  6219. DROP USER user_4_1_6@localhost;
  6220. Testcase 3.2.1.7:
  6221. --------------------------------------------------------------------------------
  6222. use information_schema;
  6223. root: create a view with a name of an IS table directly in IS
  6224. -------------------------------------------------------------
  6225. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6226. ---------------------------------------------------------------------------
  6227. CREATE VIEW schemata AS SELECT * FROM mysql.time_zone;
  6228. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6229. CREATE VIEW tables AS SELECT * FROM mysql.time_zone;
  6230. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6231. CREATE VIEW columns AS SELECT * FROM mysql.time_zone;
  6232. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6233. CREATE VIEW character_sets AS SELECT * FROM mysql.time_zone;
  6234. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6235. CREATE VIEW collations AS SELECT * FROM mysql.time_zone;
  6236. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6237. CREATE VIEW collation_character_set_applicability AS SELECT * FROM mysql.time_zone;
  6238. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6239. CREATE VIEW routines AS SELECT * FROM mysql.time_zone;
  6240. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6241. CREATE VIEW statistics AS SELECT * FROM mysql.time_zone;
  6242. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6243. CREATE VIEW views AS SELECT * FROM mysql.time_zone;
  6244. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6245. CREATE VIEW user_privileges AS SELECT * FROM mysql.time_zone;
  6246. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6247. CREATE VIEW schema_privileges AS SELECT * FROM mysql.time_zone;
  6248. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6249. CREATE VIEW table_privileges AS SELECT * FROM mysql.time_zone;
  6250. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6251. CREATE VIEW column_privileges AS SELECT * FROM mysql.time_zone;
  6252. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6253. CREATE VIEW table_constraints AS SELECT * FROM mysql.time_zone;
  6254. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6255. CREATE VIEW key_column_usage AS SELECT * FROM mysql.time_zone;
  6256. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6257. CREATE VIEW triggers AS SELECT * FROM mysql.time_zone;
  6258. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6259. CREATE VIEW v1 AS SELECT * FROM information_schema.schemata;
  6260. ERROR 42S02: Unknown table 'v1' in information_schema
  6261. USE db_datadict;
  6262. root: create a view with a name of an IS table from other db
  6263. ------------------------------------------------------------
  6264. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6265. ---------------------------------------------------------------------------
  6266. CREATE VIEW information_schema. schemata AS SELECT * FROM mysql.time_zone;
  6267. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6268. CREATE VIEW information_schema. tables AS SELECT * FROM mysql.time_zone;
  6269. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6270. CREATE VIEW information_schema. columns AS SELECT * FROM mysql.time_zone;
  6271. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6272. CREATE VIEW information_schema. character_sets AS SELECT * FROM mysql.time_zone;
  6273. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6274. CREATE VIEW information_schema. collations AS SELECT * FROM mysql.time_zone;
  6275. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6276. CREATE VIEW information_schema. collation_character_set_applicability AS SELECT * FROM mysql.time_zone;
  6277. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6278. CREATE VIEW information_schema. routines AS SELECT * FROM mysql.time_zone;
  6279. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6280. CREATE VIEW information_schema. statistics AS SELECT * FROM mysql.time_zone;
  6281. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6282. CREATE VIEW information_schema. views AS SELECT * FROM mysql.time_zone;
  6283. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6284. CREATE VIEW information_schema. user_privileges AS SELECT * FROM mysql.time_zone;
  6285. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6286. CREATE VIEW information_schema. schema_privileges AS SELECT * FROM mysql.time_zone;
  6287. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6288. CREATE VIEW information_schema. table_privileges AS SELECT * FROM mysql.time_zone;
  6289. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6290. CREATE VIEW information_schema. column_privileges AS SELECT * FROM mysql.time_zone;
  6291. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6292. CREATE VIEW information_schema. table_constraints AS SELECT * FROM mysql.time_zone;
  6293. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6294. CREATE VIEW information_schema. key_column_usage AS SELECT * FROM mysql.time_zone;
  6295. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6296. CREATE VIEW information_schema. triggers AS SELECT * FROM mysql.time_zone;
  6297. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6298. CREATE VIEW v1 AS SELECT * FROM information_schema.columns;
  6299. SELECT * FROM v1 LIMIT 5;
  6300. 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
  6301. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  6302. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  6303. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  6304. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  6305. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  6306. CREATE USER user_4_1_7@localhost;
  6307. GRANT ALL ON db_datadict.* TO user_4_1_7@localhost;
  6308. GRANT ALL ON information_schema.* TO user_4_1_7@localhost;
  6309. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6310. FLUSH PRIVILEGES;
  6311. connect(localhost,user_4_1_7,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  6312. use information_schema;
  6313. user_4_1_7@localhost information_schema
  6314. user: create a view with a name of an IS table directly in IS
  6315. -------------------------------------------------------------
  6316. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6317. ---------------------------------------------------------------------------
  6318. CREATE VIEW schemata AS SELECT * FROM db_datadict.v1;
  6319. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6320. CREATE VIEW tables AS SELECT * FROM db_datadict.v1;
  6321. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6322. CREATE VIEW columns AS SELECT * FROM db_datadict.v1;
  6323. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6324. CREATE VIEW character_sets AS SELECT * FROM db_datadict.v1;
  6325. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6326. CREATE VIEW collations AS SELECT * FROM db_datadict.v1;
  6327. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6328. CREATE VIEW collation_character_set_applicability AS SELECT * FROM db_datadict.v1;
  6329. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6330. CREATE VIEW routines AS SELECT * FROM db_datadict.v1;
  6331. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6332. CREATE VIEW statistics AS SELECT * FROM db_datadict.v1;
  6333. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6334. CREATE VIEW views AS SELECT * FROM db_datadict.v1;
  6335. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6336. CREATE VIEW user_privileges AS SELECT * FROM db_datadict.v1;
  6337. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6338. CREATE VIEW schema_privileges AS SELECT * FROM db_datadict.v1;
  6339. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6340. CREATE VIEW table_privileges AS SELECT * FROM db_datadict.v1;
  6341. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6342. CREATE VIEW column_privileges AS SELECT * FROM db_datadict.v1;
  6343. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6344. CREATE VIEW table_constraints AS SELECT * FROM db_datadict.v1;
  6345. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6346. CREATE VIEW key_column_usage AS SELECT * FROM db_datadict.v1;
  6347. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6348. CREATE VIEW triggers AS SELECT * FROM db_datadict.v1;
  6349. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6350. create view v1 as select * from table_privileges;
  6351. ERROR 42S02: Unknown table 'v1' in information_schema
  6352. use db_datadict;
  6353. user: create a view with a name of an IS table from other db
  6354. ------------------------------------------------------------
  6355. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6356. ---------------------------------------------------------------------------
  6357. CREATE VIEW information_schema. schemata AS SELECT * FROM db_datadict.v1;
  6358. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6359. CREATE VIEW information_schema. tables AS SELECT * FROM db_datadict.v1;
  6360. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6361. CREATE VIEW information_schema. columns AS SELECT * FROM db_datadict.v1;
  6362. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6363. CREATE VIEW information_schema. character_sets AS SELECT * FROM db_datadict.v1;
  6364. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6365. CREATE VIEW information_schema. collations AS SELECT * FROM db_datadict.v1;
  6366. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6367. CREATE VIEW information_schema. collation_character_set_applicability AS SELECT * FROM db_datadict.v1;
  6368. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6369. CREATE VIEW information_schema. routines AS SELECT * FROM db_datadict.v1;
  6370. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6371. CREATE VIEW information_schema. statistics AS SELECT * FROM db_datadict.v1;
  6372. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6373. CREATE VIEW information_schema. views AS SELECT * FROM db_datadict.v1;
  6374. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6375. CREATE VIEW information_schema. user_privileges AS SELECT * FROM db_datadict.v1;
  6376. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6377. CREATE VIEW information_schema. schema_privileges AS SELECT * FROM db_datadict.v1;
  6378. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6379. CREATE VIEW information_schema. table_privileges AS SELECT * FROM db_datadict.v1;
  6380. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6381. CREATE VIEW information_schema. column_privileges AS SELECT * FROM db_datadict.v1;
  6382. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6383. CREATE VIEW information_schema. table_constraints AS SELECT * FROM db_datadict.v1;
  6384. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6385. CREATE VIEW information_schema. key_column_usage AS SELECT * FROM db_datadict.v1;
  6386. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6387. CREATE VIEW information_schema. triggers AS SELECT * FROM db_datadict.v1;
  6388. ERROR 42000: Access denied for user 'user_4_1_7'@'localhost' to database 'information_schema'
  6389. root@localhost db_datadict
  6390. DROP USER user_4_1_7@localhost;
  6391. DROP VIEW db_datadict.v1;
  6392. Testcase 3.2.1.8:
  6393. --------------------------------------------------------------------------------
  6394. use information_schema;
  6395. create index i1 on schemata(schema_name);
  6396. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6397. create index i2 on tables(table_schema);
  6398. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6399. create index i3 on columns(table_name);
  6400. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6401. create index i4 on character_sets(character_set_name);
  6402. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6403. create index i5 on collations( collation_name);
  6404. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6405. create index i6 on collation_character_set_applicability(collation_name);
  6406. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6407. create index i7 on routines(routine_name);
  6408. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6409. create index i8 on statistics(table_schema);
  6410. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6411. create index i9 on views(table_schema);
  6412. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6413. create index i10 on user_privileges(privilege_type);
  6414. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6415. create index i11 on schema_privileges(table_schema);
  6416. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6417. create index i12 on table_privileges(able_schema);
  6418. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6419. create index i13 on column_privileges(table_name);
  6420. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6421. create index i14 on table_constraints(constraint_schema);
  6422. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6423. create index i15 on key_column_usage(constraint_schema);
  6424. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6425. create index i16 on triggers(trigger_name);
  6426. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6427. use db_datadict;
  6428. create index i15 on information_schema.key_column_usage(constraint_schema);
  6429. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6430. use information_schema;
  6431. CREATE USER user_4_1_8@localhost;
  6432. grant select, index on *.* to user_4_1_8@localhost;
  6433. FLUSH PRIVILEGES;
  6434. connect(localhost,user_4_1_8,,test,MYSQL_PORT,MYSQL_SOCK);
  6435. user_4_1_8@localhost test
  6436. use information_schema;
  6437. create index i1 on schemata(schema_name);
  6438. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6439. create index i2 on tables(table_schema);
  6440. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6441. create index i3 on columns(table_name);
  6442. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6443. create index i4 on character_sets(character_set_name);
  6444. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6445. create index i5 on collations( collation_name);
  6446. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6447. create index i6 on collation_character_set_applicability(collation_name);
  6448. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6449. create index i7 on routines(routine_name);
  6450. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6451. create index i8 on statistics(table_schema);
  6452. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6453. create index i9 on views(table_schema);
  6454. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6455. create index i10 on user_privileges(privilege_type);
  6456. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6457. create index i11 on schema_privileges(table_schema);
  6458. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6459. create index i12 on table_privileges(able_schema);
  6460. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6461. create index i13 on column_privileges(table_name);
  6462. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6463. create index i14 on table_constraints(constraint_schema);
  6464. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6465. create index i15 on key_column_usage(constraint_schema);
  6466. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6467. create index i16 on triggers(trigger_name);
  6468. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6469. use db_datadict;
  6470. create index i15 on information_schema.key_column_usage(constraint_schema);
  6471. ERROR 42000: Access denied for user 'user_4_1_8'@'localhost' to database 'information_schema'
  6472. root@localhost information_schema
  6473. DROP USER user_4_1_8@localhost;
  6474. Testcase 3.2.1.9:
  6475. --------------------------------------------------------------------------------
  6476. root: alter a table from other db
  6477. ---------------------------------
  6478. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6479. ---------------------------------------------------------------------------
  6480. ALTER TABLE information_schema. schemata ADD f1 INT;
  6481. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6482. ALTER TABLE information_schema. tables ADD f1 INT;
  6483. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6484. ALTER TABLE information_schema. columns ADD f1 INT;
  6485. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6486. ALTER TABLE information_schema. character_sets ADD f1 INT;
  6487. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6488. ALTER TABLE information_schema. collations ADD f1 INT;
  6489. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6490. ALTER TABLE information_schema. collation_character_set_applicability ADD f1 INT;
  6491. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6492. ALTER TABLE information_schema. routines ADD f1 INT;
  6493. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6494. ALTER TABLE information_schema. statistics ADD f1 INT;
  6495. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6496. ALTER TABLE information_schema. views ADD f1 INT;
  6497. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6498. ALTER TABLE information_schema. user_privileges ADD f1 INT;
  6499. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6500. ALTER TABLE information_schema. schema_privileges ADD f1 INT;
  6501. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6502. ALTER TABLE information_schema. table_privileges ADD f1 INT;
  6503. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6504. ALTER TABLE information_schema. column_privileges ADD f1 INT;
  6505. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6506. ALTER TABLE information_schema. table_constraints ADD f1 INT;
  6507. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6508. ALTER TABLE information_schema. key_column_usage ADD f1 INT;
  6509. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6510. ALTER TABLE information_schema. triggers ADD f1 INT;
  6511. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6512. use information_schema;
  6513. root: alter a table from directly
  6514. ---------------------------------
  6515. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6516. ---------------------------------------------------------------------------
  6517. ALTER TABLE schemata ADD f1 INT;
  6518. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6519. ALTER TABLE tables ADD f1 INT;
  6520. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6521. ALTER TABLE columns ADD f1 INT;
  6522. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6523. ALTER TABLE character_sets ADD f1 INT;
  6524. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6525. ALTER TABLE collations ADD f1 INT;
  6526. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6527. ALTER TABLE collation_character_set_applicability ADD f1 INT;
  6528. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6529. ALTER TABLE routines ADD f1 INT;
  6530. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6531. ALTER TABLE statistics ADD f1 INT;
  6532. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6533. ALTER TABLE views ADD f1 INT;
  6534. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6535. ALTER TABLE user_privileges ADD f1 INT;
  6536. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6537. ALTER TABLE schema_privileges ADD f1 INT;
  6538. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6539. ALTER TABLE table_privileges ADD f1 INT;
  6540. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6541. ALTER TABLE column_privileges ADD f1 INT;
  6542. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6543. ALTER TABLE table_constraints ADD f1 INT;
  6544. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6545. ALTER TABLE key_column_usage ADD f1 INT;
  6546. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6547. ALTER TABLE triggers ADD f1 INT;
  6548. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6549. alter table schemata add f1 int;
  6550. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6551. alter table tables drop primary key;
  6552. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6553. alter table columns add f1 int;
  6554. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6555. alter table character_sets disable keys;
  6556. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6557. alter table collations enable keys;
  6558. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6559. alter table collation_character_set_applicability add f1 int;
  6560. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6561. alter table routines discard tablespace;
  6562. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6563. alter table statistics import tablespace;
  6564. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6565. alter table views drop column table_name;
  6566. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6567. alter table user_privileges drop index privilege_type;
  6568. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6569. alter table schema_privileges drop column is_grantable;
  6570. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6571. alter table table_privileges order by constraint_type;
  6572. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6573. alter table column_privileges rename to aaxyz;
  6574. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6575. alter table table_constraints order by schema_name;
  6576. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6577. alter table key_column_usage rename to information_schema.aabxyz;
  6578. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6579. alter table triggers rename to information_schema.sql_mode;
  6580. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6581. CREATE USER user_4_1_9@localhost;
  6582. grant select, alter, create, insert on *.* to user_4_1_9@localhost;
  6583. FLUSH PRIVILEGES;
  6584. connect(localhost,user_4_1_9,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  6585. user_4_1_9@localhost db_datadict
  6586. use db_datadict;
  6587. user: alter a table from other db
  6588. ---------------------------------
  6589. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6590. ---------------------------------------------------------------------------
  6591. ALTER TABLE information_schema. schemata ADD f1 INT;
  6592. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6593. ALTER TABLE information_schema. tables ADD f1 INT;
  6594. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6595. ALTER TABLE information_schema. columns ADD f1 INT;
  6596. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6597. ALTER TABLE information_schema. character_sets ADD f1 INT;
  6598. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6599. ALTER TABLE information_schema. collations ADD f1 INT;
  6600. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6601. ALTER TABLE information_schema. collation_character_set_applicability ADD f1 INT;
  6602. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6603. ALTER TABLE information_schema. routines ADD f1 INT;
  6604. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6605. ALTER TABLE information_schema. statistics ADD f1 INT;
  6606. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6607. ALTER TABLE information_schema. views ADD f1 INT;
  6608. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6609. ALTER TABLE information_schema. user_privileges ADD f1 INT;
  6610. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6611. ALTER TABLE information_schema. schema_privileges ADD f1 INT;
  6612. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6613. ALTER TABLE information_schema. table_privileges ADD f1 INT;
  6614. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6615. ALTER TABLE information_schema. column_privileges ADD f1 INT;
  6616. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6617. ALTER TABLE information_schema. table_constraints ADD f1 INT;
  6618. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6619. ALTER TABLE information_schema. key_column_usage ADD f1 INT;
  6620. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6621. ALTER TABLE information_schema. triggers ADD f1 INT;
  6622. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6623. use information_schema;
  6624. user: alter a table from directly
  6625. ---------------------------------
  6626. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6627. ---------------------------------------------------------------------------
  6628. ALTER TABLE schemata ADD f1 INT;
  6629. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6630. ALTER TABLE tables ADD f1 INT;
  6631. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6632. ALTER TABLE columns ADD f1 INT;
  6633. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6634. ALTER TABLE character_sets ADD f1 INT;
  6635. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6636. ALTER TABLE collations ADD f1 INT;
  6637. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6638. ALTER TABLE collation_character_set_applicability ADD f1 INT;
  6639. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6640. ALTER TABLE routines ADD f1 INT;
  6641. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6642. ALTER TABLE statistics ADD f1 INT;
  6643. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6644. ALTER TABLE views ADD f1 INT;
  6645. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6646. ALTER TABLE user_privileges ADD f1 INT;
  6647. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6648. ALTER TABLE schema_privileges ADD f1 INT;
  6649. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6650. ALTER TABLE table_privileges ADD f1 INT;
  6651. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6652. ALTER TABLE column_privileges ADD f1 INT;
  6653. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6654. ALTER TABLE table_constraints ADD f1 INT;
  6655. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6656. ALTER TABLE key_column_usage ADD f1 INT;
  6657. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6658. ALTER TABLE triggers ADD f1 INT;
  6659. ERROR 42000: Access denied for user 'user_4_1_9'@'localhost' to database 'information_schema'
  6660. root@localhost information_schema
  6661. DROP USER user_4_1_9@localhost;
  6662. Testcase 3.2.1.10:
  6663. --------------------------------------------------------------------------------
  6664. use information_schema;
  6665. root: drop a table from IS
  6666. --------------------------
  6667. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6668. ---------------------------------------------------------------------------
  6669. DROP TABLE schemata ;
  6670. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6671. DROP TABLE tables ;
  6672. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6673. DROP TABLE columns ;
  6674. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6675. DROP TABLE character_sets ;
  6676. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6677. DROP TABLE collations ;
  6678. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6679. DROP TABLE collation_character_set_applicability ;
  6680. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6681. DROP TABLE routines ;
  6682. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6683. DROP TABLE statistics ;
  6684. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6685. DROP TABLE views ;
  6686. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6687. DROP TABLE user_privileges ;
  6688. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6689. DROP TABLE schema_privileges ;
  6690. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6691. DROP TABLE table_privileges ;
  6692. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6693. DROP TABLE column_privileges ;
  6694. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6695. DROP TABLE table_constraints ;
  6696. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6697. DROP TABLE key_column_usage ;
  6698. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6699. DROP TABLE triggers ;
  6700. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6701. use db_datadict;
  6702. root: drop a table from other db
  6703. --------------------------------
  6704. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6705. ---------------------------------------------------------------------------
  6706. DROP TABLE information_schema. schemata ;
  6707. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6708. DROP TABLE information_schema. tables ;
  6709. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6710. DROP TABLE information_schema. columns ;
  6711. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6712. DROP TABLE information_schema. character_sets ;
  6713. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6714. DROP TABLE information_schema. collations ;
  6715. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6716. DROP TABLE information_schema. collation_character_set_applicability ;
  6717. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6718. DROP TABLE information_schema. routines ;
  6719. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6720. DROP TABLE information_schema. statistics ;
  6721. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6722. DROP TABLE information_schema. views ;
  6723. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6724. DROP TABLE information_schema. user_privileges ;
  6725. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6726. DROP TABLE information_schema. schema_privileges ;
  6727. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6728. DROP TABLE information_schema. table_privileges ;
  6729. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6730. DROP TABLE information_schema. column_privileges ;
  6731. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6732. DROP TABLE information_schema. table_constraints ;
  6733. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6734. DROP TABLE information_schema. key_column_usage ;
  6735. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6736. DROP TABLE information_schema. triggers ;
  6737. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6738. use information_schema;
  6739. CREATE USER user_4_1_10@localhost;
  6740. GRANT SELECT, DROP ON *.* TO user_4_1_10@localhost;
  6741. FLUSH PRIVILEGES;
  6742. connect(localhost,user_4_1_10,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  6743. use information_schema;
  6744. user_4_1_10@localhost information_schema
  6745. user: drop a table from IS
  6746. --------------------------
  6747. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6748. ---------------------------------------------------------------------------
  6749. DROP TABLE schemata ;
  6750. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6751. DROP TABLE tables ;
  6752. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6753. DROP TABLE columns ;
  6754. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6755. DROP TABLE character_sets ;
  6756. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6757. DROP TABLE collations ;
  6758. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6759. DROP TABLE collation_character_set_applicability ;
  6760. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6761. DROP TABLE routines ;
  6762. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6763. DROP TABLE statistics ;
  6764. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6765. DROP TABLE views ;
  6766. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6767. DROP TABLE user_privileges ;
  6768. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6769. DROP TABLE schema_privileges ;
  6770. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6771. DROP TABLE table_privileges ;
  6772. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6773. DROP TABLE column_privileges ;
  6774. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6775. DROP TABLE table_constraints ;
  6776. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6777. DROP TABLE key_column_usage ;
  6778. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6779. DROP TABLE triggers ;
  6780. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6781. use db_datadict;
  6782. user: drop a table from other db
  6783. --------------------------------
  6784. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6785. ---------------------------------------------------------------------------
  6786. DROP TABLE information_schema. schemata ;
  6787. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6788. DROP TABLE information_schema. tables ;
  6789. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6790. DROP TABLE information_schema. columns ;
  6791. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6792. DROP TABLE information_schema. character_sets ;
  6793. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6794. DROP TABLE information_schema. collations ;
  6795. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6796. DROP TABLE information_schema. collation_character_set_applicability ;
  6797. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6798. DROP TABLE information_schema. routines ;
  6799. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6800. DROP TABLE information_schema. statistics ;
  6801. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6802. DROP TABLE information_schema. views ;
  6803. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6804. DROP TABLE information_schema. user_privileges ;
  6805. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6806. DROP TABLE information_schema. schema_privileges ;
  6807. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6808. DROP TABLE information_schema. table_privileges ;
  6809. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6810. DROP TABLE information_schema. column_privileges ;
  6811. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6812. DROP TABLE information_schema. table_constraints ;
  6813. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6814. DROP TABLE information_schema. key_column_usage ;
  6815. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6816. DROP TABLE information_schema. triggers ;
  6817. ERROR 42000: Access denied for user 'user_4_1_10'@'localhost' to database 'information_schema'
  6818. root@localhost information_schema
  6819. DROP USER user_4_1_10@localhost;
  6820. CREATE USER user_4_1_11@localhost;
  6821. GRANT SUPER ON *.* TO user_4_1_11@localhost;
  6822. FLUSH PRIVILEGES;
  6823. connect(localhost,user_4_1_11,,test,MYSQL_PORT,MYSQL_SOCK);
  6824. use information_schema;
  6825. user_4_1_11@localhost information_schema
  6826. drop table routines;
  6827. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  6828. alter table collations enable keys;
  6829. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  6830. create index i5 on collations( collation_name );
  6831. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  6832. create view v1 as select * from schemata;
  6833. ERROR 42S02: Unknown table 'v1' in information_schema
  6834. delete from columns;
  6835. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  6836. update columns set table_name = 't4' where column_name = 'f2';
  6837. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  6838. insert into collations ( collation_name, character_set_name, id, is_default,
  6839. is_compiled, sortlen)
  6840. values ('cp1251_bin', 'cp1251', 50, '', '', 0);
  6841. ERROR 42000: Access denied for user 'user_4_1_11'@'localhost' to database 'information_schema'
  6842. root@localhost information_schema
  6843. DROP USER user_4_1_11@localhost;
  6844. Testcase 3.2.1.11:
  6845. --------------------------------------------------------------------------------
  6846. DROP DATABASE IF EXISTS db_datadict;
  6847. CREATE DATABASE db_datadict;
  6848. CREATE USER 'u_6_401011'@'localhost';
  6849. GRANT ALL ON information_schema.* TO 'u_6_401011'@'localhost';
  6850. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6851. GRANT ALL ON db_datadict.* TO 'u_6_401011'@'localhost';
  6852. FLUSH PRIVILEGES;
  6853. ALTER TABLE information_schema.schemata RENAME db_datadict.schemata;
  6854. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6855. root: move table to other DB
  6856. ----------------------------
  6857. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6858. ---------------------------------------------------------------------------
  6859. ALTER TABLE information_schema. schemata RENAME db_datadict.tb_01;
  6860. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6861. ALTER TABLE information_schema. tables RENAME db_datadict.tb_01;
  6862. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6863. ALTER TABLE information_schema. columns RENAME db_datadict.tb_01;
  6864. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6865. ALTER TABLE information_schema. character_sets RENAME db_datadict.tb_01;
  6866. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6867. ALTER TABLE information_schema. collations RENAME db_datadict.tb_01;
  6868. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6869. ALTER TABLE information_schema. collation_character_set_applicability RENAME db_datadict.tb_01;
  6870. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6871. ALTER TABLE information_schema. routines RENAME db_datadict.tb_01;
  6872. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6873. ALTER TABLE information_schema. statistics RENAME db_datadict.tb_01;
  6874. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6875. ALTER TABLE information_schema. views RENAME db_datadict.tb_01;
  6876. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6877. ALTER TABLE information_schema. user_privileges RENAME db_datadict.tb_01;
  6878. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6879. ALTER TABLE information_schema. schema_privileges RENAME db_datadict.tb_01;
  6880. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6881. ALTER TABLE information_schema. table_privileges RENAME db_datadict.tb_01;
  6882. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6883. ALTER TABLE information_schema. column_privileges RENAME db_datadict.tb_01;
  6884. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6885. ALTER TABLE information_schema. table_constraints RENAME db_datadict.tb_01;
  6886. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6887. ALTER TABLE information_schema. key_column_usage RENAME db_datadict.tb_01;
  6888. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6889. ALTER TABLE information_schema. triggers RENAME db_datadict.tb_01;
  6890. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6891. connect(localhost,u_6_401011,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  6892. USE information_schema;
  6893. u_6_401011@localhost information_schema
  6894. ALTER TABLE information_schema.schemata RENAME db_datadict.schemata;
  6895. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6896. user: move table to other DB
  6897. ----------------------------
  6898. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6899. ---------------------------------------------------------------------------
  6900. ALTER TABLE information_schema. schemata RENAME db_datadict.tb_01;
  6901. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6902. ALTER TABLE information_schema. tables RENAME db_datadict.tb_01;
  6903. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6904. ALTER TABLE information_schema. columns RENAME db_datadict.tb_01;
  6905. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6906. ALTER TABLE information_schema. character_sets RENAME db_datadict.tb_01;
  6907. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6908. ALTER TABLE information_schema. collations RENAME db_datadict.tb_01;
  6909. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6910. ALTER TABLE information_schema. collation_character_set_applicability RENAME db_datadict.tb_01;
  6911. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6912. ALTER TABLE information_schema. routines RENAME db_datadict.tb_01;
  6913. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6914. ALTER TABLE information_schema. statistics RENAME db_datadict.tb_01;
  6915. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6916. ALTER TABLE information_schema. views RENAME db_datadict.tb_01;
  6917. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6918. ALTER TABLE information_schema. user_privileges RENAME db_datadict.tb_01;
  6919. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6920. ALTER TABLE information_schema. schema_privileges RENAME db_datadict.tb_01;
  6921. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6922. ALTER TABLE information_schema. table_privileges RENAME db_datadict.tb_01;
  6923. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6924. ALTER TABLE information_schema. column_privileges RENAME db_datadict.tb_01;
  6925. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6926. ALTER TABLE information_schema. table_constraints RENAME db_datadict.tb_01;
  6927. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6928. ALTER TABLE information_schema. key_column_usage RENAME db_datadict.tb_01;
  6929. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6930. ALTER TABLE information_schema. triggers RENAME db_datadict.tb_01;
  6931. ERROR 42000: Access denied for user 'u_6_401011'@'localhost' to database 'information_schema'
  6932. root@localhost information_schema
  6933. DROP TABLE IF EXISTS db_datadict.schemata;
  6934. DROP USER 'u_6_401011'@'localhost';
  6935. Testcase 3.2.1.12:
  6936. --------------------------------------------------------------------------------
  6937. root: delete from IS tables
  6938. ---------------------------
  6939. known error 1044 (ERROR 42000: Access denied for user ... to database ...):
  6940. ---------------------------------------------------------------------------
  6941. DELETE FROM information_schema. schemata ;
  6942. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6943. DELETE FROM information_schema. tables ;
  6944. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6945. DELETE FROM information_schema. columns ;
  6946. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6947. DELETE FROM information_schema. character_sets ;
  6948. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6949. DELETE FROM information_schema. collations ;
  6950. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6951. DELETE FROM information_schema. collation_character_set_applicability ;
  6952. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6953. DELETE FROM information_schema. routines ;
  6954. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6955. DELETE FROM information_schema. statistics ;
  6956. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6957. DELETE FROM information_schema. views ;
  6958. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6959. DELETE FROM information_schema. user_privileges ;
  6960. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6961. DELETE FROM information_schema. schema_privileges ;
  6962. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6963. DELETE FROM information_schema. table_privileges ;
  6964. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6965. DELETE FROM information_schema. column_privileges ;
  6966. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6967. DELETE FROM information_schema. table_constraints ;
  6968. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6969. DELETE FROM information_schema. key_column_usage ;
  6970. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6971. DELETE FROM information_schema. triggers ;
  6972. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6973. UPDATE information_schema.tables SET table_name = 't_4711';
  6974. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6975. UPDATE information_schema.columns SET table_name = 't_4711';
  6976. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6977. UPDATE information_schema.statistics SET table_name = 't_4711';
  6978. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6979. UPDATE information_schema.views SET table_name = 't_4711';
  6980. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6981. UPDATE information_schema.table_privileges SET table_name = 't_4711';
  6982. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6983. UPDATE information_schema.column_privileges SET table_name = 't_4711';
  6984. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6985. UPDATE information_schema.table_constraints SET table_name = 't_4711';
  6986. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6987. UPDATE information_schema.key_column_usage SET table_name = 't_4711';
  6988. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6989. UPDATE information_schema.schemata SET catalog_name = 't_4711';
  6990. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6991. UPDATE information_schema.character_sets SET description = 't_4711';
  6992. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6993. UPDATE information_schema.collations SET character_set_name = 't_4711';
  6994. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6995. UPDATE information_schema.collation_character_set_applicability
  6996. SET character_set_name = 't_4711';
  6997. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  6998. UPDATE information_schema.routines SET routine_type = 't_4711';
  6999. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7000. UPDATE information_schema.user_privileges SET grantee = 't_4711';
  7001. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7002. UPDATE information_schema.schema_privileges SET grantee = 't_4711';
  7003. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7004. UPDATE information_schema.triggers SET sql_mode = 't_4711';
  7005. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  7006. CREATE USER 'u_6_401012'@'localhost';
  7007. connect(localhost,u_6_401012,,test,MYSQL_PORT,MYSQL_SOCK);
  7008. use information_schema;
  7009. insert into information_schema.schemata (catalog_name, schema_name,
  7010. default_character_set_name, sql_path)
  7011. values (null, information_schema1, utf16, null);
  7012. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7013. alter table information_schema.schemata rename db_datadict1.schemata;
  7014. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7015. alter table information_schema.tables drop column checksum;
  7016. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7017. alter table information_schema.statistics modify packed int;
  7018. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7019. alter table information_schema.routines modify created int not null;
  7020. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7021. alter table information_schema.key_column_usage drop column ordinal_position;
  7022. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7023. alter table information_schema.table_privileges
  7024. change privilege_type rights_approved varchar(32);
  7025. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7026. update columns set table_name = 't4' where column_name = 'f2';
  7027. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7028. delete from information_schema.collations;
  7029. ERROR 42000: Access denied for user 'u_6_401012'@'localhost' to database 'information_schema'
  7030. root@localhost information_schema
  7031. drop table if exists db_datadict1.schemata;
  7032. DROP USER 'u_6_401012'@'localhost';
  7033. Testcase 3.2.1.13:
  7034. --------------------------------------------------------------------------------
  7035. use information_schema;
  7036. first check status >before< creating the objects ...
  7037. ----------------------------------------------------
  7038. select *
  7039. from information_schema.schemata
  7040. where schema_name like 'db_datadict%';
  7041. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7042. NULL db_datadict latin1 latin1_swedish_ci NULL
  7043. select table_catalog, table_schema, engine
  7044. from information_schema.tables
  7045. where table_schema like 'db_datadict%';
  7046. table_catalog table_schema engine
  7047. select *
  7048. from information_schema.columns
  7049. where table_schema like 'db_datadict%';
  7050. 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
  7051. select table_schema, table_name, is_updatable
  7052. from information_schema.views
  7053. where table_schema like 'db_datadict%';
  7054. table_schema table_name is_updatable
  7055. select routine_name, routine_type, security_type, sql_mode
  7056. from information_schema.routines
  7057. where routine_schema like 'db_datadict%';
  7058. routine_name routine_type security_type sql_mode
  7059. select table_name, index_schema, index_name, index_type
  7060. from information_schema.statistics
  7061. where table_schema like 'db_datadict%';
  7062. table_name index_schema index_name index_type
  7063. select *
  7064. from information_schema.user_privileges;
  7065. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7066. 'root'@'localhost' NULL SELECT YES
  7067. 'root'@'localhost' NULL INSERT YES
  7068. 'root'@'localhost' NULL UPDATE YES
  7069. 'root'@'localhost' NULL DELETE YES
  7070. 'root'@'localhost' NULL CREATE YES
  7071. 'root'@'localhost' NULL DROP YES
  7072. 'root'@'localhost' NULL RELOAD YES
  7073. 'root'@'localhost' NULL SHUTDOWN YES
  7074. 'root'@'localhost' NULL PROCESS YES
  7075. 'root'@'localhost' NULL FILE YES
  7076. 'root'@'localhost' NULL REFERENCES YES
  7077. 'root'@'localhost' NULL INDEX YES
  7078. 'root'@'localhost' NULL ALTER YES
  7079. 'root'@'localhost' NULL SHOW DATABASES YES
  7080. 'root'@'localhost' NULL SUPER YES
  7081. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7082. 'root'@'localhost' NULL LOCK TABLES YES
  7083. 'root'@'localhost' NULL EXECUTE YES
  7084. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7085. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7086. 'root'@'localhost' NULL CREATE VIEW YES
  7087. 'root'@'localhost' NULL SHOW VIEW YES
  7088. 'root'@'localhost' NULL CREATE ROUTINE YES
  7089. 'root'@'localhost' NULL ALTER ROUTINE YES
  7090. 'root'@'localhost' NULL CREATE USER YES
  7091. 'root'@'localhost' NULL EVENT YES
  7092. 'root'@'localhost' NULL TRIGGER YES
  7093. 'root'@'127.0.0.1' NULL SELECT YES
  7094. 'root'@'127.0.0.1' NULL INSERT YES
  7095. 'root'@'127.0.0.1' NULL UPDATE YES
  7096. 'root'@'127.0.0.1' NULL DELETE YES
  7097. 'root'@'127.0.0.1' NULL CREATE YES
  7098. 'root'@'127.0.0.1' NULL DROP YES
  7099. 'root'@'127.0.0.1' NULL RELOAD YES
  7100. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7101. 'root'@'127.0.0.1' NULL PROCESS YES
  7102. 'root'@'127.0.0.1' NULL FILE YES
  7103. 'root'@'127.0.0.1' NULL REFERENCES YES
  7104. 'root'@'127.0.0.1' NULL INDEX YES
  7105. 'root'@'127.0.0.1' NULL ALTER YES
  7106. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7107. 'root'@'127.0.0.1' NULL SUPER YES
  7108. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7109. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7110. 'root'@'127.0.0.1' NULL EXECUTE YES
  7111. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7112. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7113. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7114. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7115. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7116. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7117. 'root'@'127.0.0.1' NULL CREATE USER YES
  7118. 'root'@'127.0.0.1' NULL EVENT YES
  7119. 'root'@'127.0.0.1' NULL TRIGGER YES
  7120. ''@'localhost' NULL USAGE NO
  7121. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7122. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7123. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7124. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7125. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7126. 'root'@'<SERVER_NAME>' NULL DROP YES
  7127. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7128. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7129. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7130. 'root'@'<SERVER_NAME>' NULL FILE YES
  7131. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7132. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7133. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7134. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7135. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7136. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7137. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7138. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7139. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7140. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7141. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7142. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7143. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7144. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7145. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7146. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7147. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7148. ''@'<SERVER_NAME>' NULL USAGE NO
  7149. select *
  7150. from information_schema.column_privileges
  7151. where table_schema like 'db_datadict%';
  7152. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7153. select *
  7154. from information_schema.table_privileges
  7155. where table_schema like 'db_datadict%';
  7156. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7157. select *
  7158. from information_schema.key_column_usage
  7159. where table_schema like 'db_datadict%';
  7160. 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
  7161. SELECT *
  7162. FROM information_schema.triggers
  7163. WHERE trigger_schema LIKE 'db_datadict%';
  7164. 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
  7165. DROP DATABASE IF EXISTS db_datadict;
  7166. CREATE DATABASE db_datadict;
  7167. USE db_datadict;
  7168. create table res_t_401013(f1 char(10), f2 char(25), f3 int)
  7169. engine = ndb;
  7170. create view res_v_401013 as select * from res_t_401013;
  7171. CREATE USER u_6_401013@localhost;
  7172. create procedure sp_6_401013() select 'db_datadict';
  7173. create function fn_6_401013() returns int return 0;
  7174. create index i_6_401013 on res_t_401013(f3);
  7175. use information_schema;
  7176. now check whether all new objects exists in IS ...
  7177. --------------------------------------------------
  7178. select *
  7179. from information_schema.schemata
  7180. where schema_name like 'db_datadict%';
  7181. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7182. NULL db_datadict latin1 latin1_swedish_ci NULL
  7183. select table_catalog, table_schema, engine
  7184. from information_schema.tables
  7185. where table_schema like 'db_datadict%';
  7186. table_catalog table_schema engine
  7187. NULL db_datadict NDBCLUSTER
  7188. NULL db_datadict NULL
  7189. select *
  7190. from information_schema.columns
  7191. where table_schema like 'db_datadict%';
  7192. 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
  7193. 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
  7194. 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
  7195. NULL db_datadict res_t_401013 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) MUL select,insert,update,references
  7196. 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
  7197. 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
  7198. NULL db_datadict res_v_401013 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7199. select table_schema, table_name, is_updatable
  7200. from information_schema.views
  7201. where table_schema like 'db_datadict%';
  7202. table_schema table_name is_updatable
  7203. db_datadict res_v_401013 YES
  7204. select routine_name, routine_type, security_type, sql_mode
  7205. from information_schema.routines
  7206. where routine_schema like 'db_datadict%';
  7207. routine_name routine_type security_type sql_mode
  7208. fn_6_401013 FUNCTION DEFINER
  7209. sp_6_401013 PROCEDURE DEFINER
  7210. select table_name, index_schema, index_name, index_type
  7211. from information_schema.statistics
  7212. where table_schema like 'db_datadict%';
  7213. table_name index_schema index_name index_type
  7214. res_t_401013 db_datadict i_6_401013 BTREE
  7215. select *
  7216. from information_schema.user_privileges;
  7217. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7218. 'root'@'localhost' NULL SELECT YES
  7219. 'root'@'localhost' NULL INSERT YES
  7220. 'root'@'localhost' NULL UPDATE YES
  7221. 'root'@'localhost' NULL DELETE YES
  7222. 'root'@'localhost' NULL CREATE YES
  7223. 'root'@'localhost' NULL DROP YES
  7224. 'root'@'localhost' NULL RELOAD YES
  7225. 'root'@'localhost' NULL SHUTDOWN YES
  7226. 'root'@'localhost' NULL PROCESS YES
  7227. 'root'@'localhost' NULL FILE YES
  7228. 'root'@'localhost' NULL REFERENCES YES
  7229. 'root'@'localhost' NULL INDEX YES
  7230. 'root'@'localhost' NULL ALTER YES
  7231. 'root'@'localhost' NULL SHOW DATABASES YES
  7232. 'root'@'localhost' NULL SUPER YES
  7233. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7234. 'root'@'localhost' NULL LOCK TABLES YES
  7235. 'root'@'localhost' NULL EXECUTE YES
  7236. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7237. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7238. 'root'@'localhost' NULL CREATE VIEW YES
  7239. 'root'@'localhost' NULL SHOW VIEW YES
  7240. 'root'@'localhost' NULL CREATE ROUTINE YES
  7241. 'root'@'localhost' NULL ALTER ROUTINE YES
  7242. 'root'@'localhost' NULL CREATE USER YES
  7243. 'root'@'localhost' NULL EVENT YES
  7244. 'root'@'localhost' NULL TRIGGER YES
  7245. 'root'@'127.0.0.1' NULL SELECT YES
  7246. 'root'@'127.0.0.1' NULL INSERT YES
  7247. 'root'@'127.0.0.1' NULL UPDATE YES
  7248. 'root'@'127.0.0.1' NULL DELETE YES
  7249. 'root'@'127.0.0.1' NULL CREATE YES
  7250. 'root'@'127.0.0.1' NULL DROP YES
  7251. 'root'@'127.0.0.1' NULL RELOAD YES
  7252. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7253. 'root'@'127.0.0.1' NULL PROCESS YES
  7254. 'root'@'127.0.0.1' NULL FILE YES
  7255. 'root'@'127.0.0.1' NULL REFERENCES YES
  7256. 'root'@'127.0.0.1' NULL INDEX YES
  7257. 'root'@'127.0.0.1' NULL ALTER YES
  7258. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7259. 'root'@'127.0.0.1' NULL SUPER YES
  7260. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7261. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7262. 'root'@'127.0.0.1' NULL EXECUTE YES
  7263. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7264. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7265. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7266. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7267. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7268. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7269. 'root'@'127.0.0.1' NULL CREATE USER YES
  7270. 'root'@'127.0.0.1' NULL EVENT YES
  7271. 'root'@'127.0.0.1' NULL TRIGGER YES
  7272. 'u_6_401013'@'localhost' NULL USAGE NO
  7273. ''@'localhost' NULL USAGE NO
  7274. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7275. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7276. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7277. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7278. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7279. 'root'@'<SERVER_NAME>' NULL DROP YES
  7280. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7281. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7282. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7283. 'root'@'<SERVER_NAME>' NULL FILE YES
  7284. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7285. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7286. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7287. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7288. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7289. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7290. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7291. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7292. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7293. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7294. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7295. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7296. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7297. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7298. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7299. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7300. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7301. ''@'<SERVER_NAME>' NULL USAGE NO
  7302. select *
  7303. from information_schema.column_privileges
  7304. where table_schema like 'db_datadict%';
  7305. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7306. select *
  7307. from information_schema.table_privileges
  7308. where table_schema like 'db_datadict%';
  7309. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7310. select *
  7311. from information_schema.key_column_usage
  7312. where table_schema like 'db_datadict%';
  7313. 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
  7314. SELECT *
  7315. FROM information_schema.triggers
  7316. WHERE trigger_schema LIKE 'db_datadict%';
  7317. 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
  7318. use db_datadict;
  7319. drop index i_6_401013 on res_t_401013;
  7320. drop table db_datadict.res_t_401013;
  7321. drop view db_datadict.res_v_401013;
  7322. DROP USER u_6_401013@localhost;
  7323. drop procedure sp_6_401013;
  7324. drop function fn_6_401013;
  7325. drop database db_datadict;
  7326. use information_schema;
  7327. and now check whether all objects are removed from IS ...
  7328. ---------------------------------------------------------
  7329. select *
  7330. from information_schema.schemata
  7331. where schema_name like 'db_datadict%';
  7332. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7333. select table_catalog, table_schema, engine
  7334. from information_schema.tables
  7335. where table_schema like 'db_datadict%';
  7336. table_catalog table_schema engine
  7337. select *
  7338. from information_schema.columns
  7339. where table_schema like 'db_datadict%';
  7340. 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
  7341. select table_schema, table_name, is_updatable
  7342. from information_schema.views
  7343. where table_schema like 'db_datadict%';
  7344. table_schema table_name is_updatable
  7345. select routine_name, routine_type, security_type, sql_mode
  7346. from information_schema.routines
  7347. where routine_schema like 'db_datadict%';
  7348. routine_name routine_type security_type sql_mode
  7349. select table_name, index_schema, index_name, index_type
  7350. from information_schema.statistics
  7351. where table_schema like 'db_datadict%';
  7352. table_name index_schema index_name index_type
  7353. select *
  7354. from information_schema.user_privileges;
  7355. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7356. 'root'@'localhost' NULL SELECT YES
  7357. 'root'@'localhost' NULL INSERT YES
  7358. 'root'@'localhost' NULL UPDATE YES
  7359. 'root'@'localhost' NULL DELETE YES
  7360. 'root'@'localhost' NULL CREATE YES
  7361. 'root'@'localhost' NULL DROP YES
  7362. 'root'@'localhost' NULL RELOAD YES
  7363. 'root'@'localhost' NULL SHUTDOWN YES
  7364. 'root'@'localhost' NULL PROCESS YES
  7365. 'root'@'localhost' NULL FILE YES
  7366. 'root'@'localhost' NULL REFERENCES YES
  7367. 'root'@'localhost' NULL INDEX YES
  7368. 'root'@'localhost' NULL ALTER YES
  7369. 'root'@'localhost' NULL SHOW DATABASES YES
  7370. 'root'@'localhost' NULL SUPER YES
  7371. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7372. 'root'@'localhost' NULL LOCK TABLES YES
  7373. 'root'@'localhost' NULL EXECUTE YES
  7374. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7375. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7376. 'root'@'localhost' NULL CREATE VIEW YES
  7377. 'root'@'localhost' NULL SHOW VIEW YES
  7378. 'root'@'localhost' NULL CREATE ROUTINE YES
  7379. 'root'@'localhost' NULL ALTER ROUTINE YES
  7380. 'root'@'localhost' NULL CREATE USER YES
  7381. 'root'@'localhost' NULL EVENT YES
  7382. 'root'@'localhost' NULL TRIGGER YES
  7383. 'root'@'127.0.0.1' NULL SELECT YES
  7384. 'root'@'127.0.0.1' NULL INSERT YES
  7385. 'root'@'127.0.0.1' NULL UPDATE YES
  7386. 'root'@'127.0.0.1' NULL DELETE YES
  7387. 'root'@'127.0.0.1' NULL CREATE YES
  7388. 'root'@'127.0.0.1' NULL DROP YES
  7389. 'root'@'127.0.0.1' NULL RELOAD YES
  7390. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7391. 'root'@'127.0.0.1' NULL PROCESS YES
  7392. 'root'@'127.0.0.1' NULL FILE YES
  7393. 'root'@'127.0.0.1' NULL REFERENCES YES
  7394. 'root'@'127.0.0.1' NULL INDEX YES
  7395. 'root'@'127.0.0.1' NULL ALTER YES
  7396. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7397. 'root'@'127.0.0.1' NULL SUPER YES
  7398. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7399. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7400. 'root'@'127.0.0.1' NULL EXECUTE YES
  7401. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7402. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7403. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7404. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7405. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7406. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7407. 'root'@'127.0.0.1' NULL CREATE USER YES
  7408. 'root'@'127.0.0.1' NULL EVENT YES
  7409. 'root'@'127.0.0.1' NULL TRIGGER YES
  7410. ''@'localhost' NULL USAGE NO
  7411. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7412. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7413. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7414. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7415. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7416. 'root'@'<SERVER_NAME>' NULL DROP YES
  7417. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7418. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7419. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7420. 'root'@'<SERVER_NAME>' NULL FILE YES
  7421. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7422. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7423. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7424. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7425. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7426. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7427. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7428. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7429. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7430. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7431. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7432. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7433. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7434. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7435. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7436. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7437. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7438. ''@'<SERVER_NAME>' NULL USAGE NO
  7439. select *
  7440. from information_schema.column_privileges
  7441. where table_schema like 'db_datadict%';
  7442. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7443. select *
  7444. from information_schema.table_privileges
  7445. where table_schema like 'db_datadict%';
  7446. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7447. select *
  7448. from information_schema.key_column_usage
  7449. where table_schema like 'db_datadict%';
  7450. 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
  7451. SELECT *
  7452. FROM information_schema.triggers
  7453. WHERE trigger_schema LIKE 'db_datadict%';
  7454. 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
  7455. Testcase 3.2.1.14:
  7456. --------------------------------------------------------------------------------
  7457. DROP DATABASE IF EXISTS db_datadict;
  7458. CREATE DATABASE db_datadict;
  7459. USE db_datadict;
  7460. create table res_t_401014(f1 char(10), f2 text(25), f3 int);
  7461. create view res_v_401014 as select * from res_t_401014;
  7462. create procedure sp_6_401014() select 'db_datadict';
  7463. create function fn_6_401014() returns int return 0;
  7464. show existing objects >before< changing them ...
  7465. ------------------------------------------------
  7466. select *
  7467. from information_schema.schemata
  7468. where schema_name like 'db_datadict%';
  7469. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7470. NULL db_datadict latin1 latin1_swedish_ci NULL
  7471. select table_catalog, table_schema, engine
  7472. from information_schema.tables
  7473. where table_schema like 'db_datadict%';
  7474. table_catalog table_schema engine
  7475. NULL db_datadict MyISAM
  7476. NULL db_datadict NULL
  7477. select *
  7478. from information_schema.columns
  7479. where table_schema like 'db_datadict%';
  7480. 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
  7481. 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
  7482. NULL db_datadict res_t_401014 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  7483. NULL db_datadict res_t_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7484. 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
  7485. NULL db_datadict res_v_401014 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  7486. NULL db_datadict res_v_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7487. select table_schema, table_name, is_updatable
  7488. from information_schema.views
  7489. where table_schema like 'db_datadict%';
  7490. table_schema table_name is_updatable
  7491. db_datadict res_v_401014 YES
  7492. select routine_name, routine_type, security_type, sql_mode
  7493. from information_schema.routines
  7494. where routine_schema like 'db_datadict%';
  7495. routine_name routine_type security_type sql_mode
  7496. fn_6_401014 FUNCTION DEFINER
  7497. sp_6_401014 PROCEDURE DEFINER
  7498. select table_name, index_schema, index_name, index_type
  7499. from information_schema.statistics
  7500. where table_schema like 'db_datadict%';
  7501. table_name index_schema index_name index_type
  7502. select *
  7503. from information_schema.user_privileges;
  7504. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7505. 'root'@'localhost' NULL SELECT YES
  7506. 'root'@'localhost' NULL INSERT YES
  7507. 'root'@'localhost' NULL UPDATE YES
  7508. 'root'@'localhost' NULL DELETE YES
  7509. 'root'@'localhost' NULL CREATE YES
  7510. 'root'@'localhost' NULL DROP YES
  7511. 'root'@'localhost' NULL RELOAD YES
  7512. 'root'@'localhost' NULL SHUTDOWN YES
  7513. 'root'@'localhost' NULL PROCESS YES
  7514. 'root'@'localhost' NULL FILE YES
  7515. 'root'@'localhost' NULL REFERENCES YES
  7516. 'root'@'localhost' NULL INDEX YES
  7517. 'root'@'localhost' NULL ALTER YES
  7518. 'root'@'localhost' NULL SHOW DATABASES YES
  7519. 'root'@'localhost' NULL SUPER YES
  7520. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7521. 'root'@'localhost' NULL LOCK TABLES YES
  7522. 'root'@'localhost' NULL EXECUTE YES
  7523. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7524. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7525. 'root'@'localhost' NULL CREATE VIEW YES
  7526. 'root'@'localhost' NULL SHOW VIEW YES
  7527. 'root'@'localhost' NULL CREATE ROUTINE YES
  7528. 'root'@'localhost' NULL ALTER ROUTINE YES
  7529. 'root'@'localhost' NULL CREATE USER YES
  7530. 'root'@'localhost' NULL EVENT YES
  7531. 'root'@'localhost' NULL TRIGGER YES
  7532. 'root'@'127.0.0.1' NULL SELECT YES
  7533. 'root'@'127.0.0.1' NULL INSERT YES
  7534. 'root'@'127.0.0.1' NULL UPDATE YES
  7535. 'root'@'127.0.0.1' NULL DELETE YES
  7536. 'root'@'127.0.0.1' NULL CREATE YES
  7537. 'root'@'127.0.0.1' NULL DROP YES
  7538. 'root'@'127.0.0.1' NULL RELOAD YES
  7539. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7540. 'root'@'127.0.0.1' NULL PROCESS YES
  7541. 'root'@'127.0.0.1' NULL FILE YES
  7542. 'root'@'127.0.0.1' NULL REFERENCES YES
  7543. 'root'@'127.0.0.1' NULL INDEX YES
  7544. 'root'@'127.0.0.1' NULL ALTER YES
  7545. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7546. 'root'@'127.0.0.1' NULL SUPER YES
  7547. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7548. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7549. 'root'@'127.0.0.1' NULL EXECUTE YES
  7550. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7551. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7552. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7553. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7554. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7555. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7556. 'root'@'127.0.0.1' NULL CREATE USER YES
  7557. 'root'@'127.0.0.1' NULL EVENT YES
  7558. 'root'@'127.0.0.1' NULL TRIGGER YES
  7559. ''@'localhost' NULL USAGE NO
  7560. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7561. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7562. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7563. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7564. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7565. 'root'@'<SERVER_NAME>' NULL DROP YES
  7566. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7567. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7568. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7569. 'root'@'<SERVER_NAME>' NULL FILE YES
  7570. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7571. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7572. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7573. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7574. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7575. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7576. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7577. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7578. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7579. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7580. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7581. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7582. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7583. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7584. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7585. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7586. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7587. ''@'<SERVER_NAME>' NULL USAGE NO
  7588. select *
  7589. from information_schema.column_privileges
  7590. where table_schema like 'db_datadict%';
  7591. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7592. select *
  7593. from information_schema.table_privileges
  7594. where table_schema like 'db_datadict%';
  7595. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7596. select *
  7597. from information_schema.key_column_usage
  7598. where table_schema like 'db_datadict%';
  7599. 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
  7600. SELECT *
  7601. FROM information_schema.triggers
  7602. WHERE trigger_schema LIKE 'db_datadict%';
  7603. 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
  7604. use db_datadict;
  7605. alter table res_t_401014 change f1 ff1 int;
  7606. alter table res_t_401014 engine = innodb;
  7607. alter table res_t_401014 change f3 f3_new bigint;
  7608. alter view res_v_401014 as select ff1 from res_t_401014;
  7609. alter procedure sp_6_401014 sql security invoker;
  7610. alter function fn_6_401014 comment 'updated comments';
  7611. alter database db_datadict character set utf8;
  7612. now check whether the changes are visible in IS ...
  7613. ---------------------------------------------------
  7614. select *
  7615. from information_schema.schemata
  7616. where schema_name like 'db_datadict%';
  7617. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7618. NULL db_datadict utf8 utf8_general_ci NULL
  7619. select table_catalog, table_schema, engine
  7620. from information_schema.tables
  7621. where table_schema like 'db_datadict%';
  7622. table_catalog table_schema engine
  7623. NULL db_datadict InnoDB
  7624. NULL db_datadict NULL
  7625. select *
  7626. from information_schema.columns
  7627. where table_schema like 'db_datadict%';
  7628. 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
  7629. NULL db_datadict res_t_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7630. NULL db_datadict res_t_401014 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  7631. NULL db_datadict res_t_401014 f3_new 3 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  7632. NULL db_datadict res_v_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7633. select table_schema, table_name, is_updatable
  7634. from information_schema.views
  7635. where table_schema like 'db_datadict%';
  7636. table_schema table_name is_updatable
  7637. db_datadict res_v_401014 YES
  7638. select routine_name, routine_type, security_type, sql_mode
  7639. from information_schema.routines
  7640. where routine_schema like 'db_datadict%';
  7641. routine_name routine_type security_type sql_mode
  7642. fn_6_401014 FUNCTION DEFINER
  7643. sp_6_401014 PROCEDURE INVOKER
  7644. select table_name, index_schema, index_name, index_type
  7645. from information_schema.statistics
  7646. where table_schema like 'db_datadict%';
  7647. table_name index_schema index_name index_type
  7648. select *
  7649. from information_schema.user_privileges;
  7650. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7651. 'root'@'localhost' NULL SELECT YES
  7652. 'root'@'localhost' NULL INSERT YES
  7653. 'root'@'localhost' NULL UPDATE YES
  7654. 'root'@'localhost' NULL DELETE YES
  7655. 'root'@'localhost' NULL CREATE YES
  7656. 'root'@'localhost' NULL DROP YES
  7657. 'root'@'localhost' NULL RELOAD YES
  7658. 'root'@'localhost' NULL SHUTDOWN YES
  7659. 'root'@'localhost' NULL PROCESS YES
  7660. 'root'@'localhost' NULL FILE YES
  7661. 'root'@'localhost' NULL REFERENCES YES
  7662. 'root'@'localhost' NULL INDEX YES
  7663. 'root'@'localhost' NULL ALTER YES
  7664. 'root'@'localhost' NULL SHOW DATABASES YES
  7665. 'root'@'localhost' NULL SUPER YES
  7666. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7667. 'root'@'localhost' NULL LOCK TABLES YES
  7668. 'root'@'localhost' NULL EXECUTE YES
  7669. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7670. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7671. 'root'@'localhost' NULL CREATE VIEW YES
  7672. 'root'@'localhost' NULL SHOW VIEW YES
  7673. 'root'@'localhost' NULL CREATE ROUTINE YES
  7674. 'root'@'localhost' NULL ALTER ROUTINE YES
  7675. 'root'@'localhost' NULL CREATE USER YES
  7676. 'root'@'localhost' NULL EVENT YES
  7677. 'root'@'localhost' NULL TRIGGER YES
  7678. 'root'@'127.0.0.1' NULL SELECT YES
  7679. 'root'@'127.0.0.1' NULL INSERT YES
  7680. 'root'@'127.0.0.1' NULL UPDATE YES
  7681. 'root'@'127.0.0.1' NULL DELETE YES
  7682. 'root'@'127.0.0.1' NULL CREATE YES
  7683. 'root'@'127.0.0.1' NULL DROP YES
  7684. 'root'@'127.0.0.1' NULL RELOAD YES
  7685. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7686. 'root'@'127.0.0.1' NULL PROCESS YES
  7687. 'root'@'127.0.0.1' NULL FILE YES
  7688. 'root'@'127.0.0.1' NULL REFERENCES YES
  7689. 'root'@'127.0.0.1' NULL INDEX YES
  7690. 'root'@'127.0.0.1' NULL ALTER YES
  7691. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7692. 'root'@'127.0.0.1' NULL SUPER YES
  7693. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7694. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7695. 'root'@'127.0.0.1' NULL EXECUTE YES
  7696. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7697. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7698. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7699. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7700. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7701. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7702. 'root'@'127.0.0.1' NULL CREATE USER YES
  7703. 'root'@'127.0.0.1' NULL EVENT YES
  7704. 'root'@'127.0.0.1' NULL TRIGGER YES
  7705. ''@'localhost' NULL USAGE NO
  7706. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7707. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7708. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7709. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7710. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7711. 'root'@'<SERVER_NAME>' NULL DROP YES
  7712. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7713. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7714. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7715. 'root'@'<SERVER_NAME>' NULL FILE YES
  7716. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7717. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7718. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7719. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7720. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7721. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7722. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7723. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7724. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7725. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7726. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7727. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7728. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7729. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7730. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7731. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7732. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7733. ''@'<SERVER_NAME>' NULL USAGE NO
  7734. select *
  7735. from information_schema.column_privileges
  7736. where table_schema like 'db_datadict%';
  7737. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7738. select *
  7739. from information_schema.table_privileges
  7740. where table_schema like 'db_datadict%';
  7741. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7742. select *
  7743. from information_schema.key_column_usage
  7744. where table_schema like 'db_datadict%';
  7745. 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
  7746. SELECT *
  7747. FROM information_schema.triggers
  7748. WHERE trigger_schema LIKE 'db_datadict%';
  7749. 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
  7750. use db_datadict;
  7751. drop table db_datadict.res_t_401014;
  7752. drop view db_datadict.res_v_401014;
  7753. drop procedure sp_6_401014;
  7754. drop function fn_6_401014;
  7755. drop database db_datadict;
  7756. Testcase 3.2.1.15:
  7757. --------------------------------------------------------------------------------
  7758. DROP DATABASE IF EXISTS db_datadict;
  7759. CREATE DATABASE db_datadict;
  7760. USE db_datadict;
  7761. create table res_t_401015(f1 char(10), f2 text(25), f3 int);
  7762. create view res_v_401015 as select * from res_t_401015;
  7763. CREATE USER u_6_401015@localhost;
  7764. create procedure sp_6_401015() select 'test';
  7765. create function fn_6_401015() returns int return 0;
  7766. create index i_6_401015 on res_t_401015(f3);
  7767. show existing objects >before< dropping them ...
  7768. ------------------------------------------------
  7769. select *
  7770. from information_schema.schemata
  7771. where schema_name like 'db_datadict%';
  7772. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7773. NULL db_datadict latin1 latin1_swedish_ci NULL
  7774. select table_catalog, table_schema, engine
  7775. from information_schema.tables
  7776. where table_schema like 'db_datadict%';
  7777. table_catalog table_schema engine
  7778. NULL db_datadict MyISAM
  7779. NULL db_datadict NULL
  7780. select *
  7781. from information_schema.columns
  7782. where table_schema like 'db_datadict%';
  7783. 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
  7784. 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
  7785. NULL db_datadict res_t_401015 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  7786. NULL db_datadict res_t_401015 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) MUL select,insert,update,references
  7787. 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
  7788. NULL db_datadict res_v_401015 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  7789. NULL db_datadict res_v_401015 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  7790. select table_schema, table_name, is_updatable
  7791. from information_schema.views
  7792. where table_schema like 'db_datadict%';
  7793. table_schema table_name is_updatable
  7794. db_datadict res_v_401015 YES
  7795. select routine_name, routine_type, security_type, sql_mode
  7796. from information_schema.routines
  7797. where routine_schema like 'db_datadict%';
  7798. routine_name routine_type security_type sql_mode
  7799. fn_6_401015 FUNCTION DEFINER
  7800. sp_6_401015 PROCEDURE DEFINER
  7801. select table_name, index_schema, index_name, index_type
  7802. from information_schema.statistics
  7803. where table_schema like 'db_datadict%';
  7804. table_name index_schema index_name index_type
  7805. res_t_401015 db_datadict i_6_401015 BTREE
  7806. select *
  7807. from information_schema.user_privileges;
  7808. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7809. 'root'@'localhost' NULL SELECT YES
  7810. 'root'@'localhost' NULL INSERT YES
  7811. 'root'@'localhost' NULL UPDATE YES
  7812. 'root'@'localhost' NULL DELETE YES
  7813. 'root'@'localhost' NULL CREATE YES
  7814. 'root'@'localhost' NULL DROP YES
  7815. 'root'@'localhost' NULL RELOAD YES
  7816. 'root'@'localhost' NULL SHUTDOWN YES
  7817. 'root'@'localhost' NULL PROCESS YES
  7818. 'root'@'localhost' NULL FILE YES
  7819. 'root'@'localhost' NULL REFERENCES YES
  7820. 'root'@'localhost' NULL INDEX YES
  7821. 'root'@'localhost' NULL ALTER YES
  7822. 'root'@'localhost' NULL SHOW DATABASES YES
  7823. 'root'@'localhost' NULL SUPER YES
  7824. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7825. 'root'@'localhost' NULL LOCK TABLES YES
  7826. 'root'@'localhost' NULL EXECUTE YES
  7827. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7828. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7829. 'root'@'localhost' NULL CREATE VIEW YES
  7830. 'root'@'localhost' NULL SHOW VIEW YES
  7831. 'root'@'localhost' NULL CREATE ROUTINE YES
  7832. 'root'@'localhost' NULL ALTER ROUTINE YES
  7833. 'root'@'localhost' NULL CREATE USER YES
  7834. 'root'@'localhost' NULL EVENT YES
  7835. 'root'@'localhost' NULL TRIGGER YES
  7836. 'root'@'127.0.0.1' NULL SELECT YES
  7837. 'root'@'127.0.0.1' NULL INSERT YES
  7838. 'root'@'127.0.0.1' NULL UPDATE YES
  7839. 'root'@'127.0.0.1' NULL DELETE YES
  7840. 'root'@'127.0.0.1' NULL CREATE YES
  7841. 'root'@'127.0.0.1' NULL DROP YES
  7842. 'root'@'127.0.0.1' NULL RELOAD YES
  7843. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7844. 'root'@'127.0.0.1' NULL PROCESS YES
  7845. 'root'@'127.0.0.1' NULL FILE YES
  7846. 'root'@'127.0.0.1' NULL REFERENCES YES
  7847. 'root'@'127.0.0.1' NULL INDEX YES
  7848. 'root'@'127.0.0.1' NULL ALTER YES
  7849. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7850. 'root'@'127.0.0.1' NULL SUPER YES
  7851. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7852. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7853. 'root'@'127.0.0.1' NULL EXECUTE YES
  7854. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7855. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7856. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7857. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7858. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7859. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7860. 'root'@'127.0.0.1' NULL CREATE USER YES
  7861. 'root'@'127.0.0.1' NULL EVENT YES
  7862. 'root'@'127.0.0.1' NULL TRIGGER YES
  7863. 'u_6_401015'@'localhost' NULL USAGE NO
  7864. ''@'localhost' NULL USAGE NO
  7865. 'root'@'<SERVER_NAME>' NULL SELECT YES
  7866. 'root'@'<SERVER_NAME>' NULL INSERT YES
  7867. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  7868. 'root'@'<SERVER_NAME>' NULL DELETE YES
  7869. 'root'@'<SERVER_NAME>' NULL CREATE YES
  7870. 'root'@'<SERVER_NAME>' NULL DROP YES
  7871. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  7872. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  7873. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  7874. 'root'@'<SERVER_NAME>' NULL FILE YES
  7875. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  7876. 'root'@'<SERVER_NAME>' NULL INDEX YES
  7877. 'root'@'<SERVER_NAME>' NULL ALTER YES
  7878. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  7879. 'root'@'<SERVER_NAME>' NULL SUPER YES
  7880. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  7881. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  7882. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  7883. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  7884. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  7885. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  7886. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  7887. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  7888. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  7889. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  7890. 'root'@'<SERVER_NAME>' NULL EVENT YES
  7891. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  7892. ''@'<SERVER_NAME>' NULL USAGE NO
  7893. select *
  7894. from information_schema.column_privileges
  7895. where table_schema like 'db_datadict%';
  7896. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7897. select *
  7898. from information_schema.table_privileges
  7899. where table_schema like 'db_datadict%';
  7900. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  7901. select *
  7902. from information_schema.key_column_usage
  7903. where table_schema like 'db_datadict%';
  7904. 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
  7905. SELECT *
  7906. FROM information_schema.triggers
  7907. WHERE trigger_schema LIKE 'db_datadict%';
  7908. 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
  7909. use db_datadict;
  7910. drop index i_6_401015 on res_t_401015;
  7911. drop table db_datadict.res_t_401015;
  7912. drop view db_datadict.res_v_401015;
  7913. DROP USER u_6_401015@localhost;
  7914. drop procedure sp_6_401015;
  7915. drop function fn_6_401015;
  7916. now check they are really gone ...
  7917. ----------------------------------
  7918. select *
  7919. from information_schema.schemata
  7920. where schema_name like 'db_datadict%';
  7921. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  7922. NULL db_datadict latin1 latin1_swedish_ci NULL
  7923. select table_catalog, table_schema, engine
  7924. from information_schema.tables
  7925. where table_schema like 'db_datadict%';
  7926. table_catalog table_schema engine
  7927. select *
  7928. from information_schema.columns
  7929. where table_schema like 'db_datadict%';
  7930. 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
  7931. select table_schema, table_name, is_updatable
  7932. from information_schema.views
  7933. where table_schema like 'db_datadict%';
  7934. table_schema table_name is_updatable
  7935. select routine_name, routine_type, security_type, sql_mode
  7936. from information_schema.routines
  7937. where routine_schema like 'db_datadict%';
  7938. routine_name routine_type security_type sql_mode
  7939. select table_name, index_schema, index_name, index_type
  7940. from information_schema.statistics
  7941. where table_schema like 'db_datadict%';
  7942. table_name index_schema index_name index_type
  7943. select *
  7944. from information_schema.user_privileges;
  7945. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  7946. 'root'@'localhost' NULL SELECT YES
  7947. 'root'@'localhost' NULL INSERT YES
  7948. 'root'@'localhost' NULL UPDATE YES
  7949. 'root'@'localhost' NULL DELETE YES
  7950. 'root'@'localhost' NULL CREATE YES
  7951. 'root'@'localhost' NULL DROP YES
  7952. 'root'@'localhost' NULL RELOAD YES
  7953. 'root'@'localhost' NULL SHUTDOWN YES
  7954. 'root'@'localhost' NULL PROCESS YES
  7955. 'root'@'localhost' NULL FILE YES
  7956. 'root'@'localhost' NULL REFERENCES YES
  7957. 'root'@'localhost' NULL INDEX YES
  7958. 'root'@'localhost' NULL ALTER YES
  7959. 'root'@'localhost' NULL SHOW DATABASES YES
  7960. 'root'@'localhost' NULL SUPER YES
  7961. 'root'@'localhost' NULL CREATE TEMPORARY TABLES YES
  7962. 'root'@'localhost' NULL LOCK TABLES YES
  7963. 'root'@'localhost' NULL EXECUTE YES
  7964. 'root'@'localhost' NULL REPLICATION SLAVE YES
  7965. 'root'@'localhost' NULL REPLICATION CLIENT YES
  7966. 'root'@'localhost' NULL CREATE VIEW YES
  7967. 'root'@'localhost' NULL SHOW VIEW YES
  7968. 'root'@'localhost' NULL CREATE ROUTINE YES
  7969. 'root'@'localhost' NULL ALTER ROUTINE YES
  7970. 'root'@'localhost' NULL CREATE USER YES
  7971. 'root'@'localhost' NULL EVENT YES
  7972. 'root'@'localhost' NULL TRIGGER YES
  7973. 'root'@'127.0.0.1' NULL SELECT YES
  7974. 'root'@'127.0.0.1' NULL INSERT YES
  7975. 'root'@'127.0.0.1' NULL UPDATE YES
  7976. 'root'@'127.0.0.1' NULL DELETE YES
  7977. 'root'@'127.0.0.1' NULL CREATE YES
  7978. 'root'@'127.0.0.1' NULL DROP YES
  7979. 'root'@'127.0.0.1' NULL RELOAD YES
  7980. 'root'@'127.0.0.1' NULL SHUTDOWN YES
  7981. 'root'@'127.0.0.1' NULL PROCESS YES
  7982. 'root'@'127.0.0.1' NULL FILE YES
  7983. 'root'@'127.0.0.1' NULL REFERENCES YES
  7984. 'root'@'127.0.0.1' NULL INDEX YES
  7985. 'root'@'127.0.0.1' NULL ALTER YES
  7986. 'root'@'127.0.0.1' NULL SHOW DATABASES YES
  7987. 'root'@'127.0.0.1' NULL SUPER YES
  7988. 'root'@'127.0.0.1' NULL CREATE TEMPORARY TABLES YES
  7989. 'root'@'127.0.0.1' NULL LOCK TABLES YES
  7990. 'root'@'127.0.0.1' NULL EXECUTE YES
  7991. 'root'@'127.0.0.1' NULL REPLICATION SLAVE YES
  7992. 'root'@'127.0.0.1' NULL REPLICATION CLIENT YES
  7993. 'root'@'127.0.0.1' NULL CREATE VIEW YES
  7994. 'root'@'127.0.0.1' NULL SHOW VIEW YES
  7995. 'root'@'127.0.0.1' NULL CREATE ROUTINE YES
  7996. 'root'@'127.0.0.1' NULL ALTER ROUTINE YES
  7997. 'root'@'127.0.0.1' NULL CREATE USER YES
  7998. 'root'@'127.0.0.1' NULL EVENT YES
  7999. 'root'@'127.0.0.1' NULL TRIGGER YES
  8000. ''@'localhost' NULL USAGE NO
  8001. 'root'@'<SERVER_NAME>' NULL SELECT YES
  8002. 'root'@'<SERVER_NAME>' NULL INSERT YES
  8003. 'root'@'<SERVER_NAME>' NULL UPDATE YES
  8004. 'root'@'<SERVER_NAME>' NULL DELETE YES
  8005. 'root'@'<SERVER_NAME>' NULL CREATE YES
  8006. 'root'@'<SERVER_NAME>' NULL DROP YES
  8007. 'root'@'<SERVER_NAME>' NULL RELOAD YES
  8008. 'root'@'<SERVER_NAME>' NULL SHUTDOWN YES
  8009. 'root'@'<SERVER_NAME>' NULL PROCESS YES
  8010. 'root'@'<SERVER_NAME>' NULL FILE YES
  8011. 'root'@'<SERVER_NAME>' NULL REFERENCES YES
  8012. 'root'@'<SERVER_NAME>' NULL INDEX YES
  8013. 'root'@'<SERVER_NAME>' NULL ALTER YES
  8014. 'root'@'<SERVER_NAME>' NULL SHOW DATABASES YES
  8015. 'root'@'<SERVER_NAME>' NULL SUPER YES
  8016. 'root'@'<SERVER_NAME>' NULL CREATE TEMPORARY TABLES YES
  8017. 'root'@'<SERVER_NAME>' NULL LOCK TABLES YES
  8018. 'root'@'<SERVER_NAME>' NULL EXECUTE YES
  8019. 'root'@'<SERVER_NAME>' NULL REPLICATION SLAVE YES
  8020. 'root'@'<SERVER_NAME>' NULL REPLICATION CLIENT YES
  8021. 'root'@'<SERVER_NAME>' NULL CREATE VIEW YES
  8022. 'root'@'<SERVER_NAME>' NULL SHOW VIEW YES
  8023. 'root'@'<SERVER_NAME>' NULL CREATE ROUTINE YES
  8024. 'root'@'<SERVER_NAME>' NULL ALTER ROUTINE YES
  8025. 'root'@'<SERVER_NAME>' NULL CREATE USER YES
  8026. 'root'@'<SERVER_NAME>' NULL EVENT YES
  8027. 'root'@'<SERVER_NAME>' NULL TRIGGER YES
  8028. ''@'<SERVER_NAME>' NULL USAGE NO
  8029. select *
  8030. from information_schema.column_privileges
  8031. where table_schema like 'db_datadict%';
  8032. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  8033. select *
  8034. from information_schema.table_privileges
  8035. where table_schema like 'db_datadict%';
  8036. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  8037. select *
  8038. from information_schema.key_column_usage
  8039. where table_schema like 'db_datadict%';
  8040. 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
  8041. SELECT *
  8042. FROM information_schema.triggers
  8043. WHERE trigger_schema LIKE 'db_datadict%';
  8044. 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
  8045. Testcase 3.2.1.16:
  8046. --------------------------------------------------------------------------------
  8047. DROP DATABASE IF EXISTS db_datadict;
  8048. CREATE DATABASE db_datadict;
  8049. CREATE DATABASE db_hidden;
  8050. USE db_hidden;
  8051. CREATE TABLE tb_hidden ( c1 TEXT );
  8052. USE db_datadict;
  8053. CREATE TABLE res_t_401016(f1 char(10),f2 text(25),f3 int);
  8054. CREATE TABLE res_t_401016_1(f1 char(10),f2 text(25),f3 int);
  8055. CREATE USER 'u_6_401016'@'localhost';
  8056. GRANT SELECT ON db_datadict.res_t_401016 TO 'u_6_401016'@'localhost';
  8057. FLUSH PRIVILEGES;
  8058. connect(localhost,u_6_401016,,test,MYSQL_PORT,MYSQL_SOCK);
  8059. USE information_schema;
  8060. SELECT table_schema, table_name, engine
  8061. FROM TABLES;
  8062. table_schema table_name engine
  8063. information_schema CHARACTER_SETS MEMORY
  8064. information_schema COLLATIONS MEMORY
  8065. information_schema COLLATION_CHARACTER_SET_APPLICABILITY MEMORY
  8066. information_schema COLUMNS MyISAM
  8067. information_schema COLUMN_PRIVILEGES MEMORY
  8068. information_schema ENGINES MEMORY
  8069. information_schema EVENTS MyISAM
  8070. information_schema FILES MEMORY
  8071. information_schema GLOBAL_STATUS MEMORY
  8072. information_schema GLOBAL_VARIABLES MyISAM
  8073. information_schema KEY_COLUMN_USAGE MEMORY
  8074. information_schema PARTITIONS MyISAM
  8075. information_schema PLUGINS MyISAM
  8076. information_schema PROCESSLIST MyISAM
  8077. information_schema REFERENTIAL_CONSTRAINTS MEMORY
  8078. information_schema ROUTINES MyISAM
  8079. information_schema SCHEMATA MEMORY
  8080. information_schema SCHEMA_PRIVILEGES MEMORY
  8081. information_schema SESSION_STATUS MEMORY
  8082. information_schema SESSION_VARIABLES MyISAM
  8083. information_schema STATISTICS MEMORY
  8084. information_schema TABLES MEMORY
  8085. information_schema TABLE_CONSTRAINTS MEMORY
  8086. information_schema TABLE_PRIVILEGES MEMORY
  8087. information_schema TRIGGERS MyISAM
  8088. information_schema USER_PRIVILEGES MEMORY
  8089. information_schema VIEWS MyISAM
  8090. db_datadict res_t_401016 MyISAM
  8091. test t1 NDBCLUSTER
  8092. test t10 NDBCLUSTER
  8093. test t11 NDBCLUSTER
  8094. test t2 NDBCLUSTER
  8095. test t3 NDBCLUSTER
  8096. test t4 NDBCLUSTER
  8097. test t7 NDBCLUSTER
  8098. test t8 NDBCLUSTER
  8099. test t9 NDBCLUSTER
  8100. test tb1 MyISAM
  8101. test tb2 MyISAM
  8102. test tb3 MyISAM
  8103. test tb4 MyISAM
  8104. SHOW TABLES;
  8105. Tables_in_information_schema
  8106. CHARACTER_SETS
  8107. COLLATIONS
  8108. COLLATION_CHARACTER_SET_APPLICABILITY
  8109. COLUMNS
  8110. COLUMN_PRIVILEGES
  8111. ENGINES
  8112. EVENTS
  8113. FILES
  8114. GLOBAL_STATUS
  8115. GLOBAL_VARIABLES
  8116. KEY_COLUMN_USAGE
  8117. PARTITIONS
  8118. PLUGINS
  8119. PROCESSLIST
  8120. REFERENTIAL_CONSTRAINTS
  8121. ROUTINES
  8122. SCHEMATA
  8123. SCHEMA_PRIVILEGES
  8124. SESSION_STATUS
  8125. SESSION_VARIABLES
  8126. STATISTICS
  8127. TABLES
  8128. TABLE_CONSTRAINTS
  8129. TABLE_PRIVILEGES
  8130. TRIGGERS
  8131. USER_PRIVILEGES
  8132. VIEWS
  8133. SELECT * FROM schemata;
  8134. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  8135. NULL information_schema utf8 utf8_general_ci NULL
  8136. NULL db_datadict latin1 latin1_swedish_ci NULL
  8137. NULL test latin1 latin1_swedish_ci NULL
  8138. root@localhost db_datadict
  8139. grant usage on information_schema.* to 'u_6_401016'@'localhost';
  8140. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8141. FLUSH PRIVILEGES;
  8142. connect(localhost,u_6_401016,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  8143. USE information_schema;
  8144. SHOW TABLES;
  8145. Tables_in_information_schema
  8146. CHARACTER_SETS
  8147. COLLATIONS
  8148. COLLATION_CHARACTER_SET_APPLICABILITY
  8149. COLUMNS
  8150. COLUMN_PRIVILEGES
  8151. ENGINES
  8152. EVENTS
  8153. FILES
  8154. GLOBAL_STATUS
  8155. GLOBAL_VARIABLES
  8156. KEY_COLUMN_USAGE
  8157. PARTITIONS
  8158. PLUGINS
  8159. PROCESSLIST
  8160. REFERENTIAL_CONSTRAINTS
  8161. ROUTINES
  8162. SCHEMATA
  8163. SCHEMA_PRIVILEGES
  8164. SESSION_STATUS
  8165. SESSION_VARIABLES
  8166. STATISTICS
  8167. TABLES
  8168. TABLE_CONSTRAINTS
  8169. TABLE_PRIVILEGES
  8170. TRIGGERS
  8171. USER_PRIVILEGES
  8172. VIEWS
  8173. SELECT * FROM schemata;
  8174. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  8175. NULL information_schema utf8 utf8_general_ci NULL
  8176. NULL db_datadict latin1 latin1_swedish_ci NULL
  8177. NULL test latin1 latin1_swedish_ci NULL
  8178. use db_datadict;
  8179. root@localhost db_datadict
  8180. DROP USER 'u_6_401016'@'localhost';
  8181. drop table res_t_401016;
  8182. drop table res_t_401016_1;
  8183. DROP DATABASE db_hidden;
  8184. Testcase 3.2.1.17:
  8185. --------------------------------------------------------------------------------
  8186. CREATE USER 'u_6_401017'@'localhost';
  8187. grant select on information_schema.* to u_6_401017@localhost;
  8188. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  8189. FLUSH PRIVILEGES;
  8190. connect(localhost,u_6_401017,,test,MYSQL_PORT,MYSQL_SOCK);
  8191. use information_schema;
  8192. select * from collation_character_set_applicability;
  8193. COLLATION_NAME CHARACTER_SET_NAME
  8194. big5_chinese_ci big5
  8195. big5_bin big5
  8196. dec8_swedish_ci dec8
  8197. dec8_bin dec8
  8198. cp850_general_ci cp850
  8199. cp850_bin cp850
  8200. hp8_english_ci hp8
  8201. hp8_bin hp8
  8202. koi8r_general_ci koi8r
  8203. koi8r_bin koi8r
  8204. latin1_german1_ci latin1
  8205. latin1_swedish_ci latin1
  8206. latin1_danish_ci latin1
  8207. latin1_german2_ci latin1
  8208. latin1_bin latin1
  8209. latin1_general_ci latin1
  8210. latin1_general_cs latin1
  8211. latin1_spanish_ci latin1
  8212. latin2_czech_cs latin2
  8213. latin2_general_ci latin2
  8214. latin2_hungarian_ci latin2
  8215. latin2_croatian_ci latin2
  8216. latin2_bin latin2
  8217. swe7_swedish_ci swe7
  8218. swe7_bin swe7
  8219. ascii_general_ci ascii
  8220. ascii_bin ascii
  8221. ujis_japanese_ci ujis
  8222. ujis_bin ujis
  8223. sjis_japanese_ci sjis
  8224. sjis_bin sjis
  8225. hebrew_general_ci hebrew
  8226. hebrew_bin hebrew
  8227. filename filename
  8228. tis620_thai_ci tis620
  8229. tis620_bin tis620
  8230. euckr_korean_ci euckr
  8231. euckr_bin euckr
  8232. koi8u_general_ci koi8u
  8233. koi8u_bin koi8u
  8234. gb2312_chinese_ci gb2312
  8235. gb2312_bin gb2312
  8236. greek_general_ci greek
  8237. greek_bin greek
  8238. cp1250_general_ci cp1250
  8239. cp1250_czech_cs cp1250
  8240. cp1250_croatian_ci cp1250
  8241. cp1250_bin cp1250
  8242. cp1250_polish_ci cp1250
  8243. gbk_chinese_ci gbk
  8244. gbk_bin gbk
  8245. latin5_turkish_ci latin5
  8246. latin5_bin latin5
  8247. armscii8_general_ci armscii8
  8248. armscii8_bin armscii8
  8249. utf8_general_ci utf8
  8250. utf8_bin utf8
  8251. utf8_unicode_ci utf8
  8252. utf8_icelandic_ci utf8
  8253. utf8_latvian_ci utf8
  8254. utf8_romanian_ci utf8
  8255. utf8_slovenian_ci utf8
  8256. utf8_polish_ci utf8
  8257. utf8_estonian_ci utf8
  8258. utf8_spanish_ci utf8
  8259. utf8_swedish_ci utf8
  8260. utf8_turkish_ci utf8
  8261. utf8_czech_ci utf8
  8262. utf8_danish_ci utf8
  8263. utf8_lithuanian_ci utf8
  8264. utf8_slovak_ci utf8
  8265. utf8_spanish2_ci utf8
  8266. utf8_roman_ci utf8
  8267. utf8_persian_ci utf8
  8268. utf8_esperanto_ci utf8
  8269. utf8_hungarian_ci utf8
  8270. ucs2_general_ci ucs2
  8271. ucs2_bin ucs2
  8272. ucs2_unicode_ci ucs2
  8273. ucs2_icelandic_ci ucs2
  8274. ucs2_latvian_ci ucs2
  8275. ucs2_romanian_ci ucs2
  8276. ucs2_slovenian_ci ucs2
  8277. ucs2_polish_ci ucs2
  8278. ucs2_estonian_ci ucs2
  8279. ucs2_spanish_ci ucs2
  8280. ucs2_swedish_ci ucs2
  8281. ucs2_turkish_ci ucs2
  8282. ucs2_czech_ci ucs2
  8283. ucs2_danish_ci ucs2
  8284. ucs2_lithuanian_ci ucs2
  8285. ucs2_slovak_ci ucs2
  8286. ucs2_spanish2_ci ucs2
  8287. ucs2_roman_ci ucs2
  8288. ucs2_persian_ci ucs2
  8289. ucs2_esperanto_ci ucs2
  8290. ucs2_hungarian_ci ucs2
  8291. cp866_general_ci cp866
  8292. cp866_bin cp866
  8293. keybcs2_general_ci keybcs2
  8294. keybcs2_bin keybcs2
  8295. macce_general_ci macce
  8296. macce_bin macce
  8297. macroman_general_ci macroman
  8298. macroman_bin macroman
  8299. cp852_general_ci cp852
  8300. cp852_bin cp852
  8301. latin7_estonian_cs latin7
  8302. latin7_general_ci latin7
  8303. latin7_general_cs latin7
  8304. latin7_bin latin7
  8305. cp1251_bulgarian_ci cp1251
  8306. cp1251_ukrainian_ci cp1251
  8307. cp1251_bin cp1251
  8308. cp1251_general_ci cp1251
  8309. cp1251_general_cs cp1251
  8310. cp1256_general_ci cp1256
  8311. cp1256_bin cp1256
  8312. cp1257_lithuanian_ci cp1257
  8313. cp1257_bin cp1257
  8314. cp1257_general_ci cp1257
  8315. binary binary
  8316. geostd8_general_ci geostd8
  8317. geostd8_bin geostd8
  8318. cp932_japanese_ci cp932
  8319. cp932_bin cp932
  8320. eucjpms_japanese_ci eucjpms
  8321. eucjpms_bin eucjpms
  8322. select * from schemata;
  8323. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  8324. NULL information_schema utf8 utf8_general_ci NULL
  8325. NULL test latin1 latin1_swedish_ci NULL
  8326. select table_name from tables;
  8327. table_name
  8328. CHARACTER_SETS
  8329. COLLATIONS
  8330. COLLATION_CHARACTER_SET_APPLICABILITY
  8331. COLUMNS
  8332. COLUMN_PRIVILEGES
  8333. ENGINES
  8334. EVENTS
  8335. FILES
  8336. GLOBAL_STATUS
  8337. GLOBAL_VARIABLES
  8338. KEY_COLUMN_USAGE
  8339. PARTITIONS
  8340. PLUGINS
  8341. PROCESSLIST
  8342. REFERENTIAL_CONSTRAINTS
  8343. ROUTINES
  8344. SCHEMATA
  8345. SCHEMA_PRIVILEGES
  8346. SESSION_STATUS
  8347. SESSION_VARIABLES
  8348. STATISTICS
  8349. TABLES
  8350. TABLE_CONSTRAINTS
  8351. TABLE_PRIVILEGES
  8352. TRIGGERS
  8353. USER_PRIVILEGES
  8354. VIEWS
  8355. t1
  8356. t10
  8357. t11
  8358. t2
  8359. t3
  8360. t4
  8361. t7
  8362. t8
  8363. t9
  8364. tb1
  8365. tb2
  8366. tb3
  8367. tb4
  8368. select table_name, column_name, column_type from columns;
  8369. table_name column_name column_type
  8370. CHARACTER_SETS CHARACTER_SET_NAME varchar(64)
  8371. CHARACTER_SETS DEFAULT_COLLATE_NAME varchar(64)
  8372. CHARACTER_SETS DESCRIPTION varchar(60)
  8373. CHARACTER_SETS MAXLEN bigint(3)
  8374. COLLATIONS COLLATION_NAME varchar(64)
  8375. COLLATIONS CHARACTER_SET_NAME varchar(64)
  8376. COLLATIONS ID bigint(11)
  8377. COLLATIONS IS_DEFAULT varchar(3)
  8378. COLLATIONS IS_COMPILED varchar(3)
  8379. COLLATIONS SORTLEN bigint(3)
  8380. COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME varchar(64)
  8381. COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME varchar(64)
  8382. COLUMNS TABLE_CATALOG varchar(4096)
  8383. COLUMNS TABLE_SCHEMA varchar(64)
  8384. COLUMNS TABLE_NAME varchar(64)
  8385. COLUMNS COLUMN_NAME varchar(64)
  8386. COLUMNS ORDINAL_POSITION bigint(21)
  8387. COLUMNS COLUMN_DEFAULT longtext
  8388. COLUMNS IS_NULLABLE varchar(3)
  8389. COLUMNS DATA_TYPE varchar(64)
  8390. COLUMNS CHARACTER_MAXIMUM_LENGTH bigint(21)
  8391. COLUMNS CHARACTER_OCTET_LENGTH bigint(21)
  8392. COLUMNS NUMERIC_PRECISION bigint(21)
  8393. COLUMNS NUMERIC_SCALE bigint(21)
  8394. COLUMNS CHARACTER_SET_NAME varchar(64)
  8395. COLUMNS COLLATION_NAME varchar(64)
  8396. COLUMNS COLUMN_TYPE longtext
  8397. COLUMNS COLUMN_KEY varchar(3)
  8398. COLUMNS EXTRA varchar(20)
  8399. COLUMNS PRIVILEGES varchar(80)
  8400. COLUMNS COLUMN_COMMENT varchar(255)
  8401. COLUMN_PRIVILEGES GRANTEE varchar(81)
  8402. COLUMN_PRIVILEGES TABLE_CATALOG varchar(4096)
  8403. COLUMN_PRIVILEGES TABLE_SCHEMA varchar(64)
  8404. COLUMN_PRIVILEGES TABLE_NAME varchar(64)
  8405. COLUMN_PRIVILEGES COLUMN_NAME varchar(64)
  8406. COLUMN_PRIVILEGES PRIVILEGE_TYPE varchar(64)
  8407. COLUMN_PRIVILEGES IS_GRANTABLE varchar(3)
  8408. ENGINES ENGINE varchar(64)
  8409. ENGINES SUPPORT varchar(8)
  8410. ENGINES COMMENT varchar(80)
  8411. ENGINES TRANSACTIONS varchar(3)
  8412. ENGINES XA varchar(3)
  8413. ENGINES SAVEPOINTS varchar(3)
  8414. EVENTS EVENT_CATALOG varchar(64)
  8415. EVENTS EVENT_SCHEMA varchar(64)
  8416. EVENTS EVENT_NAME varchar(64)
  8417. EVENTS DEFINER varchar(77)
  8418. EVENTS EVENT_BODY varchar(8)
  8419. EVENTS EVENT_DEFINITION longtext
  8420. EVENTS EVENT_TYPE varchar(9)
  8421. EVENTS EXECUTE_AT datetime
  8422. EVENTS INTERVAL_VALUE varchar(256)
  8423. EVENTS INTERVAL_FIELD varchar(18)
  8424. EVENTS SQL_MODE longtext
  8425. EVENTS STARTS datetime
  8426. EVENTS ENDS datetime
  8427. EVENTS STATUS varchar(8)
  8428. EVENTS ON_COMPLETION varchar(12)
  8429. EVENTS CREATED datetime
  8430. EVENTS LAST_ALTERED datetime
  8431. EVENTS LAST_EXECUTED datetime
  8432. EVENTS EVENT_COMMENT varchar(64)
  8433. FILES FILE_ID bigint(4)
  8434. FILES FILE_NAME varchar(64)
  8435. FILES FILE_TYPE varchar(20)
  8436. FILES TABLESPACE_NAME varchar(64)
  8437. FILES TABLE_CATALOG varchar(64)
  8438. FILES TABLE_SCHEMA varchar(64)
  8439. FILES TABLE_NAME varchar(64)
  8440. FILES LOGFILE_GROUP_NAME varchar(64)
  8441. FILES LOGFILE_GROUP_NUMBER bigint(4)
  8442. FILES ENGINE varchar(64)
  8443. FILES FULLTEXT_KEYS varchar(64)
  8444. FILES DELETED_ROWS bigint(4)
  8445. FILES UPDATE_COUNT bigint(4)
  8446. FILES FREE_EXTENTS bigint(4)
  8447. FILES TOTAL_EXTENTS bigint(4)
  8448. FILES EXTENT_SIZE bigint(4)
  8449. FILES INITIAL_SIZE bigint(21)
  8450. FILES MAXIMUM_SIZE bigint(21)
  8451. FILES AUTOEXTEND_SIZE bigint(21)
  8452. FILES CREATION_TIME datetime
  8453. FILES LAST_UPDATE_TIME datetime
  8454. FILES LAST_ACCESS_TIME datetime
  8455. FILES RECOVER_TIME bigint(4)
  8456. FILES TRANSACTION_COUNTER bigint(4)
  8457. FILES VERSION bigint(21)
  8458. FILES ROW_FORMAT varchar(10)
  8459. FILES TABLE_ROWS bigint(21)
  8460. FILES AVG_ROW_LENGTH bigint(21)
  8461. FILES DATA_LENGTH bigint(21)
  8462. FILES MAX_DATA_LENGTH bigint(21)
  8463. FILES INDEX_LENGTH bigint(21)
  8464. FILES DATA_FREE bigint(21)
  8465. FILES CREATE_TIME datetime
  8466. FILES UPDATE_TIME datetime
  8467. FILES CHECK_TIME datetime
  8468. FILES CHECKSUM bigint(21)
  8469. FILES STATUS varchar(20)
  8470. FILES EXTRA varchar(255)
  8471. GLOBAL_STATUS VARIABLE_NAME varchar(64)
  8472. GLOBAL_STATUS VARIABLE_VALUE decimal(22,7)
  8473. GLOBAL_VARIABLES VARIABLE_NAME varchar(64)
  8474. GLOBAL_VARIABLES VARIABLE_VALUE longtext
  8475. KEY_COLUMN_USAGE CONSTRAINT_CATALOG varchar(4096)
  8476. KEY_COLUMN_USAGE CONSTRAINT_SCHEMA varchar(64)
  8477. KEY_COLUMN_USAGE CONSTRAINT_NAME varchar(64)
  8478. KEY_COLUMN_USAGE TABLE_CATALOG varchar(4096)
  8479. KEY_COLUMN_USAGE TABLE_SCHEMA varchar(64)
  8480. KEY_COLUMN_USAGE TABLE_NAME varchar(64)
  8481. KEY_COLUMN_USAGE COLUMN_NAME varchar(64)
  8482. KEY_COLUMN_USAGE ORDINAL_POSITION bigint(10)
  8483. KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT bigint(10)
  8484. KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA varchar(64)
  8485. KEY_COLUMN_USAGE REFERENCED_TABLE_NAME varchar(64)
  8486. KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME varchar(64)
  8487. PARTITIONS TABLE_CATALOG varchar(4096)
  8488. PARTITIONS TABLE_SCHEMA varchar(64)
  8489. PARTITIONS TABLE_NAME varchar(64)
  8490. PARTITIONS PARTITION_NAME varchar(64)
  8491. PARTITIONS SUBPARTITION_NAME varchar(64)
  8492. PARTITIONS PARTITION_ORDINAL_POSITION bigint(21)
  8493. PARTITIONS SUBPARTITION_ORDINAL_POSITION bigint(21)
  8494. PARTITIONS PARTITION_METHOD varchar(12)
  8495. PARTITIONS SUBPARTITION_METHOD varchar(12)
  8496. PARTITIONS PARTITION_EXPRESSION longtext
  8497. PARTITIONS SUBPARTITION_EXPRESSION longtext
  8498. PARTITIONS PARTITION_DESCRIPTION longtext
  8499. PARTITIONS TABLE_ROWS bigint(21)
  8500. PARTITIONS AVG_ROW_LENGTH bigint(21)
  8501. PARTITIONS DATA_LENGTH bigint(21)
  8502. PARTITIONS MAX_DATA_LENGTH bigint(21)
  8503. PARTITIONS INDEX_LENGTH bigint(21)
  8504. PARTITIONS DATA_FREE bigint(21)
  8505. PARTITIONS CREATE_TIME datetime
  8506. PARTITIONS UPDATE_TIME datetime
  8507. PARTITIONS CHECK_TIME datetime
  8508. PARTITIONS CHECKSUM bigint(21)
  8509. PARTITIONS PARTITION_COMMENT varchar(80)
  8510. PARTITIONS NODEGROUP varchar(12)
  8511. PARTITIONS TABLESPACE_NAME varchar(64)
  8512. PLUGINS PLUGIN_NAME varchar(64)
  8513. PLUGINS PLUGIN_VERSION varchar(20)
  8514. PLUGINS PLUGIN_STATUS varchar(10)
  8515. PLUGINS PLUGIN_TYPE varchar(80)
  8516. PLUGINS PLUGIN_TYPE_VERSION varchar(20)
  8517. PLUGINS PLUGIN_LIBRARY varchar(64)
  8518. PLUGINS PLUGIN_LIBRARY_VERSION varchar(20)
  8519. PLUGINS PLUGIN_AUTHOR varchar(64)
  8520. PLUGINS PLUGIN_DESCRIPTION longtext
  8521. PLUGINS PLUGIN_LICENSE varchar(80)
  8522. PROCESSLIST ID bigint(4)
  8523. PROCESSLIST USER varchar(16)
  8524. PROCESSLIST HOST varchar(64)
  8525. PROCESSLIST DB varchar(64)
  8526. PROCESSLIST COMMAND varchar(16)
  8527. PROCESSLIST TIME bigint(7)
  8528. PROCESSLIST STATE varchar(64)
  8529. PROCESSLIST INFO longtext
  8530. REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG varchar(4096)
  8531. REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA varchar(64)
  8532. REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME varchar(64)
  8533. REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG varchar(4096)
  8534. REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA varchar(64)
  8535. REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME varchar(64)
  8536. REFERENTIAL_CONSTRAINTS MATCH_OPTION varchar(64)
  8537. REFERENTIAL_CONSTRAINTS UPDATE_RULE varchar(64)
  8538. REFERENTIAL_CONSTRAINTS DELETE_RULE varchar(64)
  8539. REFERENTIAL_CONSTRAINTS TABLE_NAME varchar(64)
  8540. REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME varchar(64)
  8541. ROUTINES SPECIFIC_NAME varchar(64)
  8542. ROUTINES ROUTINE_CATALOG varchar(4096)
  8543. ROUTINES ROUTINE_SCHEMA varchar(64)
  8544. ROUTINES ROUTINE_NAME varchar(64)
  8545. ROUTINES ROUTINE_TYPE varchar(9)
  8546. ROUTINES DTD_IDENTIFIER varchar(64)
  8547. ROUTINES ROUTINE_BODY varchar(8)
  8548. ROUTINES ROUTINE_DEFINITION longtext
  8549. ROUTINES EXTERNAL_NAME varchar(64)
  8550. ROUTINES EXTERNAL_LANGUAGE varchar(64)
  8551. ROUTINES PARAMETER_STYLE varchar(8)
  8552. ROUTINES IS_DETERMINISTIC varchar(3)
  8553. ROUTINES SQL_DATA_ACCESS varchar(64)
  8554. ROUTINES SQL_PATH varchar(64)
  8555. ROUTINES SECURITY_TYPE varchar(7)
  8556. ROUTINES CREATED datetime
  8557. ROUTINES LAST_ALTERED datetime
  8558. ROUTINES SQL_MODE longtext
  8559. ROUTINES ROUTINE_COMMENT varchar(64)
  8560. ROUTINES DEFINER varchar(77)
  8561. SCHEMATA CATALOG_NAME varchar(4096)
  8562. SCHEMATA SCHEMA_NAME varchar(64)
  8563. SCHEMATA DEFAULT_CHARACTER_SET_NAME varchar(64)
  8564. SCHEMATA DEFAULT_COLLATION_NAME varchar(64)
  8565. SCHEMATA SQL_PATH varchar(4096)
  8566. SCHEMA_PRIVILEGES GRANTEE varchar(81)
  8567. SCHEMA_PRIVILEGES TABLE_CATALOG varchar(4096)
  8568. SCHEMA_PRIVILEGES TABLE_SCHEMA varchar(64)
  8569. SCHEMA_PRIVILEGES PRIVILEGE_TYPE varchar(64)
  8570. SCHEMA_PRIVILEGES IS_GRANTABLE varchar(3)
  8571. SESSION_STATUS VARIABLE_NAME varchar(64)
  8572. SESSION_STATUS VARIABLE_VALUE decimal(22,7)
  8573. SESSION_VARIABLES VARIABLE_NAME varchar(64)
  8574. SESSION_VARIABLES VARIABLE_VALUE longtext
  8575. STATISTICS TABLE_CATALOG varchar(4096)
  8576. STATISTICS TABLE_SCHEMA varchar(64)
  8577. STATISTICS TABLE_NAME varchar(64)
  8578. STATISTICS NON_UNIQUE bigint(1)
  8579. STATISTICS INDEX_SCHEMA varchar(64)
  8580. STATISTICS INDEX_NAME varchar(64)
  8581. STATISTICS SEQ_IN_INDEX bigint(2)
  8582. STATISTICS COLUMN_NAME varchar(64)
  8583. STATISTICS COLLATION varchar(1)
  8584. STATISTICS CARDINALITY bigint(21)
  8585. STATISTICS SUB_PART bigint(3)
  8586. STATISTICS PACKED varchar(10)
  8587. STATISTICS NULLABLE varchar(3)
  8588. STATISTICS INDEX_TYPE varchar(16)
  8589. STATISTICS COMMENT varchar(16)
  8590. TABLES TABLE_CATALOG varchar(4096)
  8591. TABLES TABLE_SCHEMA varchar(64)
  8592. TABLES TABLE_NAME varchar(64)
  8593. TABLES TABLE_TYPE varchar(64)
  8594. TABLES ENGINE varchar(64)
  8595. TABLES VERSION bigint(21)
  8596. TABLES ROW_FORMAT varchar(10)
  8597. TABLES TABLE_ROWS bigint(21)
  8598. TABLES AVG_ROW_LENGTH bigint(21)
  8599. TABLES DATA_LENGTH bigint(21)
  8600. TABLES MAX_DATA_LENGTH bigint(21)
  8601. TABLES INDEX_LENGTH bigint(21)
  8602. TABLES DATA_FREE bigint(21)
  8603. TABLES AUTO_INCREMENT bigint(21)
  8604. TABLES CREATE_TIME datetime
  8605. TABLES UPDATE_TIME datetime
  8606. TABLES CHECK_TIME datetime
  8607. TABLES TABLE_COLLATION varchar(64)
  8608. TABLES CHECKSUM bigint(21)
  8609. TABLES CREATE_OPTIONS varchar(255)
  8610. TABLES TABLE_COMMENT varchar(80)
  8611. TABLE_CONSTRAINTS CONSTRAINT_CATALOG varchar(4096)
  8612. TABLE_CONSTRAINTS CONSTRAINT_SCHEMA varchar(64)
  8613. TABLE_CONSTRAINTS CONSTRAINT_NAME varchar(64)
  8614. TABLE_CONSTRAINTS TABLE_SCHEMA varchar(64)
  8615. TABLE_CONSTRAINTS TABLE_NAME varchar(64)
  8616. TABLE_CONSTRAINTS CONSTRAINT_TYPE varchar(64)
  8617. TABLE_PRIVILEGES GRANTEE varchar(81)
  8618. TABLE_PRIVILEGES TABLE_CATALOG varchar(4096)
  8619. TABLE_PRIVILEGES TABLE_SCHEMA varchar(64)
  8620. TABLE_PRIVILEGES TABLE_NAME varchar(64)
  8621. TABLE_PRIVILEGES PRIVILEGE_TYPE varchar(64)
  8622. TABLE_PRIVILEGES IS_GRANTABLE varchar(3)
  8623. TRIGGERS TRIGGER_CATALOG varchar(4096)
  8624. TRIGGERS TRIGGER_SCHEMA varchar(64)
  8625. TRIGGERS TRIGGER_NAME varchar(64)
  8626. TRIGGERS EVENT_MANIPULATION varchar(6)
  8627. TRIGGERS EVENT_OBJECT_CATALOG varchar(4096)
  8628. TRIGGERS EVENT_OBJECT_SCHEMA varchar(64)
  8629. TRIGGERS EVENT_OBJECT_TABLE varchar(64)
  8630. TRIGGERS ACTION_ORDER bigint(4)
  8631. TRIGGERS ACTION_CONDITION longtext
  8632. TRIGGERS ACTION_STATEMENT longtext
  8633. TRIGGERS ACTION_ORIENTATION varchar(9)
  8634. TRIGGERS ACTION_TIMING varchar(6)
  8635. TRIGGERS ACTION_REFERENCE_OLD_TABLE varchar(64)
  8636. TRIGGERS ACTION_REFERENCE_NEW_TABLE varchar(64)
  8637. TRIGGERS ACTION_REFERENCE_OLD_ROW varchar(3)
  8638. TRIGGERS ACTION_REFERENCE_NEW_ROW varchar(3)
  8639. TRIGGERS CREATED datetime
  8640. TRIGGERS SQL_MODE longtext
  8641. TRIGGERS DEFINER longtext
  8642. USER_PRIVILEGES GRANTEE varchar(81)
  8643. USER_PRIVILEGES TABLE_CATALOG varchar(4096)
  8644. USER_PRIVILEGES PRIVILEGE_TYPE varchar(64)
  8645. USER_PRIVILEGES IS_GRANTABLE varchar(3)
  8646. VIEWS TABLE_CATALOG varchar(4096)
  8647. VIEWS TABLE_SCHEMA varchar(64)
  8648. VIEWS TABLE_NAME varchar(64)
  8649. VIEWS VIEW_DEFINITION longtext
  8650. VIEWS CHECK_OPTION varchar(8)
  8651. VIEWS IS_UPDATABLE varchar(3)
  8652. VIEWS DEFINER varchar(77)
  8653. VIEWS SECURITY_TYPE varchar(7)
  8654. t1 f1 char(20)
  8655. t1 f2 char(25)
  8656. t1 f3 date
  8657. t1 f4 int(11)
  8658. t1 f5 char(25)
  8659. t1 f6 int(11)
  8660. t10 f1 char(20)
  8661. t10 f2 char(25)
  8662. t10 f3 date
  8663. t10 f4 int(11)
  8664. t10 f5 char(25)
  8665. t10 f6 int(11)
  8666. t11 f1 char(20)
  8667. t11 f2 char(25)
  8668. t11 f3 date
  8669. t11 f4 int(11)
  8670. t11 f5 char(25)
  8671. t11 f6 int(11)
  8672. t2 f1 char(20)
  8673. t2 f2 char(25)
  8674. t2 f3 date
  8675. t2 f4 int(11)
  8676. t2 f5 char(25)
  8677. t2 f6 int(11)
  8678. t3 f1 char(20)
  8679. t3 f2 char(20)
  8680. t3 f3 int(11)
  8681. t4 f1 char(20)
  8682. t4 f2 char(25)
  8683. t4 f3 date
  8684. t4 f4 int(11)
  8685. t4 f5 char(25)
  8686. t4 f6 int(11)
  8687. t7 f1 char(20)
  8688. t7 f2 char(25)
  8689. t7 f3 date
  8690. t7 f4 int(11)
  8691. t8 f1 char(20)
  8692. t8 f2 char(25)
  8693. t8 f3 date
  8694. t8 f4 int(11)
  8695. t9 f1 int(11)
  8696. t9 f2 char(25)
  8697. t9 f3 int(11)
  8698. tb1 f1 char(1)
  8699. tb1 f2 char(1)
  8700. tb1 f3 char(1)
  8701. tb1 f4 tinytext
  8702. tb1 f5 text
  8703. tb1 f6 mediumtext
  8704. tb1 f7 longtext
  8705. tb1 f8 tinyblob
  8706. tb1 f9 blob
  8707. tb1 f10 mediumblob
  8708. tb1 f11 longblob
  8709. tb1 f12 binary(1)
  8710. tb1 f13 tinyint(4)
  8711. tb1 f14 tinyint(3) unsigned
  8712. tb1 f15 tinyint(3) unsigned zerofill
  8713. tb1 f16 tinyint(3) unsigned zerofill
  8714. tb1 f17 smallint(6)
  8715. tb1 f18 smallint(5) unsigned
  8716. tb1 f19 smallint(5) unsigned zerofill
  8717. tb1 f20 smallint(5) unsigned zerofill
  8718. tb1 f21 mediumint(9)
  8719. tb1 f22 mediumint(8) unsigned
  8720. tb1 f23 mediumint(8) unsigned zerofill
  8721. tb1 f24 mediumint(8) unsigned zerofill
  8722. tb1 f25 int(11)
  8723. tb1 f26 int(10) unsigned
  8724. tb1 f27 int(10) unsigned zerofill
  8725. tb1 f28 int(10) unsigned zerofill
  8726. tb1 f29 bigint(20)
  8727. tb1 f30 bigint(20) unsigned
  8728. tb1 f31 bigint(20) unsigned zerofill
  8729. tb1 f32 bigint(20) unsigned zerofill
  8730. tb1 f33 decimal(10,0)
  8731. tb1 f34 decimal(10,0) unsigned
  8732. tb1 f35 decimal(10,0) unsigned zerofill
  8733. tb1 f36 decimal(10,0) unsigned zerofill
  8734. tb1 f37 decimal(10,0)
  8735. tb1 f38 decimal(64,0)
  8736. tb1 f39 decimal(10,0) unsigned
  8737. tb1 f40 decimal(64,0) unsigned
  8738. tb1 f41 decimal(10,0) unsigned zerofill
  8739. tb1 f42 decimal(64,0) unsigned zerofill
  8740. tb1 f43 decimal(10,0) unsigned zerofill
  8741. tb1 f44 decimal(64,0) unsigned zerofill
  8742. tb1 f45 decimal(10,0)
  8743. tb1 f46 decimal(63,30)
  8744. tb1 f47 decimal(10,0) unsigned
  8745. tb1 f48 decimal(63,30) unsigned
  8746. tb1 f49 decimal(10,0) unsigned zerofill
  8747. tb1 f50 decimal(63,30) unsigned zerofill
  8748. tb1 f51 decimal(10,0) unsigned zerofill
  8749. tb1 f52 decimal(63,30) unsigned zerofill
  8750. tb1 f53 decimal(10,0)
  8751. tb1 f54 decimal(10,0) unsigned
  8752. tb1 f55 decimal(10,0) unsigned zerofill
  8753. tb1 f56 decimal(10,0) unsigned zerofill
  8754. tb1 f57 decimal(10,0)
  8755. tb1 f58 decimal(64,0)
  8756. tb2 f59 decimal(10,0) unsigned
  8757. tb2 f60 decimal(64,0) unsigned
  8758. tb2 f61 decimal(10,0) unsigned zerofill
  8759. tb2 f62 decimal(64,0) unsigned zerofill
  8760. tb2 f63 decimal(10,0) unsigned zerofill
  8761. tb2 f64 decimal(64,0) unsigned zerofill
  8762. tb2 f65 decimal(10,0)
  8763. tb2 f66 decimal(63,30)
  8764. tb2 f67 decimal(10,0) unsigned
  8765. tb2 f68 decimal(63,30) unsigned
  8766. tb2 f69 decimal(10,0) unsigned zerofill
  8767. tb2 f70 decimal(63,30) unsigned zerofill
  8768. tb2 f71 decimal(10,0) unsigned zerofill
  8769. tb2 f72 decimal(63,30) unsigned zerofill
  8770. tb2 f73 double
  8771. tb2 f74 double unsigned
  8772. tb2 f75 double unsigned zerofill
  8773. tb2 f76 double unsigned zerofill
  8774. tb2 f77 double
  8775. tb2 f78 double unsigned
  8776. tb2 f79 double unsigned zerofill
  8777. tb2 f80 double unsigned zerofill
  8778. tb2 f81 float
  8779. tb2 f82 float unsigned
  8780. tb2 f83 float unsigned zerofill
  8781. tb2 f84 float unsigned zerofill
  8782. tb2 f85 float
  8783. tb2 f86 float
  8784. tb2 f87 float unsigned
  8785. tb2 f88 float unsigned
  8786. tb2 f89 float unsigned zerofill
  8787. tb2 f90 float unsigned zerofill
  8788. tb2 f91 float unsigned zerofill
  8789. tb2 f92 float unsigned zerofill
  8790. tb2 f93 float
  8791. tb2 f94 double
  8792. tb2 f95 float unsigned
  8793. tb2 f96 double unsigned
  8794. tb2 f97 float unsigned zerofill
  8795. tb2 f98 double unsigned zerofill
  8796. tb2 f99 float unsigned zerofill
  8797. tb2 f100 double unsigned zerofill
  8798. tb2 f101 date
  8799. tb2 f102 time
  8800. tb2 f103 datetime
  8801. tb2 f104 timestamp
  8802. tb2 f105 year(4)
  8803. tb2 f106 year(4)
  8804. tb2 f107 year(4)
  8805. tb2 f108 enum('1enum','2enum')
  8806. tb2 f109 set('1set','2set')
  8807. tb2 f110 varbinary(64)
  8808. tb2 f111 varbinary(27)
  8809. tb2 f112 varbinary(64)
  8810. tb2 f113 varbinary(192)
  8811. tb2 f114 varbinary(192)
  8812. tb2 f115 varbinary(27)
  8813. tb2 f116 varbinary(64)
  8814. tb2 f117 varbinary(192)
  8815. tb3 f118 char(1)
  8816. tb3 f119 char(1)
  8817. tb3 f120 char(1)
  8818. tb3 f121 tinytext
  8819. tb3 f122 text
  8820. tb3 f123 mediumtext
  8821. tb3 f124 longtext
  8822. tb3 f125 tinyblob
  8823. tb3 f126 blob
  8824. tb3 f127 mediumblob
  8825. tb3 f128 longblob
  8826. tb3 f129 binary(1)
  8827. tb3 f130 tinyint(4)
  8828. tb3 f131 tinyint(3) unsigned
  8829. tb3 f132 tinyint(3) unsigned zerofill
  8830. tb3 f133 tinyint(3) unsigned zerofill
  8831. tb3 f134 smallint(6)
  8832. tb3 f135 smallint(5) unsigned
  8833. tb3 f136 smallint(5) unsigned zerofill
  8834. tb3 f137 smallint(5) unsigned zerofill
  8835. tb3 f138 mediumint(9)
  8836. tb3 f139 mediumint(8) unsigned
  8837. tb3 f140 mediumint(8) unsigned zerofill
  8838. tb3 f141 mediumint(8) unsigned zerofill
  8839. tb3 f142 int(11)
  8840. tb3 f143 int(10) unsigned
  8841. tb3 f144 int(10) unsigned zerofill
  8842. tb3 f145 int(10) unsigned zerofill
  8843. tb3 f146 bigint(20)
  8844. tb3 f147 bigint(20) unsigned
  8845. tb3 f148 bigint(20) unsigned zerofill
  8846. tb3 f149 bigint(20) unsigned zerofill
  8847. tb3 f150 decimal(10,0)
  8848. tb3 f151 decimal(10,0) unsigned
  8849. tb3 f152 decimal(10,0) unsigned zerofill
  8850. tb3 f153 decimal(10,0) unsigned zerofill
  8851. tb3 f154 decimal(10,0)
  8852. tb3 f155 decimal(64,0)
  8853. tb3 f156 decimal(10,0) unsigned
  8854. tb3 f157 decimal(64,0) unsigned
  8855. tb3 f158 decimal(10,0) unsigned zerofill
  8856. tb3 f159 decimal(64,0) unsigned zerofill
  8857. tb3 f160 decimal(10,0) unsigned zerofill
  8858. tb3 f161 decimal(64,0) unsigned zerofill
  8859. tb3 f162 decimal(10,0)
  8860. tb3 f163 decimal(63,30)
  8861. tb3 f164 decimal(10,0) unsigned
  8862. tb3 f165 decimal(63,30) unsigned
  8863. tb3 f166 decimal(10,0) unsigned zerofill
  8864. tb3 f167 decimal(63,30) unsigned zerofill
  8865. tb3 f168 decimal(10,0) unsigned zerofill
  8866. tb3 f169 decimal(63,30) unsigned zerofill
  8867. tb3 f170 decimal(10,0)
  8868. tb3 f171 decimal(10,0) unsigned
  8869. tb3 f172 decimal(10,0) unsigned zerofill
  8870. tb3 f173 decimal(10,0) unsigned zerofill
  8871. tb3 f174 decimal(10,0)
  8872. tb3 f175 decimal(64,0)
  8873. tb4 f176 decimal(10,0) unsigned
  8874. tb4 f177 decimal(64,0) unsigned
  8875. tb4 f178 decimal(10,0) unsigned zerofill
  8876. tb4 f179 decimal(64,0) unsigned zerofill
  8877. tb4 f180 decimal(10,0) unsigned zerofill
  8878. tb4 f181 decimal(64,0) unsigned zerofill
  8879. tb4 f182 decimal(10,0)
  8880. tb4 f183 decimal(63,30)
  8881. tb4 f184 decimal(10,0) unsigned
  8882. tb4 f185 decimal(63,30) unsigned
  8883. tb4 f186 decimal(10,0) unsigned zerofill
  8884. tb4 f187 decimal(63,30) unsigned zerofill
  8885. tb4 f188 decimal(10,0) unsigned zerofill
  8886. tb4 f189 decimal(63,30) unsigned zerofill
  8887. tb4 f190 double
  8888. tb4 f191 double unsigned
  8889. tb4 f192 double unsigned zerofill
  8890. tb4 f193 double unsigned zerofill
  8891. tb4 f194 double
  8892. tb4 f195 double unsigned
  8893. tb4 f196 double unsigned zerofill
  8894. tb4 f197 double unsigned zerofill
  8895. tb4 f198 float
  8896. tb4 f199 float unsigned
  8897. tb4 f200 float unsigned zerofill
  8898. tb4 f201 float unsigned zerofill
  8899. tb4 f202 float
  8900. tb4 f203 float
  8901. tb4 f204 float unsigned
  8902. tb4 f205 float unsigned
  8903. tb4 f206 float unsigned zerofill
  8904. tb4 f207 float unsigned zerofill
  8905. tb4 f208 float unsigned zerofill
  8906. tb4 f209 float unsigned zerofill
  8907. tb4 f210 float
  8908. tb4 f211 double
  8909. tb4 f212 float unsigned
  8910. tb4 f213 double unsigned
  8911. tb4 f214 float unsigned zerofill
  8912. tb4 f215 double unsigned zerofill
  8913. tb4 f216 float unsigned zerofill
  8914. tb4 f217 double unsigned zerofill
  8915. tb4 f218 date
  8916. tb4 f219 time
  8917. tb4 f220 datetime
  8918. tb4 f221 timestamp
  8919. tb4 f222 year(4)
  8920. tb4 f223 year(4)
  8921. tb4 f224 year(4)
  8922. tb4 f225 enum('1enum','2enum')
  8923. tb4 f226 set('1set','2set')
  8924. tb4 f227 varbinary(64)
  8925. tb4 f228 varbinary(27)
  8926. tb4 f229 varbinary(64)
  8927. tb4 f230 varbinary(192)
  8928. tb4 f231 varbinary(192)
  8929. tb4 f232 varbinary(27)
  8930. tb4 f233 varbinary(64)
  8931. tb4 f234 varbinary(192)
  8932. tb4 f235 char(255)
  8933. tb4 f236 char(60)
  8934. tb4 f237 char(255)
  8935. tb4 f238 varchar(0)
  8936. tb4 f239 varbinary(1000)
  8937. tb4 f240 varchar(120)
  8938. tb4 f241 char(100)
  8939. tb4 f242 bit(30)
  8940. select character_set_name from character_sets;
  8941. character_set_name
  8942. big5
  8943. dec8
  8944. cp850
  8945. hp8
  8946. koi8r
  8947. latin1
  8948. latin2
  8949. swe7
  8950. ascii
  8951. ujis
  8952. sjis
  8953. hebrew
  8954. tis620
  8955. euckr
  8956. koi8u
  8957. gb2312
  8958. greek
  8959. cp1250
  8960. gbk
  8961. latin5
  8962. armscii8
  8963. utf8
  8964. ucs2
  8965. cp866
  8966. keybcs2
  8967. macce
  8968. macroman
  8969. cp852
  8970. latin7
  8971. cp1251
  8972. cp1256
  8973. cp1257
  8974. binary
  8975. geostd8
  8976. cp932
  8977. eucjpms
  8978. select collation_name from collations;
  8979. collation_name
  8980. big5_chinese_ci
  8981. big5_bin
  8982. dec8_swedish_ci
  8983. dec8_bin
  8984. cp850_general_ci
  8985. cp850_bin
  8986. hp8_english_ci
  8987. hp8_bin
  8988. koi8r_general_ci
  8989. koi8r_bin
  8990. latin1_german1_ci
  8991. latin1_swedish_ci
  8992. latin1_danish_ci
  8993. latin1_german2_ci
  8994. latin1_bin
  8995. latin1_general_ci
  8996. latin1_general_cs
  8997. latin1_spanish_ci
  8998. latin2_czech_cs
  8999. latin2_general_ci
  9000. latin2_hungarian_ci
  9001. latin2_croatian_ci
  9002. latin2_bin
  9003. swe7_swedish_ci
  9004. swe7_bin
  9005. ascii_general_ci
  9006. ascii_bin
  9007. ujis_japanese_ci
  9008. ujis_bin
  9009. sjis_japanese_ci
  9010. sjis_bin
  9011. hebrew_general_ci
  9012. hebrew_bin
  9013. tis620_thai_ci
  9014. tis620_bin
  9015. euckr_korean_ci
  9016. euckr_bin
  9017. koi8u_general_ci
  9018. koi8u_bin
  9019. gb2312_chinese_ci
  9020. gb2312_bin
  9021. greek_general_ci
  9022. greek_bin
  9023. cp1250_general_ci
  9024. cp1250_czech_cs
  9025. cp1250_croatian_ci
  9026. cp1250_bin
  9027. cp1250_polish_ci
  9028. gbk_chinese_ci
  9029. gbk_bin
  9030. latin5_turkish_ci
  9031. latin5_bin
  9032. armscii8_general_ci
  9033. armscii8_bin
  9034. utf8_general_ci
  9035. utf8_bin
  9036. utf8_unicode_ci
  9037. utf8_icelandic_ci
  9038. utf8_latvian_ci
  9039. utf8_romanian_ci
  9040. utf8_slovenian_ci
  9041. utf8_polish_ci
  9042. utf8_estonian_ci
  9043. utf8_spanish_ci
  9044. utf8_swedish_ci
  9045. utf8_turkish_ci
  9046. utf8_czech_ci
  9047. utf8_danish_ci
  9048. utf8_lithuanian_ci
  9049. utf8_slovak_ci
  9050. utf8_spanish2_ci
  9051. utf8_roman_ci
  9052. utf8_persian_ci
  9053. utf8_esperanto_ci
  9054. utf8_hungarian_ci
  9055. ucs2_general_ci
  9056. ucs2_bin
  9057. ucs2_unicode_ci
  9058. ucs2_icelandic_ci
  9059. ucs2_latvian_ci
  9060. ucs2_romanian_ci
  9061. ucs2_slovenian_ci
  9062. ucs2_polish_ci
  9063. ucs2_estonian_ci
  9064. ucs2_spanish_ci
  9065. ucs2_swedish_ci
  9066. ucs2_turkish_ci
  9067. ucs2_czech_ci
  9068. ucs2_danish_ci
  9069. ucs2_lithuanian_ci
  9070. ucs2_slovak_ci
  9071. ucs2_spanish2_ci
  9072. ucs2_roman_ci
  9073. ucs2_persian_ci
  9074. ucs2_esperanto_ci
  9075. ucs2_hungarian_ci
  9076. cp866_general_ci
  9077. cp866_bin
  9078. keybcs2_general_ci
  9079. keybcs2_bin
  9080. macce_general_ci
  9081. macce_bin
  9082. macroman_general_ci
  9083. macroman_bin
  9084. cp852_general_ci
  9085. cp852_bin
  9086. latin7_estonian_cs
  9087. latin7_general_ci
  9088. latin7_general_cs
  9089. latin7_bin
  9090. cp1251_bulgarian_ci
  9091. cp1251_ukrainian_ci
  9092. cp1251_bin
  9093. cp1251_general_ci
  9094. cp1251_general_cs
  9095. cp1256_general_ci
  9096. cp1256_bin
  9097. cp1257_lithuanian_ci
  9098. cp1257_bin
  9099. cp1257_general_ci
  9100. binary
  9101. geostd8_general_ci
  9102. geostd8_bin
  9103. cp932_japanese_ci
  9104. cp932_bin
  9105. eucjpms_japanese_ci
  9106. eucjpms_bin
  9107. select routine_name, routine_type from routines;
  9108. routine_name routine_type
  9109. select table_name, index_name from statistics;
  9110. table_name index_name
  9111. select table_name from views;
  9112. table_name
  9113. select privilege_type from user_privileges;
  9114. privilege_type
  9115. USAGE
  9116. select grantee, privilege_type from schema_privileges;
  9117. grantee privilege_type
  9118. select * from table_privileges;
  9119. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9120. select column_name, privilege_type from column_privileges;
  9121. column_name privilege_type
  9122. select table_name,constraint_type from table_constraints;
  9123. table_name constraint_type
  9124. select table_schema, table_name, column_name from key_column_usage;
  9125. table_schema table_name column_name
  9126. root@localhost db_datadict
  9127. DROP USER 'u_6_401017'@'localhost';
  9128. Testcase 3.2.1.18:
  9129. --------------------------------------------------------------------------------
  9130. CREATE USER 'u_6_401018'@'localhost';
  9131. GRANT CREATE VIEW ON information_schema.* TO 'u_6_401018'@'localhost';
  9132. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9133. GRANT ALL ON db_datadict.* TO 'u_6_401018'@'localhost';
  9134. SHOW GRANTS FOR 'u_6_401018'@'localhost';
  9135. Grants for u_6_401018@localhost
  9136. GRANT USAGE ON *.* TO 'u_6_401018'@'localhost'
  9137. GRANT ALL PRIVILEGES ON `db_datadict`.* TO 'u_6_401018'@'localhost'
  9138. FLUSH PRIVILEGES;
  9139. DROP DATABASE IF EXISTS db_datadict;
  9140. CREATE DATABASE db_datadict;
  9141. connect(localhost,u_6_401018,,test,MYSQL_PORT,MYSQL_SOCK);
  9142. USE db_datadict;
  9143. create view db_datadict.v_401018 as
  9144. select * from information_schema.schemata;
  9145. SELECT * FROM v_401018 ORDER BY 2 DESC;
  9146. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  9147. NULL test latin1 latin1_swedish_ci NULL
  9148. NULL information_schema utf8 utf8_general_ci NULL
  9149. NULL db_datadict latin1 latin1_swedish_ci NULL
  9150. root@localhost NULL
  9151. DROP USER 'u_6_401018'@'localhost';
  9152. DROP DATABASE db_datadict;
  9153. Testcase 3.2.1.19:
  9154. --------------------------------------------------------------------------------
  9155. CREATE USER 'u_6_401019'@'localhost';
  9156. grant alter on information_schema.* to 'u_6_401019'@'localhost';
  9157. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9158. grant alter routine on information_schema.* to 'u_6_401019'@'localhost';
  9159. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9160. grant create on information_schema.* to 'u_6_401019'@'localhost';
  9161. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9162. grant create routine on information_schema.* to 'u_6_401019'@'localhost';
  9163. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9164. grant create temporary tables
  9165. on information_schema.* to 'u_6_401019'@'localhost';
  9166. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9167. grant delete on information_schema.* to 'u_6_401019'@'localhost';
  9168. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9169. grant drop on information_schema.* to 'u_6_401019'@'localhost';
  9170. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9171. grant execute on information_schema.* to 'u_6_401019'@'localhost';
  9172. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9173. grant index on information_schema.* to 'u_6_401019'@'localhost';
  9174. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9175. grant insert on information_schema.* to 'u_6_401019'@'localhost';
  9176. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9177. grant lock tables on information_schema.* to 'u_6_401019'@'localhost';
  9178. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9179. grant update on information_schema.* to 'u_6_401019'@'localhost';
  9180. ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
  9181. SELECT * FROM information_schema.table_privileges
  9182. WHERE table_schema = "information_schema";
  9183. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9184. SELECT * FROM information_schema.column_privileges
  9185. WHERE table_schema = "information_schema";
  9186. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9187. DROP USER 'u_6_401019'@'localhost';
  9188. Testcase 3.2.1.20:
  9189. --------------------------------------------------------------------------------
  9190. CREATE USER 'u_6_401020'@'localhost';
  9191. connect(localhost,u_6_401020,,test,MYSQL_PORT,MYSQL_SOCK);
  9192. USE information_schema;
  9193. SELECT * FROM schemata;
  9194. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  9195. NULL information_schema utf8 utf8_general_ci NULL
  9196. NULL test latin1 latin1_swedish_ci NULL
  9197. CREATE TABLE tb_not_allowed ( col TEXT );
  9198. ERROR 42S02: Unknown table 'tb_not_allowed' in information_schema
  9199. create view res_v1 as select * from information_schema.schemata;
  9200. ERROR 42S02: Unknown table 'res_v1' in information_schema
  9201. alter table schemata modify catalog_name varchar(255);
  9202. ERROR 42000: Access denied for user 'u_6_401020'@'localhost' to database 'information_schema'
  9203. update schemata set catalog_name = 'abc'
  9204. where schema_name = 'information_schema';
  9205. ERROR 42000: Access denied for user 'u_6_401020'@'localhost' to database 'information_schema'
  9206. CREATE PROCEDURE sp_3_2_1_20()
  9207. BEGIN
  9208. INSERT INTO information_schema.schema_privileges (table_schema,privilege_type)
  9209. VALUES('db2','insert');
  9210. END//
  9211. ERROR 42000: Unknown database 'information_schema'
  9212. DELETE FROM schemata WHERE schema_name = 'information_schema';
  9213. ERROR 42000: Access denied for user 'u_6_401020'@'localhost' to database 'information_schema'
  9214. root@localhost NULL
  9215. DROP USER 'u_6_401020'@'localhost';
  9216. Testcase 3.2.2.1:
  9217. --------------------------------------------------------------------------------
  9218. USE information_schema;
  9219. DESC character_sets;
  9220. Field Type Null Key Default Extra
  9221. CHARACTER_SET_NAME varchar(64) NO
  9222. DEFAULT_COLLATE_NAME varchar(64) NO
  9223. DESCRIPTION varchar(60) NO
  9224. MAXLEN bigint(3) NO 0
  9225. SHOW CREATE TABLE character_sets;
  9226. Table Create Table
  9227. CHARACTER_SETS CREATE TEMPORARY TABLE `CHARACTER_SETS` (
  9228. `CHARACTER_SET_NAME` varchar(64) NOT NULL DEFAULT '',
  9229. `DEFAULT_COLLATE_NAME` varchar(64) NOT NULL DEFAULT '',
  9230. `DESCRIPTION` varchar(60) NOT NULL DEFAULT '',
  9231. `MAXLEN` bigint(3) NOT NULL DEFAULT '0'
  9232. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  9233. SELECT COUNT(*) FROM information_schema.columns
  9234. WHERE table_schema = 'information_schema'
  9235. AND table_name = 'character_sets'
  9236. ORDER BY ordinal_position;
  9237. COUNT(*)
  9238. 4
  9239. SELECT * FROM information_schema.columns
  9240. WHERE table_schema = 'information_schema'
  9241. AND table_name = 'character_sets'
  9242. ORDER BY ordinal_position;
  9243. 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
  9244. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9245. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9246. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  9247. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  9248. Testcase 3.2.2.2:
  9249. --------------------------------------------------------------------------------
  9250. root@localhost information_schema
  9251. SELECT * FROM information_schema.character_sets;
  9252. CHARACTER_SET_NAME DEFAULT_COLLATE_NAME DESCRIPTION MAXLEN
  9253. big5 big5_chinese_ci Big5 Traditional Chinese 2
  9254. dec8 dec8_swedish_ci DEC West European 1
  9255. cp850 cp850_general_ci DOS West European 1
  9256. hp8 hp8_english_ci HP West European 1
  9257. koi8r koi8r_general_ci KOI8-R Relcom Russian 1
  9258. latin1 latin1_swedish_ci cp1252 West European 1
  9259. latin2 latin2_general_ci ISO 8859-2 Central European 1
  9260. swe7 swe7_swedish_ci 7bit Swedish 1
  9261. ascii ascii_general_ci US ASCII 1
  9262. ujis ujis_japanese_ci EUC-JP Japanese 3
  9263. sjis sjis_japanese_ci Shift-JIS Japanese 2
  9264. hebrew hebrew_general_ci ISO 8859-8 Hebrew 1
  9265. tis620 tis620_thai_ci TIS620 Thai 1
  9266. euckr euckr_korean_ci EUC-KR Korean 2
  9267. koi8u koi8u_general_ci KOI8-U Ukrainian 1
  9268. gb2312 gb2312_chinese_ci GB2312 Simplified Chinese 2
  9269. greek greek_general_ci ISO 8859-7 Greek 1
  9270. cp1250 cp1250_general_ci Windows Central European 1
  9271. gbk gbk_chinese_ci GBK Simplified Chinese 2
  9272. latin5 latin5_turkish_ci ISO 8859-9 Turkish 1
  9273. armscii8 armscii8_general_ci ARMSCII-8 Armenian 1
  9274. utf8 utf8_general_ci UTF-8 Unicode 3
  9275. ucs2 ucs2_general_ci UCS-2 Unicode 2
  9276. cp866 cp866_general_ci DOS Russian 1
  9277. keybcs2 keybcs2_general_ci DOS Kamenicky Czech-Slovak 1
  9278. macce macce_general_ci Mac Central European 1
  9279. macroman macroman_general_ci Mac West European 1
  9280. cp852 cp852_general_ci DOS Central European 1
  9281. latin7 latin7_general_ci ISO 8859-13 Baltic 1
  9282. cp1251 cp1251_general_ci Windows Cyrillic 1
  9283. cp1256 cp1256_general_ci Windows Arabic 1
  9284. cp1257 cp1257_general_ci Windows Baltic 1
  9285. binary binary Binary pseudo charset 1
  9286. geostd8 geostd8_general_ci GEOSTD8 Georgian 1
  9287. cp932 cp932_japanese_ci SJIS for Windows Japanese 2
  9288. eucjpms eucjpms_japanese_ci UJIS for Windows Japanese 3
  9289. Testcase 3.2.2.3:
  9290. --------------------------------------------------------------------------------
  9291. Testcase 3.2.3.1:
  9292. --------------------------------------------------------------------------------
  9293. USE information_schema;
  9294. DESC collations;
  9295. Field Type Null Key Default Extra
  9296. COLLATION_NAME varchar(64) NO
  9297. CHARACTER_SET_NAME varchar(64) NO
  9298. ID bigint(11) NO 0
  9299. IS_DEFAULT varchar(3) NO
  9300. IS_COMPILED varchar(3) NO
  9301. SORTLEN bigint(3) NO 0
  9302. SHOW CREATE TABLE collations;
  9303. Table Create Table
  9304. COLLATIONS CREATE TEMPORARY TABLE `COLLATIONS` (
  9305. `COLLATION_NAME` varchar(64) NOT NULL DEFAULT '',
  9306. `CHARACTER_SET_NAME` varchar(64) NOT NULL DEFAULT '',
  9307. `ID` bigint(11) NOT NULL DEFAULT '0',
  9308. `IS_DEFAULT` varchar(3) NOT NULL DEFAULT '',
  9309. `IS_COMPILED` varchar(3) NOT NULL DEFAULT '',
  9310. `SORTLEN` bigint(3) NOT NULL DEFAULT '0'
  9311. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  9312. SELECT COUNT(*) FROM information_schema.columns
  9313. WHERE table_schema = 'information_schema'
  9314. AND table_name = 'collations'
  9315. ORDER BY ordinal_position;
  9316. COUNT(*)
  9317. 6
  9318. SELECT * FROM information_schema.columns
  9319. WHERE table_schema = 'information_schema'
  9320. AND table_name = 'collations'
  9321. ORDER BY ordinal_position;
  9322. 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
  9323. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9324. NULL information_schema COLLATIONS CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9325. NULL information_schema COLLATIONS ID 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(11) select
  9326. NULL information_schema COLLATIONS IS_DEFAULT 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9327. NULL information_schema COLLATIONS IS_COMPILED 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9328. NULL information_schema COLLATIONS SORTLEN 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  9329. Testcase 3.2.3.2:
  9330. --------------------------------------------------------------------------------
  9331. SELECT * FROM collations;
  9332. COLLATION_NAME CHARACTER_SET_NAME ID IS_DEFAULT IS_COMPILED SORTLEN
  9333. big5_chinese_ci big5 1 Yes Yes 1
  9334. big5_bin big5 84 Yes 1
  9335. dec8_swedish_ci dec8 3 Yes 0
  9336. dec8_bin dec8 69 0
  9337. cp850_general_ci cp850 4 Yes 0
  9338. cp850_bin cp850 80 0
  9339. hp8_english_ci hp8 6 Yes 0
  9340. hp8_bin hp8 72 0
  9341. koi8r_general_ci koi8r 7 Yes 0
  9342. koi8r_bin koi8r 74 0
  9343. latin1_german1_ci latin1 5 Yes 1
  9344. latin1_swedish_ci latin1 8 Yes Yes 1
  9345. latin1_danish_ci latin1 15 Yes 1
  9346. latin1_german2_ci latin1 31 Yes 2
  9347. latin1_bin latin1 47 Yes 1
  9348. latin1_general_ci latin1 48 Yes 1
  9349. latin1_general_cs latin1 49 Yes 1
  9350. latin1_spanish_ci latin1 94 Yes 1
  9351. latin2_czech_cs latin2 2 Yes 4
  9352. latin2_general_ci latin2 9 Yes Yes 1
  9353. latin2_hungarian_ci latin2 21 Yes 1
  9354. latin2_croatian_ci latin2 27 Yes 1
  9355. latin2_bin latin2 77 Yes 1
  9356. swe7_swedish_ci swe7 10 Yes 0
  9357. swe7_bin swe7 82 0
  9358. ascii_general_ci ascii 11 Yes 0
  9359. ascii_bin ascii 65 0
  9360. ujis_japanese_ci ujis 12 Yes Yes 1
  9361. ujis_bin ujis 91 Yes 1
  9362. sjis_japanese_ci sjis 13 Yes Yes 1
  9363. sjis_bin sjis 88 Yes 1
  9364. hebrew_general_ci hebrew 16 Yes 0
  9365. hebrew_bin hebrew 71 0
  9366. tis620_thai_ci tis620 18 Yes Yes 4
  9367. tis620_bin tis620 89 Yes 1
  9368. euckr_korean_ci euckr 19 Yes Yes 1
  9369. euckr_bin euckr 85 Yes 1
  9370. koi8u_general_ci koi8u 22 Yes 0
  9371. koi8u_bin koi8u 75 0
  9372. gb2312_chinese_ci gb2312 24 Yes Yes 1
  9373. gb2312_bin gb2312 86 Yes 1
  9374. greek_general_ci greek 25 Yes 0
  9375. greek_bin greek 70 0
  9376. cp1250_general_ci cp1250 26 Yes Yes 1
  9377. cp1250_czech_cs cp1250 34 Yes 2
  9378. cp1250_croatian_ci cp1250 44 Yes 1
  9379. cp1250_bin cp1250 66 Yes 1
  9380. cp1250_polish_ci cp1250 99 Yes 1
  9381. gbk_chinese_ci gbk 28 Yes Yes 1
  9382. gbk_bin gbk 87 Yes 1
  9383. latin5_turkish_ci latin5 30 Yes 0
  9384. latin5_bin latin5 78 0
  9385. armscii8_general_ci armscii8 32 Yes 0
  9386. armscii8_bin armscii8 64 0
  9387. utf8_general_ci utf8 33 Yes Yes 1
  9388. utf8_bin utf8 83 Yes 1
  9389. utf8_unicode_ci utf8 192 Yes 8
  9390. utf8_icelandic_ci utf8 193 Yes 8
  9391. utf8_latvian_ci utf8 194 Yes 8
  9392. utf8_romanian_ci utf8 195 Yes 8
  9393. utf8_slovenian_ci utf8 196 Yes 8
  9394. utf8_polish_ci utf8 197 Yes 8
  9395. utf8_estonian_ci utf8 198 Yes 8
  9396. utf8_spanish_ci utf8 199 Yes 8
  9397. utf8_swedish_ci utf8 200 Yes 8
  9398. utf8_turkish_ci utf8 201 Yes 8
  9399. utf8_czech_ci utf8 202 Yes 8
  9400. utf8_danish_ci utf8 203 Yes 8
  9401. utf8_lithuanian_ci utf8 204 Yes 8
  9402. utf8_slovak_ci utf8 205 Yes 8
  9403. utf8_spanish2_ci utf8 206 Yes 8
  9404. utf8_roman_ci utf8 207 Yes 8
  9405. utf8_persian_ci utf8 208 Yes 8
  9406. utf8_esperanto_ci utf8 209 Yes 8
  9407. utf8_hungarian_ci utf8 210 Yes 8
  9408. ucs2_general_ci ucs2 35 Yes Yes 1
  9409. ucs2_bin ucs2 90 Yes 1
  9410. ucs2_unicode_ci ucs2 128 Yes 8
  9411. ucs2_icelandic_ci ucs2 129 Yes 8
  9412. ucs2_latvian_ci ucs2 130 Yes 8
  9413. ucs2_romanian_ci ucs2 131 Yes 8
  9414. ucs2_slovenian_ci ucs2 132 Yes 8
  9415. ucs2_polish_ci ucs2 133 Yes 8
  9416. ucs2_estonian_ci ucs2 134 Yes 8
  9417. ucs2_spanish_ci ucs2 135 Yes 8
  9418. ucs2_swedish_ci ucs2 136 Yes 8
  9419. ucs2_turkish_ci ucs2 137 Yes 8
  9420. ucs2_czech_ci ucs2 138 Yes 8
  9421. ucs2_danish_ci ucs2 139 Yes 8
  9422. ucs2_lithuanian_ci ucs2 140 Yes 8
  9423. ucs2_slovak_ci ucs2 141 Yes 8
  9424. ucs2_spanish2_ci ucs2 142 Yes 8
  9425. ucs2_roman_ci ucs2 143 Yes 8
  9426. ucs2_persian_ci ucs2 144 Yes 8
  9427. ucs2_esperanto_ci ucs2 145 Yes 8
  9428. ucs2_hungarian_ci ucs2 146 Yes 8
  9429. cp866_general_ci cp866 36 Yes 0
  9430. cp866_bin cp866 68 0
  9431. keybcs2_general_ci keybcs2 37 Yes 0
  9432. keybcs2_bin keybcs2 73 0
  9433. macce_general_ci macce 38 Yes 0
  9434. macce_bin macce 43 0
  9435. macroman_general_ci macroman 39 Yes 0
  9436. macroman_bin macroman 53 0
  9437. cp852_general_ci cp852 40 Yes 0
  9438. cp852_bin cp852 81 0
  9439. latin7_estonian_cs latin7 20 0
  9440. latin7_general_ci latin7 41 Yes 0
  9441. latin7_general_cs latin7 42 0
  9442. latin7_bin latin7 79 0
  9443. cp1251_bulgarian_ci cp1251 14 0
  9444. cp1251_ukrainian_ci cp1251 23 0
  9445. cp1251_bin cp1251 50 0
  9446. cp1251_general_ci cp1251 51 Yes 0
  9447. cp1251_general_cs cp1251 52 0
  9448. cp1256_general_ci cp1256 57 Yes 0
  9449. cp1256_bin cp1256 67 0
  9450. cp1257_lithuanian_ci cp1257 29 0
  9451. cp1257_bin cp1257 58 0
  9452. cp1257_general_ci cp1257 59 Yes 0
  9453. binary binary 63 Yes Yes 1
  9454. geostd8_general_ci geostd8 92 Yes 0
  9455. geostd8_bin geostd8 93 0
  9456. cp932_japanese_ci cp932 95 Yes Yes 1
  9457. cp932_bin cp932 96 Yes 1
  9458. eucjpms_japanese_ci eucjpms 97 Yes Yes 1
  9459. eucjpms_bin eucjpms 98 Yes 1
  9460. Testcase 3.2.3.3:
  9461. --------------------------------------------------------------------------------
  9462. Testcase 3.2.4.1:
  9463. --------------------------------------------------------------------------------
  9464. USE information_schema;
  9465. DESC collation_character_set_applicability;
  9466. Field Type Null Key Default Extra
  9467. COLLATION_NAME varchar(64) NO
  9468. CHARACTER_SET_NAME varchar(64) NO
  9469. SHOW CREATE TABLE collation_character_set_applicability;
  9470. Table Create Table
  9471. COLLATION_CHARACTER_SET_APPLICABILITY CREATE TEMPORARY TABLE `COLLATION_CHARACTER_SET_APPLICABILITY` (
  9472. `COLLATION_NAME` varchar(64) NOT NULL DEFAULT '',
  9473. `CHARACTER_SET_NAME` varchar(64) NOT NULL DEFAULT ''
  9474. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  9475. SELECT COUNT(*) FROM information_schema.columns
  9476. WHERE table_schema = 'information_schema'
  9477. AND table_name = 'collation_character_set_applicability'
  9478. ORDER BY ordinal_position;
  9479. COUNT(*)
  9480. 2
  9481. SELECT * FROM information_schema.columns
  9482. WHERE table_schema = 'information_schema'
  9483. AND table_name = 'collation_character_set_applicability'
  9484. ORDER BY ordinal_position;
  9485. 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
  9486. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9487. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9488. Testcase 3.2.4.2:
  9489. --------------------------------------------------------------------------------
  9490. SELECT * FROM collation_character_set_applicability;
  9491. COLLATION_NAME CHARACTER_SET_NAME
  9492. big5_chinese_ci big5
  9493. big5_bin big5
  9494. dec8_swedish_ci dec8
  9495. dec8_bin dec8
  9496. cp850_general_ci cp850
  9497. cp850_bin cp850
  9498. hp8_english_ci hp8
  9499. hp8_bin hp8
  9500. koi8r_general_ci koi8r
  9501. koi8r_bin koi8r
  9502. latin1_german1_ci latin1
  9503. latin1_swedish_ci latin1
  9504. latin1_danish_ci latin1
  9505. latin1_german2_ci latin1
  9506. latin1_bin latin1
  9507. latin1_general_ci latin1
  9508. latin1_general_cs latin1
  9509. latin1_spanish_ci latin1
  9510. latin2_czech_cs latin2
  9511. latin2_general_ci latin2
  9512. latin2_hungarian_ci latin2
  9513. latin2_croatian_ci latin2
  9514. latin2_bin latin2
  9515. swe7_swedish_ci swe7
  9516. swe7_bin swe7
  9517. ascii_general_ci ascii
  9518. ascii_bin ascii
  9519. ujis_japanese_ci ujis
  9520. ujis_bin ujis
  9521. sjis_japanese_ci sjis
  9522. sjis_bin sjis
  9523. hebrew_general_ci hebrew
  9524. hebrew_bin hebrew
  9525. filename filename
  9526. tis620_thai_ci tis620
  9527. tis620_bin tis620
  9528. euckr_korean_ci euckr
  9529. euckr_bin euckr
  9530. koi8u_general_ci koi8u
  9531. koi8u_bin koi8u
  9532. gb2312_chinese_ci gb2312
  9533. gb2312_bin gb2312
  9534. greek_general_ci greek
  9535. greek_bin greek
  9536. cp1250_general_ci cp1250
  9537. cp1250_czech_cs cp1250
  9538. cp1250_croatian_ci cp1250
  9539. cp1250_bin cp1250
  9540. cp1250_polish_ci cp1250
  9541. gbk_chinese_ci gbk
  9542. gbk_bin gbk
  9543. latin5_turkish_ci latin5
  9544. latin5_bin latin5
  9545. armscii8_general_ci armscii8
  9546. armscii8_bin armscii8
  9547. utf8_general_ci utf8
  9548. utf8_bin utf8
  9549. utf8_unicode_ci utf8
  9550. utf8_icelandic_ci utf8
  9551. utf8_latvian_ci utf8
  9552. utf8_romanian_ci utf8
  9553. utf8_slovenian_ci utf8
  9554. utf8_polish_ci utf8
  9555. utf8_estonian_ci utf8
  9556. utf8_spanish_ci utf8
  9557. utf8_swedish_ci utf8
  9558. utf8_turkish_ci utf8
  9559. utf8_czech_ci utf8
  9560. utf8_danish_ci utf8
  9561. utf8_lithuanian_ci utf8
  9562. utf8_slovak_ci utf8
  9563. utf8_spanish2_ci utf8
  9564. utf8_roman_ci utf8
  9565. utf8_persian_ci utf8
  9566. utf8_esperanto_ci utf8
  9567. utf8_hungarian_ci utf8
  9568. ucs2_general_ci ucs2
  9569. ucs2_bin ucs2
  9570. ucs2_unicode_ci ucs2
  9571. ucs2_icelandic_ci ucs2
  9572. ucs2_latvian_ci ucs2
  9573. ucs2_romanian_ci ucs2
  9574. ucs2_slovenian_ci ucs2
  9575. ucs2_polish_ci ucs2
  9576. ucs2_estonian_ci ucs2
  9577. ucs2_spanish_ci ucs2
  9578. ucs2_swedish_ci ucs2
  9579. ucs2_turkish_ci ucs2
  9580. ucs2_czech_ci ucs2
  9581. ucs2_danish_ci ucs2
  9582. ucs2_lithuanian_ci ucs2
  9583. ucs2_slovak_ci ucs2
  9584. ucs2_spanish2_ci ucs2
  9585. ucs2_roman_ci ucs2
  9586. ucs2_persian_ci ucs2
  9587. ucs2_esperanto_ci ucs2
  9588. ucs2_hungarian_ci ucs2
  9589. cp866_general_ci cp866
  9590. cp866_bin cp866
  9591. keybcs2_general_ci keybcs2
  9592. keybcs2_bin keybcs2
  9593. macce_general_ci macce
  9594. macce_bin macce
  9595. macroman_general_ci macroman
  9596. macroman_bin macroman
  9597. cp852_general_ci cp852
  9598. cp852_bin cp852
  9599. latin7_estonian_cs latin7
  9600. latin7_general_ci latin7
  9601. latin7_general_cs latin7
  9602. latin7_bin latin7
  9603. cp1251_bulgarian_ci cp1251
  9604. cp1251_ukrainian_ci cp1251
  9605. cp1251_bin cp1251
  9606. cp1251_general_ci cp1251
  9607. cp1251_general_cs cp1251
  9608. cp1256_general_ci cp1256
  9609. cp1256_bin cp1256
  9610. cp1257_lithuanian_ci cp1257
  9611. cp1257_bin cp1257
  9612. cp1257_general_ci cp1257
  9613. binary binary
  9614. geostd8_general_ci geostd8
  9615. geostd8_bin geostd8
  9616. cp932_japanese_ci cp932
  9617. cp932_bin cp932
  9618. eucjpms_japanese_ci eucjpms
  9619. eucjpms_bin eucjpms
  9620. Testcase 3.2.4.3:
  9621. --------------------------------------------------------------------------------
  9622. Testcase 3.2.5.1:
  9623. --------------------------------------------------------------------------------
  9624. USE information_schema;
  9625. DESC column_privileges;
  9626. Field Type Null Key Default Extra
  9627. GRANTEE varchar(81) NO
  9628. TABLE_CATALOG varchar(4096) YES NULL
  9629. TABLE_SCHEMA varchar(64) NO
  9630. TABLE_NAME varchar(64) NO
  9631. COLUMN_NAME varchar(64) NO
  9632. PRIVILEGE_TYPE varchar(64) NO
  9633. IS_GRANTABLE varchar(3) NO
  9634. SHOW CREATE TABLE column_privileges;
  9635. Table Create Table
  9636. COLUMN_PRIVILEGES CREATE TEMPORARY TABLE `COLUMN_PRIVILEGES` (
  9637. `GRANTEE` varchar(81) NOT NULL DEFAULT '',
  9638. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  9639. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  9640. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  9641. `COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
  9642. `PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
  9643. `IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''
  9644. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  9645. SELECT COUNT(*) FROM information_schema.columns
  9646. WHERE table_schema = 'information_schema'
  9647. AND table_name = 'column_privileges'
  9648. ORDER BY ordinal_position;
  9649. COUNT(*)
  9650. 7
  9651. SELECT * FROM information_schema.columns
  9652. WHERE table_schema = 'information_schema'
  9653. AND table_name = 'column_privileges'
  9654. ORDER BY ordinal_position;
  9655. 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
  9656. NULL information_schema COLUMN_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  9657. NULL information_schema COLUMN_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9658. NULL information_schema COLUMN_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9659. NULL information_schema COLUMN_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9660. NULL information_schema COLUMN_PRIVILEGES COLUMN_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9661. NULL information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9662. NULL information_schema COLUMN_PRIVILEGES IS_GRANTABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9663. Testcase 3.2.5.2 + 3.2.5.3 + 3.2.5.4:
  9664. --------------------------------------------------------------------------------
  9665. CREATE USER 'user_1'@'localhost';
  9666. CREATE USER 'user_2'@'localhost';
  9667. CREATE USER 'user_3'@'localhost';
  9668. DROP DATABASE IF EXISTS db_datadict;
  9669. CREATE DATABASE db_datadict;
  9670. USE db_datadict;
  9671. CREATE TABLE db_datadict.res_t40502 (f1 INT, f2 DECIMAL, f3 TEXT);
  9672. GRANT SELECT(f1, f3) ON db_datadict.res_t40502 TO 'user_1'@'localhost';
  9673. GRANT INSERT(f1) ON db_datadict.res_t40502 TO 'user_1'@'localhost';
  9674. GRANT UPDATE(f2) ON db_datadict.res_t40502 TO 'user_1'@'localhost';
  9675. GRANT SELECT(f2) ON db_datadict.res_t40502 TO 'user_2'@'localhost';
  9676. GRANT INSERT, SELECT ON db_datadict.res_t40502 TO 'user_3'@'localhost';
  9677. GRANT SELECT(f3) ON db_datadict.res_t40502 TO 'user_3'@'localhost';
  9678. GRANT INSERT, SELECT ON db_datadict.res_t40502 TO 'user_3'@'localhost' WITH GRANT OPTION;
  9679. GRANT ALL ON db_datadict.* TO 'user_3'@'localhost';
  9680. SELECT * FROM information_schema.column_privileges
  9681. WHERE grantee LIKE "'user%"
  9682. ORDER BY grantee, table_name, column_name, privilege_type;
  9683. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9684. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 INSERT NO
  9685. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 SELECT NO
  9686. 'user_1'@'localhost' NULL db_datadict res_t40502 f2 UPDATE NO
  9687. 'user_1'@'localhost' NULL db_datadict res_t40502 f3 SELECT NO
  9688. 'user_2'@'localhost' NULL db_datadict res_t40502 f2 SELECT NO
  9689. 'user_3'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  9690. FIXME: Check it is correct that the following GRANT changes ALL privs that user_1 has
  9691. -------------------------------------------------------------------------------------
  9692. GRANT UPDATE(f3) ON db_datadict.res_t40502 TO 'user_1'@'localhost' WITH GRANT OPTION;
  9693. SELECT * FROM information_schema.column_privileges
  9694. WHERE grantee LIKE "'user%"
  9695. ORDER BY grantee, table_name, column_name, privilege_type;
  9696. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9697. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 INSERT YES
  9698. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 SELECT YES
  9699. 'user_1'@'localhost' NULL db_datadict res_t40502 f2 UPDATE YES
  9700. 'user_1'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  9701. 'user_1'@'localhost' NULL db_datadict res_t40502 f3 UPDATE YES
  9702. 'user_2'@'localhost' NULL db_datadict res_t40502 f2 SELECT NO
  9703. 'user_3'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  9704. FLUSH PRIVILEGES;
  9705. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  9706. SELECT * FROM information_schema.column_privileges
  9707. WHERE grantee LIKE "'user%"
  9708. ORDER BY grantee, table_name, column_name, privilege_type;
  9709. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9710. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 INSERT YES
  9711. 'user_1'@'localhost' NULL db_datadict res_t40502 f1 SELECT YES
  9712. 'user_1'@'localhost' NULL db_datadict res_t40502 f2 UPDATE YES
  9713. 'user_1'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  9714. 'user_1'@'localhost' NULL db_datadict res_t40502 f3 UPDATE YES
  9715. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  9716. SELECT * FROM information_schema.column_privileges
  9717. WHERE grantee LIKE "'user%"
  9718. ORDER BY grantee, table_name, column_name, privilege_type;
  9719. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9720. 'user_2'@'localhost' NULL db_datadict res_t40502 f2 SELECT NO
  9721. connect(localhost,user_3,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  9722. FIXME: check it is correct that granted TABLES doesn_t occur in COLUMN_PRIVILEGES
  9723. ---------------------------------------------------------------------------------
  9724. SELECT * FROM information_schema.table_privileges WHERE grantee LIKE "'user%";
  9725. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9726. 'user_3'@'localhost' NULL db_datadict res_t40502 SELECT YES
  9727. 'user_3'@'localhost' NULL db_datadict res_t40502 INSERT YES
  9728. SELECT * FROM information_schema.schema_privileges WHERE grantee LIKE "'user%";
  9729. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  9730. 'user_3'@'localhost' NULL db_datadict SELECT NO
  9731. 'user_3'@'localhost' NULL db_datadict INSERT NO
  9732. 'user_3'@'localhost' NULL db_datadict UPDATE NO
  9733. 'user_3'@'localhost' NULL db_datadict DELETE NO
  9734. 'user_3'@'localhost' NULL db_datadict CREATE NO
  9735. 'user_3'@'localhost' NULL db_datadict DROP NO
  9736. 'user_3'@'localhost' NULL db_datadict REFERENCES NO
  9737. 'user_3'@'localhost' NULL db_datadict INDEX NO
  9738. 'user_3'@'localhost' NULL db_datadict ALTER NO
  9739. 'user_3'@'localhost' NULL db_datadict CREATE TEMPORARY TABLES NO
  9740. 'user_3'@'localhost' NULL db_datadict LOCK TABLES NO
  9741. 'user_3'@'localhost' NULL db_datadict EXECUTE NO
  9742. 'user_3'@'localhost' NULL db_datadict CREATE VIEW NO
  9743. 'user_3'@'localhost' NULL db_datadict SHOW VIEW NO
  9744. 'user_3'@'localhost' NULL db_datadict CREATE ROUTINE NO
  9745. 'user_3'@'localhost' NULL db_datadict ALTER ROUTINE NO
  9746. 'user_3'@'localhost' NULL db_datadict EVENT NO
  9747. 'user_3'@'localhost' NULL db_datadict TRIGGER NO
  9748. SELECT * FROM information_schema.column_privileges
  9749. WHERE grantee LIKE "'user%"
  9750. ORDER BY grantee, table_name, column_name, privilege_type;
  9751. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9752. 'user_3'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  9753. GRANT SELECT(f1, f3) ON db_datadict.res_t40502 TO 'user_2'@'localhost';
  9754. FIXME: check whether it is intended that *my* grants to others are *NOT* shown here
  9755. -----------------------------------------------------------------------------------
  9756. SELECT * FROM information_schema.column_privileges
  9757. WHERE grantee LIKE "'user%"
  9758. ORDER BY grantee, table_name, column_name, privilege_type;
  9759. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9760. 'user_3'@'localhost' NULL db_datadict res_t40502 f3 SELECT YES
  9761. user_2@localhost db_datadict
  9762. SELECT * FROM information_schema.column_privileges
  9763. WHERE grantee LIKE "'user%"
  9764. ORDER BY grantee, table_name, column_name, privilege_type;
  9765. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME PRIVILEGE_TYPE IS_GRANTABLE
  9766. 'user_2'@'localhost' NULL db_datadict res_t40502 f1 SELECT NO
  9767. 'user_2'@'localhost' NULL db_datadict res_t40502 f2 SELECT NO
  9768. 'user_2'@'localhost' NULL db_datadict res_t40502 f3 SELECT NO
  9769. root@localhost db_datadict
  9770. DROP TABLE IF EXISTS db_datadict.res_t40502;
  9771. DROP DATABASE IF EXISTS db_datadict;
  9772. DROP USER 'user_1'@'localhost';
  9773. DROP USER 'user_2'@'localhost';
  9774. DROP USER 'user_3'@'localhost';
  9775. Testcase 3.2.6.1:
  9776. --------------------------------------------------------------------------------
  9777. USE information_schema;
  9778. DESC columns;
  9779. Field Type Null Key Default Extra
  9780. TABLE_CATALOG varchar(4096) YES NULL
  9781. TABLE_SCHEMA varchar(64) NO
  9782. TABLE_NAME varchar(64) NO
  9783. COLUMN_NAME varchar(64) NO
  9784. ORDINAL_POSITION bigint(21) NO 0
  9785. COLUMN_DEFAULT longtext YES NULL
  9786. IS_NULLABLE varchar(3) NO
  9787. DATA_TYPE varchar(64) NO
  9788. CHARACTER_MAXIMUM_LENGTH bigint(21) YES NULL
  9789. CHARACTER_OCTET_LENGTH bigint(21) YES NULL
  9790. NUMERIC_PRECISION bigint(21) YES NULL
  9791. NUMERIC_SCALE bigint(21) YES NULL
  9792. CHARACTER_SET_NAME varchar(64) YES NULL
  9793. COLLATION_NAME varchar(64) YES NULL
  9794. COLUMN_TYPE longtext NO
  9795. COLUMN_KEY varchar(3) NO
  9796. EXTRA varchar(20) NO
  9797. PRIVILEGES varchar(80) NO
  9798. COLUMN_COMMENT varchar(255) NO
  9799. SHOW CREATE TABLE columns;
  9800. Table Create Table
  9801. COLUMNS CREATE TEMPORARY TABLE `COLUMNS` (
  9802. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  9803. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  9804. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  9805. `COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
  9806. `ORDINAL_POSITION` bigint(21) NOT NULL DEFAULT '0',
  9807. `COLUMN_DEFAULT` longtext,
  9808. `IS_NULLABLE` varchar(3) NOT NULL DEFAULT '',
  9809. `DATA_TYPE` varchar(64) NOT NULL DEFAULT '',
  9810. `CHARACTER_MAXIMUM_LENGTH` bigint(21) DEFAULT NULL,
  9811. `CHARACTER_OCTET_LENGTH` bigint(21) DEFAULT NULL,
  9812. `NUMERIC_PRECISION` bigint(21) DEFAULT NULL,
  9813. `NUMERIC_SCALE` bigint(21) DEFAULT NULL,
  9814. `CHARACTER_SET_NAME` varchar(64) DEFAULT NULL,
  9815. `COLLATION_NAME` varchar(64) DEFAULT NULL,
  9816. `COLUMN_TYPE` longtext NOT NULL,
  9817. `COLUMN_KEY` varchar(3) NOT NULL DEFAULT '',
  9818. `EXTRA` varchar(20) NOT NULL DEFAULT '',
  9819. `PRIVILEGES` varchar(80) NOT NULL DEFAULT '',
  9820. `COLUMN_COMMENT` varchar(255) NOT NULL DEFAULT ''
  9821. ) ENGINE=MyISAM DEFAULT CHARSET=utf8
  9822. SELECT COUNT(*) FROM information_schema.columns
  9823. WHERE table_schema = 'information_schema'
  9824. AND table_name = 'columns'
  9825. ORDER BY ordinal_position;
  9826. COUNT(*)
  9827. 19
  9828. SELECT * FROM information_schema.columns
  9829. WHERE table_schema = 'information_schema'
  9830. AND table_name = 'columns'
  9831. ORDER BY ordinal_position;
  9832. 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
  9833. NULL information_schema COLUMNS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9834. NULL information_schema COLUMNS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9835. NULL information_schema COLUMNS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9836. NULL information_schema COLUMNS COLUMN_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9837. NULL information_schema COLUMNS ORDINAL_POSITION 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9838. NULL information_schema COLUMNS COLUMN_DEFAULT 6 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9839. NULL information_schema COLUMNS IS_NULLABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9840. NULL information_schema COLUMNS DATA_TYPE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9841. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9842. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9843. NULL information_schema COLUMNS NUMERIC_PRECISION 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9844. NULL information_schema COLUMNS NUMERIC_SCALE 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9845. NULL information_schema COLUMNS CHARACTER_SET_NAME 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9846. NULL information_schema COLUMNS COLLATION_NAME 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9847. NULL information_schema COLUMNS COLUMN_TYPE 15 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9848. NULL information_schema COLUMNS COLUMN_KEY 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9849. NULL information_schema COLUMNS EXTRA 17 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  9850. NULL information_schema COLUMNS PRIVILEGES 18 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  9851. NULL information_schema COLUMNS COLUMN_COMMENT 19 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  9852. Testcase 3.2.6.2 + 3.2.6.3:
  9853. --------------------------------------------------------------------------------
  9854. DROP DATABASE IF EXISTS db_datadict;
  9855. CREATE DATABASE db_datadict;
  9856. CREATE USER 'user_1'@'localhost';
  9857. CREATE USER 'user_2'@'localhost';
  9858. USE db_datadict;
  9859. create table t_6_406001(f1 char(10), f2 text, f3 date, f4 int);
  9860. grant select(f1, f2) on db_datadict.t_6_406001 to 'user_1'@'localhost';
  9861. create table t_6_406002(f1 char(10), f2 text, f3 date, f4 int);
  9862. GRANT INSERT(f1, f2) ON db_datadict.t_6_406002 TO 'user_2'@'localhost';
  9863. FLUSH PRIVILEGES;
  9864. SELECT * FROM information_schema.columns
  9865. ORDER BY table_schema, table_name, ordinal_position;
  9866. 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
  9867. 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
  9868. NULL db_datadict t_6_406001 f2 2 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  9869. NULL db_datadict t_6_406001 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  9870. NULL db_datadict t_6_406001 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  9871. 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
  9872. NULL db_datadict t_6_406002 f2 2 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  9873. NULL db_datadict t_6_406002 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  9874. NULL db_datadict t_6_406002 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  9875. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9876. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9877. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  9878. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  9879. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9880. NULL information_schema COLLATIONS CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9881. NULL information_schema COLLATIONS ID 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(11) select
  9882. NULL information_schema COLLATIONS IS_DEFAULT 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9883. NULL information_schema COLLATIONS IS_COMPILED 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9884. NULL information_schema COLLATIONS SORTLEN 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  9885. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9886. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9887. NULL information_schema COLUMNS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9888. NULL information_schema COLUMNS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9889. NULL information_schema COLUMNS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9890. NULL information_schema COLUMNS COLUMN_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9891. NULL information_schema COLUMNS ORDINAL_POSITION 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9892. NULL information_schema COLUMNS COLUMN_DEFAULT 6 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9893. NULL information_schema COLUMNS IS_NULLABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9894. NULL information_schema COLUMNS DATA_TYPE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9895. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9896. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9897. NULL information_schema COLUMNS NUMERIC_PRECISION 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9898. NULL information_schema COLUMNS NUMERIC_SCALE 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9899. NULL information_schema COLUMNS CHARACTER_SET_NAME 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9900. NULL information_schema COLUMNS COLLATION_NAME 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9901. NULL information_schema COLUMNS COLUMN_TYPE 15 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9902. NULL information_schema COLUMNS COLUMN_KEY 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9903. NULL information_schema COLUMNS EXTRA 17 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  9904. NULL information_schema COLUMNS PRIVILEGES 18 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  9905. NULL information_schema COLUMNS COLUMN_COMMENT 19 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  9906. NULL information_schema COLUMN_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  9907. NULL information_schema COLUMN_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9908. NULL information_schema COLUMN_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9909. NULL information_schema COLUMN_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9910. NULL information_schema COLUMN_PRIVILEGES COLUMN_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9911. NULL information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9912. NULL information_schema COLUMN_PRIVILEGES IS_GRANTABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9913. NULL information_schema ENGINES ENGINE 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9914. NULL information_schema ENGINES SUPPORT 2 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  9915. NULL information_schema ENGINES COMMENT 3 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  9916. NULL information_schema ENGINES TRANSACTIONS 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9917. NULL information_schema ENGINES XA 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9918. NULL information_schema ENGINES SAVEPOINTS 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  9919. NULL information_schema EVENTS EVENT_CATALOG 1 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9920. NULL information_schema EVENTS EVENT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9921. NULL information_schema EVENTS EVENT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9922. NULL information_schema EVENTS DEFINER 4 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  9923. NULL information_schema EVENTS EVENT_BODY 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  9924. NULL information_schema EVENTS EVENT_DEFINITION 6 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9925. NULL information_schema EVENTS EVENT_TYPE 7 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  9926. NULL information_schema EVENTS EXECUTE_AT 8 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9927. NULL information_schema EVENTS INTERVAL_VALUE 9 NULL YES varchar 256 768 NULL NULL utf8 utf8_general_ci varchar(256) select
  9928. NULL information_schema EVENTS INTERVAL_FIELD 10 NULL YES varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  9929. NULL information_schema EVENTS SQL_MODE 11 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9930. NULL information_schema EVENTS STARTS 12 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9931. NULL information_schema EVENTS ENDS 13 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9932. NULL information_schema EVENTS STATUS 14 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  9933. NULL information_schema EVENTS ON_COMPLETION 15 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  9934. NULL information_schema EVENTS CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  9935. NULL information_schema EVENTS LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  9936. NULL information_schema EVENTS LAST_EXECUTED 18 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9937. NULL information_schema EVENTS EVENT_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9938. NULL information_schema FILES FILE_ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9939. NULL information_schema FILES FILE_NAME 2 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9940. NULL information_schema FILES FILE_TYPE 3 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  9941. NULL information_schema FILES TABLESPACE_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9942. NULL information_schema FILES TABLE_CATALOG 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9943. NULL information_schema FILES TABLE_SCHEMA 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9944. NULL information_schema FILES TABLE_NAME 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9945. NULL information_schema FILES LOGFILE_GROUP_NAME 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9946. NULL information_schema FILES LOGFILE_GROUP_NUMBER 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9947. NULL information_schema FILES ENGINE 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9948. NULL information_schema FILES FULLTEXT_KEYS 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9949. NULL information_schema FILES DELETED_ROWS 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9950. NULL information_schema FILES UPDATE_COUNT 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9951. NULL information_schema FILES FREE_EXTENTS 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9952. NULL information_schema FILES TOTAL_EXTENTS 15 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9953. NULL information_schema FILES EXTENT_SIZE 16 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9954. NULL information_schema FILES INITIAL_SIZE 17 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9955. NULL information_schema FILES MAXIMUM_SIZE 18 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9956. NULL information_schema FILES AUTOEXTEND_SIZE 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9957. NULL information_schema FILES CREATION_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9958. NULL information_schema FILES LAST_UPDATE_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9959. NULL information_schema FILES LAST_ACCESS_TIME 22 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9960. NULL information_schema FILES RECOVER_TIME 23 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9961. NULL information_schema FILES TRANSACTION_COUNTER 24 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  9962. NULL information_schema FILES VERSION 25 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9963. NULL information_schema FILES ROW_FORMAT 26 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  9964. NULL information_schema FILES TABLE_ROWS 27 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9965. NULL information_schema FILES AVG_ROW_LENGTH 28 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9966. NULL information_schema FILES DATA_LENGTH 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9967. NULL information_schema FILES MAX_DATA_LENGTH 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9968. NULL information_schema FILES INDEX_LENGTH 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9969. NULL information_schema FILES DATA_FREE 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9970. NULL information_schema FILES CREATE_TIME 33 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9971. NULL information_schema FILES UPDATE_TIME 34 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9972. NULL information_schema FILES CHECK_TIME 35 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  9973. NULL information_schema FILES CHECKSUM 36 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9974. NULL information_schema FILES STATUS 37 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  9975. NULL information_schema FILES EXTRA 38 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  9976. NULL information_schema GLOBAL_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9977. NULL information_schema GLOBAL_STATUS VARIABLE_VALUE 2 0.0000000 NO decimal NULL NULL 22 7 NULL NULL decimal(22,7) select
  9978. NULL information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9979. NULL information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  9980. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9981. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9982. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9983. NULL information_schema KEY_COLUMN_USAGE TABLE_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9984. NULL information_schema KEY_COLUMN_USAGE TABLE_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9985. NULL information_schema KEY_COLUMN_USAGE TABLE_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9986. NULL information_schema KEY_COLUMN_USAGE COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9987. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  9988. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(10) select
  9989. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9990. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9991. NULL information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME 12 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9992. NULL information_schema PARTITIONS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  9993. NULL information_schema PARTITIONS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9994. NULL information_schema PARTITIONS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9995. NULL information_schema PARTITIONS PARTITION_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9996. NULL information_schema PARTITIONS SUBPARTITION_NAME 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  9997. NULL information_schema PARTITIONS PARTITION_ORDINAL_POSITION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9998. NULL information_schema PARTITIONS SUBPARTITION_ORDINAL_POSITION 7 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  9999. NULL information_schema PARTITIONS PARTITION_METHOD 8 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  10000. NULL information_schema PARTITIONS SUBPARTITION_METHOD 9 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  10001. NULL information_schema PARTITIONS PARTITION_EXPRESSION 10 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10002. NULL information_schema PARTITIONS SUBPARTITION_EXPRESSION 11 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10003. NULL information_schema PARTITIONS PARTITION_DESCRIPTION 12 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10004. NULL information_schema PARTITIONS TABLE_ROWS 13 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10005. NULL information_schema PARTITIONS AVG_ROW_LENGTH 14 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10006. NULL information_schema PARTITIONS DATA_LENGTH 15 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10007. NULL information_schema PARTITIONS MAX_DATA_LENGTH 16 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10008. NULL information_schema PARTITIONS INDEX_LENGTH 17 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10009. NULL information_schema PARTITIONS DATA_FREE 18 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10010. NULL information_schema PARTITIONS CREATE_TIME 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10011. NULL information_schema PARTITIONS UPDATE_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10012. NULL information_schema PARTITIONS CHECK_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10013. NULL information_schema PARTITIONS CHECKSUM 22 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10014. NULL information_schema PARTITIONS PARTITION_COMMENT 23 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10015. NULL information_schema PARTITIONS NODEGROUP 24 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  10016. NULL information_schema PARTITIONS TABLESPACE_NAME 25 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10017. NULL information_schema PLUGINS PLUGIN_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10018. NULL information_schema PLUGINS PLUGIN_VERSION 2 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10019. NULL information_schema PLUGINS PLUGIN_STATUS 3 NO varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  10020. NULL information_schema PLUGINS PLUGIN_TYPE 4 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10021. NULL information_schema PLUGINS PLUGIN_TYPE_VERSION 5 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10022. NULL information_schema PLUGINS PLUGIN_LIBRARY 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10023. NULL information_schema PLUGINS PLUGIN_LIBRARY_VERSION 7 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10024. NULL information_schema PLUGINS PLUGIN_AUTHOR 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10025. NULL information_schema PLUGINS PLUGIN_DESCRIPTION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10026. NULL information_schema PLUGINS PLUGIN_LICENSE 10 NULL YES varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10027. NULL information_schema PROCESSLIST ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10028. NULL information_schema PROCESSLIST USER 2 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10029. NULL information_schema PROCESSLIST HOST 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10030. NULL information_schema PROCESSLIST DB 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10031. NULL information_schema PROCESSLIST COMMAND 5 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10032. NULL information_schema PROCESSLIST TIME 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(7) select
  10033. NULL information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10034. NULL information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10035. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10036. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10037. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10038. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10039. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10040. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10041. NULL information_schema REFERENTIAL_CONSTRAINTS MATCH_OPTION 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10042. NULL information_schema REFERENTIAL_CONSTRAINTS UPDATE_RULE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10043. NULL information_schema REFERENTIAL_CONSTRAINTS DELETE_RULE 9 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10044. NULL information_schema REFERENTIAL_CONSTRAINTS TABLE_NAME 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10045. NULL information_schema REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME 11 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10046. NULL information_schema ROUTINES SPECIFIC_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10047. NULL information_schema ROUTINES ROUTINE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10048. NULL information_schema ROUTINES ROUTINE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10049. NULL information_schema ROUTINES ROUTINE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10050. NULL information_schema ROUTINES ROUTINE_TYPE 5 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  10051. NULL information_schema ROUTINES DTD_IDENTIFIER 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10052. NULL information_schema ROUTINES ROUTINE_BODY 7 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10053. NULL information_schema ROUTINES ROUTINE_DEFINITION 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10054. NULL information_schema ROUTINES EXTERNAL_NAME 9 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10055. NULL information_schema ROUTINES EXTERNAL_LANGUAGE 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10056. NULL information_schema ROUTINES PARAMETER_STYLE 11 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10057. NULL information_schema ROUTINES IS_DETERMINISTIC 12 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10058. NULL information_schema ROUTINES SQL_DATA_ACCESS 13 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10059. NULL information_schema ROUTINES SQL_PATH 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10060. NULL information_schema ROUTINES SECURITY_TYPE 15 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  10061. NULL information_schema ROUTINES CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  10062. NULL information_schema ROUTINES LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  10063. NULL information_schema ROUTINES SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10064. NULL information_schema ROUTINES ROUTINE_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10065. NULL information_schema ROUTINES DEFINER 20 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  10066. NULL information_schema SCHEMATA CATALOG_NAME 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10067. NULL information_schema SCHEMATA SCHEMA_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10068. NULL information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10069. NULL information_schema SCHEMATA DEFAULT_COLLATION_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10070. NULL information_schema SCHEMATA SQL_PATH 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10071. NULL information_schema SCHEMA_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  10072. NULL information_schema SCHEMA_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10073. NULL information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10074. NULL information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10075. NULL information_schema SCHEMA_PRIVILEGES IS_GRANTABLE 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10076. NULL information_schema SESSION_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10077. NULL information_schema SESSION_STATUS VARIABLE_VALUE 2 0.0000000 NO decimal NULL NULL 22 7 NULL NULL decimal(22,7) select
  10078. NULL information_schema SESSION_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10079. NULL information_schema SESSION_VARIABLES VARIABLE_VALUE 2 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10080. NULL information_schema STATISTICS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10081. NULL information_schema STATISTICS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10082. NULL information_schema STATISTICS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10083. NULL information_schema STATISTICS NON_UNIQUE 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(1) select
  10084. NULL information_schema STATISTICS INDEX_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10085. NULL information_schema STATISTICS INDEX_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10086. NULL information_schema STATISTICS SEQ_IN_INDEX 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(2) select
  10087. NULL information_schema STATISTICS COLUMN_NAME 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10088. NULL information_schema STATISTICS COLLATION 9 NULL YES varchar 1 3 NULL NULL utf8 utf8_general_ci varchar(1) select
  10089. NULL information_schema STATISTICS CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10090. NULL information_schema STATISTICS SUB_PART 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(3) select
  10091. NULL information_schema STATISTICS PACKED 12 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  10092. NULL information_schema STATISTICS NULLABLE 13 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10093. NULL information_schema STATISTICS INDEX_TYPE 14 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10094. NULL information_schema STATISTICS COMMENT 15 NULL YES varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10095. NULL information_schema TABLES TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10096. NULL information_schema TABLES TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10097. NULL information_schema TABLES TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10098. NULL information_schema TABLES TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10099. NULL information_schema TABLES ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10100. NULL information_schema TABLES VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10101. NULL information_schema TABLES ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  10102. NULL information_schema TABLES TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10103. NULL information_schema TABLES AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10104. NULL information_schema TABLES DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10105. NULL information_schema TABLES MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10106. NULL information_schema TABLES INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10107. NULL information_schema TABLES DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10108. NULL information_schema TABLES AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10109. NULL information_schema TABLES CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10110. NULL information_schema TABLES UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10111. NULL information_schema TABLES CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10112. NULL information_schema TABLES TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10113. NULL information_schema TABLES CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10114. NULL information_schema TABLES CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  10115. NULL information_schema TABLES TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10116. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10117. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10118. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10119. NULL information_schema TABLE_CONSTRAINTS TABLE_SCHEMA 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10120. NULL information_schema TABLE_CONSTRAINTS TABLE_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10121. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10122. NULL information_schema TABLE_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  10123. NULL information_schema TABLE_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10124. NULL information_schema TABLE_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10125. NULL information_schema TABLE_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10126. NULL information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10127. NULL information_schema TABLE_PRIVILEGES IS_GRANTABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10128. NULL information_schema TRIGGERS TRIGGER_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10129. NULL information_schema TRIGGERS TRIGGER_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10130. NULL information_schema TRIGGERS TRIGGER_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10131. NULL information_schema TRIGGERS EVENT_MANIPULATION 4 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  10132. NULL information_schema TRIGGERS EVENT_OBJECT_CATALOG 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10133. NULL information_schema TRIGGERS EVENT_OBJECT_SCHEMA 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10134. NULL information_schema TRIGGERS EVENT_OBJECT_TABLE 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10135. NULL information_schema TRIGGERS ACTION_ORDER 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10136. NULL information_schema TRIGGERS ACTION_CONDITION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10137. NULL information_schema TRIGGERS ACTION_STATEMENT 10 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10138. NULL information_schema TRIGGERS ACTION_ORIENTATION 11 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  10139. NULL information_schema TRIGGERS ACTION_TIMING 12 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  10140. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10141. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10142. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW 15 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10143. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10144. NULL information_schema TRIGGERS CREATED 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10145. NULL information_schema TRIGGERS SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10146. NULL information_schema TRIGGERS DEFINER 19 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10147. NULL information_schema USER_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  10148. NULL information_schema USER_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10149. NULL information_schema USER_PRIVILEGES PRIVILEGE_TYPE 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10150. NULL information_schema USER_PRIVILEGES IS_GRANTABLE 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10151. NULL information_schema VIEWS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10152. NULL information_schema VIEWS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10153. NULL information_schema VIEWS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10154. NULL information_schema VIEWS VIEW_DEFINITION 4 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10155. NULL information_schema VIEWS CHECK_OPTION 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10156. NULL information_schema VIEWS IS_UPDATABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10157. NULL information_schema VIEWS DEFINER 7 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  10158. NULL information_schema VIEWS SECURITY_TYPE 8 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  10159. NULL mysql columns_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10160. NULL mysql columns_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10161. NULL mysql columns_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  10162. NULL mysql columns_priv Table_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10163. NULL mysql columns_priv Column_name 5 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10164. NULL mysql columns_priv Timestamp 6 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10165. 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
  10166. NULL mysql db Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10167. NULL mysql db Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10168. NULL mysql db User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  10169. NULL mysql db Select_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10170. NULL mysql db Insert_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10171. NULL mysql db Update_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10172. NULL mysql db Delete_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10173. NULL mysql db Create_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10174. NULL mysql db Drop_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10175. NULL mysql db Grant_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10176. NULL mysql db References_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10177. NULL mysql db Index_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10178. NULL mysql db Alter_priv 13 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10179. 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
  10180. 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
  10181. 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
  10182. 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
  10183. 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
  10184. 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
  10185. NULL mysql db Execute_priv 20 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10186. NULL mysql db Event_priv 21 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10187. NULL mysql db Trigger_priv 22 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10188. NULL mysql event db 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10189. NULL mysql event name 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  10190. NULL mysql event body 3 NULL NO longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10191. NULL mysql event definer 4 NO char 77 231 NULL NULL utf8 utf8_bin char(77) select,insert,update,references
  10192. NULL mysql event execute_at 5 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  10193. NULL mysql event interval_value 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10194. 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
  10195. NULL mysql event created 8 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10196. NULL mysql event modified 9 0000-00-00 00:00:00 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10197. NULL mysql event last_executed 10 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  10198. NULL mysql event starts 11 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  10199. NULL mysql event ends 12 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  10200. NULL mysql event status 13 ENABLED NO enum 8 24 NULL NULL utf8 utf8_general_ci enum('ENABLED','DISABLED') select,insert,update,references
  10201. NULL mysql event on_completion 14 DROP NO enum 8 24 NULL NULL utf8 utf8_general_ci enum('DROP','PRESERVE') select,insert,update,references
  10202. 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
  10203. NULL mysql event comment 16 NO char 64 192 NULL NULL utf8 utf8_bin char(64) select,insert,update,references
  10204. NULL mysql func name 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10205. NULL mysql func ret 2 0 NO tinyint NULL NULL 3 0 NULL NULL tinyint(1) select,insert,update,references
  10206. NULL mysql func dl 3 NO char 128 384 NULL NULL utf8 utf8_bin char(128) select,insert,update,references
  10207. NULL mysql func type 4 NULL NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('function','aggregate') select,insert,update,references
  10208. NULL mysql general_log event_time 1 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10209. NULL mysql general_log user_host 2 NULL YES mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  10210. NULL mysql general_log thread_id 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10211. NULL mysql general_log server_id 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10212. NULL mysql general_log command_type 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select,insert,update,references
  10213. NULL mysql general_log argument 6 NULL YES mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  10214. 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
  10215. NULL mysql help_category name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  10216. NULL mysql help_category parent_category_id 3 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  10217. NULL mysql help_category url 4 NULL NO char 128 384 NULL NULL utf8 utf8_general_ci char(128) select,insert,update,references
  10218. 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
  10219. NULL mysql help_keyword name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  10220. 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
  10221. 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
  10222. 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
  10223. NULL mysql help_topic name 2 NULL NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) UNI select,insert,update,references
  10224. NULL mysql help_topic help_category_id 3 NULL NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  10225. NULL mysql help_topic description 4 NULL NO text 65535 65535 NULL NULL utf8 utf8_general_ci text select,insert,update,references
  10226. NULL mysql help_topic example 5 NULL NO text 65535 65535 NULL NULL utf8 utf8_general_ci text select,insert,update,references
  10227. NULL mysql help_topic url 6 NULL NO char 128 384 NULL NULL utf8 utf8_general_ci char(128) select,insert,update,references
  10228. NULL mysql host Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10229. NULL mysql host Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10230. NULL mysql host Select_priv 3 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10231. NULL mysql host Insert_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10232. NULL mysql host Update_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10233. NULL mysql host Delete_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10234. NULL mysql host Create_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10235. NULL mysql host Drop_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10236. NULL mysql host Grant_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10237. NULL mysql host References_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10238. NULL mysql host Index_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10239. NULL mysql host Alter_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10240. 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
  10241. 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
  10242. 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
  10243. 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
  10244. 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
  10245. 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
  10246. NULL mysql host Execute_priv 19 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10247. NULL mysql host Trigger_priv 20 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10248. 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
  10249. NULL mysql ndb_apply_status epoch 2 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10250. NULL mysql ndb_binlog_index Position 1 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10251. NULL mysql ndb_binlog_index File 2 NULL NO varchar 255 255 NULL NULL latin1 latin1_swedish_ci varchar(255) select,insert,update,references
  10252. NULL mysql ndb_binlog_index epoch 3 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned PRI select,insert,update,references
  10253. NULL mysql ndb_binlog_index inserts 4 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10254. NULL mysql ndb_binlog_index updates 5 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10255. NULL mysql ndb_binlog_index deletes 6 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10256. NULL mysql ndb_binlog_index schemaops 7 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10257. NULL mysql plugin name 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10258. NULL mysql plugin dl 2 NO char 128 384 NULL NULL utf8 utf8_bin char(128) select,insert,update,references
  10259. NULL mysql proc db 1 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10260. NULL mysql proc name 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  10261. NULL mysql proc type 3 NULL NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('FUNCTION','PROCEDURE') PRI select,insert,update,references
  10262. NULL mysql proc specific_name 4 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10263. NULL mysql proc language 5 SQL NO enum 3 9 NULL NULL utf8 utf8_general_ci enum('SQL') select,insert,update,references
  10264. 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
  10265. NULL mysql proc is_deterministic 7 NO NO enum 3 9 NULL NULL utf8 utf8_general_ci enum('YES','NO') select,insert,update,references
  10266. NULL mysql proc security_type 8 DEFINER NO enum 7 21 NULL NULL utf8 utf8_general_ci enum('INVOKER','DEFINER') select,insert,update,references
  10267. NULL mysql proc param_list 9 NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10268. NULL mysql proc returns 10 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10269. NULL mysql proc body 11 NO longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10270. NULL mysql proc definer 12 NO char 77 231 NULL NULL utf8 utf8_bin char(77) select,insert,update,references
  10271. NULL mysql proc created 13 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10272. NULL mysql proc modified 14 0000-00-00 00:00:00 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10273. 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
  10274. NULL mysql proc comment 16 NO char 64 192 NULL NULL utf8 utf8_bin char(64) select,insert,update,references
  10275. NULL mysql procs_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10276. NULL mysql procs_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10277. NULL mysql procs_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  10278. NULL mysql procs_priv Routine_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10279. 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
  10280. NULL mysql procs_priv Grantor 6 NO char 77 231 NULL NULL utf8 utf8_bin char(77) MUL select,insert,update,references
  10281. 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
  10282. NULL mysql procs_priv Timestamp 8 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10283. NULL mysql servers Server_name 1 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) PRI select,insert,update,references
  10284. NULL mysql servers Host 2 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10285. NULL mysql servers Db 3 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10286. NULL mysql servers Username 4 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10287. NULL mysql servers Password 5 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10288. NULL mysql servers Port 6 0 NO int NULL NULL 10 0 NULL NULL int(4) select,insert,update,references
  10289. NULL mysql servers Socket 7 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10290. NULL mysql servers Wrapper 8 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10291. NULL mysql servers Owner 9 NO char 64 192 NULL NULL utf8 utf8_general_ci char(64) select,insert,update,references
  10292. NULL mysql slow_log start_time 1 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10293. NULL mysql slow_log user_host 2 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  10294. NULL mysql slow_log query_time 3 NULL NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  10295. NULL mysql slow_log lock_time 4 NULL NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  10296. NULL mysql slow_log rows_sent 5 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10297. NULL mysql slow_log rows_examined 6 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10298. NULL mysql slow_log db 7 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select,insert,update,references
  10299. NULL mysql slow_log last_insert_id 8 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10300. NULL mysql slow_log insert_id 9 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10301. NULL mysql slow_log server_id 10 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10302. NULL mysql slow_log sql_text 11 NULL NO mediumtext 16777215 16777215 NULL NULL utf8 utf8_general_ci mediumtext select,insert,update,references
  10303. NULL mysql tables_priv Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10304. NULL mysql tables_priv Db 2 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10305. NULL mysql tables_priv User 3 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  10306. NULL mysql tables_priv Table_name 4 NO char 64 192 NULL NULL utf8 utf8_bin char(64) PRI select,insert,update,references
  10307. NULL mysql tables_priv Grantor 5 NO char 77 231 NULL NULL utf8 utf8_bin char(77) MUL select,insert,update,references
  10308. NULL mysql tables_priv Timestamp 6 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10309. 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
  10310. 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
  10311. 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
  10312. 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
  10313. 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
  10314. NULL mysql time_zone_leap_second Correction 2 NULL NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10315. 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
  10316. 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
  10317. 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
  10318. NULL mysql time_zone_transition Transition_time 2 NULL NO bigint NULL NULL 19 0 NULL NULL bigint(20) PRI select,insert,update,references
  10319. 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
  10320. 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
  10321. 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
  10322. NULL mysql time_zone_transition_type Offset 3 0 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10323. 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
  10324. NULL mysql time_zone_transition_type Abbreviation 5 NO char 8 24 NULL NULL utf8 utf8_general_ci char(8) select,insert,update,references
  10325. NULL mysql user Host 1 NO char 60 180 NULL NULL utf8 utf8_bin char(60) PRI select,insert,update,references
  10326. NULL mysql user User 2 NO char 16 48 NULL NULL utf8 utf8_bin char(16) PRI select,insert,update,references
  10327. NULL mysql user Password 3 NO char 41 41 NULL NULL latin1 latin1_bin char(41) select,insert,update,references
  10328. NULL mysql user Select_priv 4 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10329. NULL mysql user Insert_priv 5 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10330. NULL mysql user Update_priv 6 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10331. NULL mysql user Delete_priv 7 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10332. NULL mysql user Create_priv 8 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10333. NULL mysql user Drop_priv 9 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10334. NULL mysql user Reload_priv 10 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10335. NULL mysql user Shutdown_priv 11 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10336. NULL mysql user Process_priv 12 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10337. NULL mysql user File_priv 13 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10338. NULL mysql user Grant_priv 14 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10339. NULL mysql user References_priv 15 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10340. NULL mysql user Index_priv 16 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10341. NULL mysql user Alter_priv 17 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10342. 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
  10343. NULL mysql user Super_priv 19 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10344. 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
  10345. 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
  10346. NULL mysql user Execute_priv 22 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10347. 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
  10348. 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
  10349. 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
  10350. 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
  10351. 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
  10352. 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
  10353. 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
  10354. NULL mysql user Event_priv 30 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10355. NULL mysql user Trigger_priv 31 N NO enum 1 3 NULL NULL utf8 utf8_general_ci enum('N','Y') select,insert,update,references
  10356. NULL mysql user ssl_type 32 NO enum 9 27 NULL NULL utf8 utf8_general_ci enum('','ANY','X509','SPECIFIED') select,insert,update,references
  10357. NULL mysql user ssl_cipher 33 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10358. NULL mysql user x509_issuer 34 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10359. NULL mysql user x509_subject 35 NULL NO blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10360. NULL mysql user max_questions 36 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  10361. NULL mysql user max_updates 37 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  10362. NULL mysql user max_connections 38 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  10363. NULL mysql user max_user_connections 39 0 NO int NULL NULL 10 0 NULL NULL int(11) unsigned select,insert,update,references
  10364. NULL test t1 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10365. NULL test t1 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10366. NULL test t1 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10367. NULL test t1 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10368. NULL test t1 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10369. NULL test t1 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10370. NULL test t10 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10371. NULL test t10 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10372. NULL test t10 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10373. NULL test t10 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10374. NULL test t10 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10375. NULL test t10 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10376. NULL test t11 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10377. NULL test t11 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10378. NULL test t11 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10379. NULL test t11 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10380. NULL test t11 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10381. NULL test t11 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10382. NULL test t2 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10383. NULL test t2 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10384. NULL test t2 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10385. NULL test t2 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10386. NULL test t2 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10387. NULL test t2 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10388. NULL test t3 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10389. NULL test t3 f2 2 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10390. NULL test t3 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10391. NULL test t4 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10392. NULL test t4 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10393. NULL test t4 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10394. NULL test t4 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10395. NULL test t4 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10396. NULL test t4 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10397. NULL test t7 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10398. NULL test t7 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10399. NULL test t7 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10400. NULL test t7 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10401. NULL test t8 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10402. NULL test t8 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10403. NULL test t8 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10404. NULL test t8 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10405. NULL test t9 f1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10406. NULL test t9 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10407. NULL test t9 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10408. NULL test tb1 f1 1 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10409. NULL test tb1 f2 2 NULL YES char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  10410. NULL test tb1 f3 3 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10411. NULL test tb1 f4 4 NULL YES tinytext 127 255 NULL NULL ucs2 ucs2_general_ci tinytext select,insert,update,references
  10412. NULL test tb1 f5 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  10413. NULL test tb1 f6 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  10414. NULL test tb1 f7 7 NULL YES longtext 4294967295 4294967295 NULL NULL latin1 latin1_swedish_ci longtext select,insert,update,references
  10415. NULL test tb1 f8 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  10416. NULL test tb1 f9 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10417. NULL test tb1 f10 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  10418. NULL test tb1 f11 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10419. NULL test tb1 f12 12 NULL YES binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  10420. NULL test tb1 f13 13 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  10421. NULL test tb1 f14 14 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  10422. NULL test tb1 f15 15 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10423. NULL test tb1 f16 16 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10424. NULL test tb1 f17 17 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  10425. NULL test tb1 f18 18 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  10426. NULL test tb1 f19 19 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10427. NULL test tb1 f20 20 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10428. NULL test tb1 f21 21 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  10429. NULL test tb1 f22 22 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  10430. NULL test tb1 f23 23 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10431. NULL test tb1 f24 24 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10432. NULL test tb1 f25 25 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10433. NULL test tb1 f26 26 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  10434. NULL test tb1 f27 27 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10435. NULL test tb1 f28 28 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10436. NULL test tb1 f29 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  10437. NULL test tb1 f30 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10438. NULL test tb1 f31 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10439. NULL test tb1 f32 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10440. NULL test tb1 f33 33 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10441. NULL test tb1 f34 34 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10442. NULL test tb1 f35 35 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10443. NULL test tb1 f36 36 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10444. NULL test tb1 f37 37 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10445. NULL test tb1 f38 38 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10446. NULL test tb1 f39 39 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10447. NULL test tb1 f40 40 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10448. NULL test tb1 f41 41 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10449. NULL test tb1 f42 42 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10450. NULL test tb1 f43 43 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10451. NULL test tb1 f44 44 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10452. NULL test tb1 f45 45 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10453. NULL test tb1 f46 46 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10454. NULL test tb1 f47 47 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10455. NULL test tb1 f48 48 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10456. NULL test tb1 f49 49 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10457. NULL test tb1 f50 50 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10458. NULL test tb1 f51 51 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10459. NULL test tb1 f52 52 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10460. NULL test tb1 f53 53 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10461. NULL test tb1 f54 54 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10462. NULL test tb1 f55 55 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10463. NULL test tb1 f56 56 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10464. NULL test tb1 f57 57 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10465. NULL test tb1 f58 58 99 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10466. NULL test tb2 f59 1 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10467. NULL test tb2 f60 2 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10468. NULL test tb2 f61 3 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10469. NULL test tb2 f62 4 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10470. NULL test tb2 f63 5 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10471. NULL test tb2 f64 6 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10472. NULL test tb2 f65 7 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10473. NULL test tb2 f66 8 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10474. NULL test tb2 f67 9 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10475. NULL test tb2 f68 10 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10476. NULL test tb2 f69 11 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10477. NULL test tb2 f70 12 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10478. NULL test tb2 f71 13 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10479. NULL test tb2 f72 14 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10480. NULL test tb2 f73 15 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10481. NULL test tb2 f74 16 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10482. NULL test tb2 f75 17 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10483. NULL test tb2 f76 18 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10484. NULL test tb2 f77 19 7.7 YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10485. NULL test tb2 f78 20 7.7 YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10486. NULL test tb2 f79 21 00000000000000000007.7 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10487. NULL test tb2 f80 22 00000000000000000008.8 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10488. NULL test tb2 f81 23 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10489. NULL test tb2 f82 24 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10490. NULL test tb2 f83 25 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10491. NULL test tb2 f84 26 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10492. NULL test tb2 f85 27 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10493. NULL test tb2 f86 28 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10494. NULL test tb2 f87 29 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10495. NULL test tb2 f88 30 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10496. NULL test tb2 f89 31 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10497. NULL test tb2 f90 32 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10498. NULL test tb2 f91 33 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10499. NULL test tb2 f92 34 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10500. NULL test tb2 f93 35 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10501. NULL test tb2 f94 36 8.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10502. NULL test tb2 f95 37 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10503. NULL test tb2 f96 38 8.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10504. NULL test tb2 f97 39 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10505. NULL test tb2 f98 40 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10506. NULL test tb2 f99 41 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10507. NULL test tb2 f100 42 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10508. NULL test tb2 f101 43 2000-01-01 NO date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10509. NULL test tb2 f102 44 00:00:20 NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  10510. NULL test tb2 f103 45 0002-02-02 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  10511. NULL test tb2 f104 46 2000-12-31 23:59:59 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10512. NULL test tb2 f105 47 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10513. NULL test tb2 f106 48 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10514. NULL test tb2 f107 49 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10515. NULL test tb2 f108 50 1enum NO enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  10516. NULL test tb2 f109 51 1set NO set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  10517. NULL test tb2 f110 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  10518. NULL test tb2 f111 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  10519. NULL test tb2 f112 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  10520. NULL test tb2 f113 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  10521. NULL test tb2 f114 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  10522. NULL test tb2 f115 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  10523. NULL test tb2 f116 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  10524. NULL test tb2 f117 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  10525. NULL test tb3 f118 1 a NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10526. NULL test tb3 f119 2  NO char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  10527. NULL test tb3 f120 3  NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10528. NULL test tb3 f121 4 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  10529. NULL test tb3 f122 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  10530. NULL test tb3 f123 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  10531. NULL test tb3 f124 7 NULL YES longtext 2147483647 4294967295 NULL NULL ucs2 ucs2_general_ci longtext select,insert,update,references
  10532. NULL test tb3 f125 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  10533. NULL test tb3 f126 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10534. NULL test tb3 f127 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  10535. NULL test tb3 f128 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  10536. NULL test tb3 f129 12  NO binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  10537. NULL test tb3 f130 13 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  10538. NULL test tb3 f131 14 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  10539. NULL test tb3 f132 15 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10540. NULL test tb3 f133 16 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  10541. NULL test tb3 f134 17 999 NO smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  10542. NULL test tb3 f135 18 999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  10543. NULL test tb3 f136 19 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10544. NULL test tb3 f137 20 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  10545. NULL test tb3 f138 21 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  10546. NULL test tb3 f139 22 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  10547. NULL test tb3 f140 23 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10548. NULL test tb3 f141 24 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  10549. NULL test tb3 f142 25 99999 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10550. NULL test tb3 f143 26 99999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  10551. NULL test tb3 f144 27 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10552. NULL test tb3 f145 28 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  10553. NULL test tb3 f146 29 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  10554. NULL test tb3 f147 30 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  10555. NULL test tb3 f148 31 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10556. NULL test tb3 f149 32 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  10557. NULL test tb3 f150 33 1000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10558. NULL test tb3 f151 34 999 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10559. NULL test tb3 f152 35 0000001000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10560. NULL test tb3 f153 36 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10561. NULL test tb3 f154 37 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10562. NULL test tb3 f155 38 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10563. NULL test tb3 f156 39 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10564. NULL test tb3 f157 40 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10565. NULL test tb3 f158 41 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10566. NULL test tb3 f159 42 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10567. NULL test tb3 f160 43 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10568. NULL test tb3 f161 44 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10569. NULL test tb3 f162 45 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10570. NULL test tb3 f163 46 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10571. NULL test tb3 f164 47 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10572. NULL test tb3 f165 48 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10573. NULL test tb3 f166 49 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10574. NULL test tb3 f167 50 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10575. NULL test tb3 f168 51 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10576. NULL test tb3 f169 52 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10577. NULL test tb3 f170 53 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10578. NULL test tb3 f171 54 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10579. NULL test tb3 f172 55 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10580. NULL test tb3 f173 56 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10581. NULL test tb3 f174 57 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10582. NULL test tb3 f175 58 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  10583. NULL test tb4 f176 1 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10584. NULL test tb4 f177 2 9 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  10585. NULL test tb4 f178 3 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10586. NULL test tb4 f179 4 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10587. NULL test tb4 f180 5 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10588. NULL test tb4 f181 6 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  10589. NULL test tb4 f182 7 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  10590. NULL test tb4 f183 8 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  10591. NULL test tb4 f184 9 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  10592. NULL test tb4 f185 10 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  10593. NULL test tb4 f186 11 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10594. NULL test tb4 f187 12 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10595. NULL test tb4 f188 13 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  10596. NULL test tb4 f189 14 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  10597. NULL test tb4 f190 15 88.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10598. NULL test tb4 f191 16 88.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10599. NULL test tb4 f192 17 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10600. NULL test tb4 f193 18 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10601. NULL test tb4 f194 19 55.5 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10602. NULL test tb4 f195 20 55.5 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10603. NULL test tb4 f196 21 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10604. NULL test tb4 f197 22 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10605. NULL test tb4 f198 23 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10606. NULL test tb4 f199 24 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10607. NULL test tb4 f200 25 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10608. NULL test tb4 f201 26 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10609. NULL test tb4 f202 27 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10610. NULL test tb4 f203 28 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10611. NULL test tb4 f204 29 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10612. NULL test tb4 f205 30 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10613. NULL test tb4 f206 31 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10614. NULL test tb4 f207 32 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10615. NULL test tb4 f208 33 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10616. NULL test tb4 f209 34 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10617. NULL test tb4 f210 35 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  10618. NULL test tb4 f211 36 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  10619. NULL test tb4 f212 37 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  10620. NULL test tb4 f213 38 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  10621. NULL test tb4 f214 39 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10622. NULL test tb4 f215 40 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10623. NULL test tb4 f216 41 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  10624. NULL test tb4 f217 42 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  10625. NULL test tb4 f218 43 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10626. NULL test tb4 f219 44 NULL YES time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  10627. NULL test tb4 f220 45 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  10628. NULL test tb4 f221 46 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  10629. NULL test tb4 f222 47 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10630. NULL test tb4 f223 48 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10631. NULL test tb4 f224 49 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  10632. NULL test tb4 f225 50 NULL YES enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  10633. NULL test tb4 f226 51 NULL YES set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  10634. NULL test tb4 f227 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  10635. NULL test tb4 f228 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  10636. NULL test tb4 f229 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  10637. NULL test tb4 f230 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  10638. NULL test tb4 f231 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  10639. NULL test tb4 f232 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  10640. NULL test tb4 f233 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  10641. NULL test tb4 f234 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  10642. NULL test tb4 f235 60 NULL YES char 255 510 NULL NULL ucs2 ucs2_general_ci char(255) select,insert,update,references
  10643. NULL test tb4 f236 61 NULL YES char 60 60 NULL NULL latin1 latin1_swedish_ci char(60) select,insert,update,references
  10644. NULL test tb4 f237 62 NULL YES char 255 255 NULL NULL latin1 latin1_bin char(255) select,insert,update,references
  10645. NULL test tb4 f238 63 NULL YES varchar 0 0 NULL NULL latin1 latin1_bin varchar(0) select,insert,update,references
  10646. NULL test tb4 f239 64 NULL YES varbinary 1000 1000 NULL NULL NULL NULL varbinary(1000) select,insert,update,references
  10647. NULL test tb4 f240 65 NULL YES varchar 120 240 NULL NULL ucs2 ucs2_general_ci varchar(120) select,insert,update,references
  10648. NULL test tb4 f241 66 NULL YES char 100 200 NULL NULL ucs2 ucs2_general_ci char(100) select,insert,update,references
  10649. NULL test tb4 f242 67 NULL YES bit NULL NULL 30 NULL NULL NULL bit(30) select,insert,update,references
  10650. NULL test4 t6 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10651. NULL test4 t6 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10652. NULL test4 t6 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10653. NULL test4 t6 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10654. NULL test4 t6 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10655. NULL test4 t6 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10656. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  10657. SELECT * FROM information_schema.columns
  10658. ORDER BY table_schema, table_name, ordinal_position;
  10659. 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
  10660. NULL db_datadict t_6_406001 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select
  10661. NULL db_datadict t_6_406001 f2 2 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select
  10662. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10663. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10664. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  10665. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  10666. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10667. NULL information_schema COLLATIONS CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10668. NULL information_schema COLLATIONS ID 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(11) select
  10669. NULL information_schema COLLATIONS IS_DEFAULT 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10670. NULL information_schema COLLATIONS IS_COMPILED 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10671. NULL information_schema COLLATIONS SORTLEN 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  10672. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10673. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10674. NULL information_schema COLUMNS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10675. NULL information_schema COLUMNS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10676. NULL information_schema COLUMNS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10677. NULL information_schema COLUMNS COLUMN_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10678. NULL information_schema COLUMNS ORDINAL_POSITION 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10679. NULL information_schema COLUMNS COLUMN_DEFAULT 6 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10680. NULL information_schema COLUMNS IS_NULLABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10681. NULL information_schema COLUMNS DATA_TYPE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10682. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10683. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10684. NULL information_schema COLUMNS NUMERIC_PRECISION 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10685. NULL information_schema COLUMNS NUMERIC_SCALE 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10686. NULL information_schema COLUMNS CHARACTER_SET_NAME 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10687. NULL information_schema COLUMNS COLLATION_NAME 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10688. NULL information_schema COLUMNS COLUMN_TYPE 15 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10689. NULL information_schema COLUMNS COLUMN_KEY 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10690. NULL information_schema COLUMNS EXTRA 17 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10691. NULL information_schema COLUMNS PRIVILEGES 18 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10692. NULL information_schema COLUMNS COLUMN_COMMENT 19 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  10693. NULL information_schema COLUMN_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  10694. NULL information_schema COLUMN_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10695. NULL information_schema COLUMN_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10696. NULL information_schema COLUMN_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10697. NULL information_schema COLUMN_PRIVILEGES COLUMN_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10698. NULL information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10699. NULL information_schema COLUMN_PRIVILEGES IS_GRANTABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10700. NULL information_schema ENGINES ENGINE 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10701. NULL information_schema ENGINES SUPPORT 2 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10702. NULL information_schema ENGINES COMMENT 3 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10703. NULL information_schema ENGINES TRANSACTIONS 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10704. NULL information_schema ENGINES XA 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10705. NULL information_schema ENGINES SAVEPOINTS 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10706. NULL information_schema EVENTS EVENT_CATALOG 1 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10707. NULL information_schema EVENTS EVENT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10708. NULL information_schema EVENTS EVENT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10709. NULL information_schema EVENTS DEFINER 4 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  10710. NULL information_schema EVENTS EVENT_BODY 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10711. NULL information_schema EVENTS EVENT_DEFINITION 6 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10712. NULL information_schema EVENTS EVENT_TYPE 7 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  10713. NULL information_schema EVENTS EXECUTE_AT 8 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10714. NULL information_schema EVENTS INTERVAL_VALUE 9 NULL YES varchar 256 768 NULL NULL utf8 utf8_general_ci varchar(256) select
  10715. NULL information_schema EVENTS INTERVAL_FIELD 10 NULL YES varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  10716. NULL information_schema EVENTS SQL_MODE 11 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10717. NULL information_schema EVENTS STARTS 12 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10718. NULL information_schema EVENTS ENDS 13 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10719. NULL information_schema EVENTS STATUS 14 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10720. NULL information_schema EVENTS ON_COMPLETION 15 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  10721. NULL information_schema EVENTS CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  10722. NULL information_schema EVENTS LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  10723. NULL information_schema EVENTS LAST_EXECUTED 18 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10724. NULL information_schema EVENTS EVENT_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10725. NULL information_schema FILES FILE_ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10726. NULL information_schema FILES FILE_NAME 2 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10727. NULL information_schema FILES FILE_TYPE 3 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10728. NULL information_schema FILES TABLESPACE_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10729. NULL information_schema FILES TABLE_CATALOG 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10730. NULL information_schema FILES TABLE_SCHEMA 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10731. NULL information_schema FILES TABLE_NAME 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10732. NULL information_schema FILES LOGFILE_GROUP_NAME 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10733. NULL information_schema FILES LOGFILE_GROUP_NUMBER 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10734. NULL information_schema FILES ENGINE 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10735. NULL information_schema FILES FULLTEXT_KEYS 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10736. NULL information_schema FILES DELETED_ROWS 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10737. NULL information_schema FILES UPDATE_COUNT 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10738. NULL information_schema FILES FREE_EXTENTS 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10739. NULL information_schema FILES TOTAL_EXTENTS 15 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10740. NULL information_schema FILES EXTENT_SIZE 16 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10741. NULL information_schema FILES INITIAL_SIZE 17 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10742. NULL information_schema FILES MAXIMUM_SIZE 18 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10743. NULL information_schema FILES AUTOEXTEND_SIZE 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10744. NULL information_schema FILES CREATION_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10745. NULL information_schema FILES LAST_UPDATE_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10746. NULL information_schema FILES LAST_ACCESS_TIME 22 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10747. NULL information_schema FILES RECOVER_TIME 23 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10748. NULL information_schema FILES TRANSACTION_COUNTER 24 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10749. NULL information_schema FILES VERSION 25 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10750. NULL information_schema FILES ROW_FORMAT 26 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  10751. NULL information_schema FILES TABLE_ROWS 27 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10752. NULL information_schema FILES AVG_ROW_LENGTH 28 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10753. NULL information_schema FILES DATA_LENGTH 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10754. NULL information_schema FILES MAX_DATA_LENGTH 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10755. NULL information_schema FILES INDEX_LENGTH 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10756. NULL information_schema FILES DATA_FREE 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10757. NULL information_schema FILES CREATE_TIME 33 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10758. NULL information_schema FILES UPDATE_TIME 34 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10759. NULL information_schema FILES CHECK_TIME 35 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10760. NULL information_schema FILES CHECKSUM 36 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10761. NULL information_schema FILES STATUS 37 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10762. NULL information_schema FILES EXTRA 38 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  10763. NULL information_schema GLOBAL_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10764. NULL information_schema GLOBAL_STATUS VARIABLE_VALUE 2 0.0000000 NO decimal NULL NULL 22 7 NULL NULL decimal(22,7) select
  10765. NULL information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10766. NULL information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10767. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10768. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10769. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10770. NULL information_schema KEY_COLUMN_USAGE TABLE_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10771. NULL information_schema KEY_COLUMN_USAGE TABLE_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10772. NULL information_schema KEY_COLUMN_USAGE TABLE_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10773. NULL information_schema KEY_COLUMN_USAGE COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10774. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  10775. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(10) select
  10776. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10777. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10778. NULL information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME 12 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10779. NULL information_schema PARTITIONS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10780. NULL information_schema PARTITIONS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10781. NULL information_schema PARTITIONS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10782. NULL information_schema PARTITIONS PARTITION_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10783. NULL information_schema PARTITIONS SUBPARTITION_NAME 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10784. NULL information_schema PARTITIONS PARTITION_ORDINAL_POSITION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10785. NULL information_schema PARTITIONS SUBPARTITION_ORDINAL_POSITION 7 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10786. NULL information_schema PARTITIONS PARTITION_METHOD 8 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  10787. NULL information_schema PARTITIONS SUBPARTITION_METHOD 9 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  10788. NULL information_schema PARTITIONS PARTITION_EXPRESSION 10 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10789. NULL information_schema PARTITIONS SUBPARTITION_EXPRESSION 11 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10790. NULL information_schema PARTITIONS PARTITION_DESCRIPTION 12 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10791. NULL information_schema PARTITIONS TABLE_ROWS 13 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10792. NULL information_schema PARTITIONS AVG_ROW_LENGTH 14 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10793. NULL information_schema PARTITIONS DATA_LENGTH 15 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10794. NULL information_schema PARTITIONS MAX_DATA_LENGTH 16 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10795. NULL information_schema PARTITIONS INDEX_LENGTH 17 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10796. NULL information_schema PARTITIONS DATA_FREE 18 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10797. NULL information_schema PARTITIONS CREATE_TIME 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10798. NULL information_schema PARTITIONS UPDATE_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10799. NULL information_schema PARTITIONS CHECK_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10800. NULL information_schema PARTITIONS CHECKSUM 22 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10801. NULL information_schema PARTITIONS PARTITION_COMMENT 23 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10802. NULL information_schema PARTITIONS NODEGROUP 24 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  10803. NULL information_schema PARTITIONS TABLESPACE_NAME 25 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10804. NULL information_schema PLUGINS PLUGIN_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10805. NULL information_schema PLUGINS PLUGIN_VERSION 2 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10806. NULL information_schema PLUGINS PLUGIN_STATUS 3 NO varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  10807. NULL information_schema PLUGINS PLUGIN_TYPE 4 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10808. NULL information_schema PLUGINS PLUGIN_TYPE_VERSION 5 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10809. NULL information_schema PLUGINS PLUGIN_LIBRARY 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10810. NULL information_schema PLUGINS PLUGIN_LIBRARY_VERSION 7 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  10811. NULL information_schema PLUGINS PLUGIN_AUTHOR 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10812. NULL information_schema PLUGINS PLUGIN_DESCRIPTION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10813. NULL information_schema PLUGINS PLUGIN_LICENSE 10 NULL YES varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10814. NULL information_schema PROCESSLIST ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10815. NULL information_schema PROCESSLIST USER 2 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10816. NULL information_schema PROCESSLIST HOST 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10817. NULL information_schema PROCESSLIST DB 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10818. NULL information_schema PROCESSLIST COMMAND 5 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10819. NULL information_schema PROCESSLIST TIME 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(7) select
  10820. NULL information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10821. NULL information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10822. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10823. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10824. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10825. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10826. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10827. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10828. NULL information_schema REFERENTIAL_CONSTRAINTS MATCH_OPTION 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10829. NULL information_schema REFERENTIAL_CONSTRAINTS UPDATE_RULE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10830. NULL information_schema REFERENTIAL_CONSTRAINTS DELETE_RULE 9 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10831. NULL information_schema REFERENTIAL_CONSTRAINTS TABLE_NAME 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10832. NULL information_schema REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME 11 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10833. NULL information_schema ROUTINES SPECIFIC_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10834. NULL information_schema ROUTINES ROUTINE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10835. NULL information_schema ROUTINES ROUTINE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10836. NULL information_schema ROUTINES ROUTINE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10837. NULL information_schema ROUTINES ROUTINE_TYPE 5 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  10838. NULL information_schema ROUTINES DTD_IDENTIFIER 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10839. NULL information_schema ROUTINES ROUTINE_BODY 7 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10840. NULL information_schema ROUTINES ROUTINE_DEFINITION 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10841. NULL information_schema ROUTINES EXTERNAL_NAME 9 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10842. NULL information_schema ROUTINES EXTERNAL_LANGUAGE 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10843. NULL information_schema ROUTINES PARAMETER_STYLE 11 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10844. NULL information_schema ROUTINES IS_DETERMINISTIC 12 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10845. NULL information_schema ROUTINES SQL_DATA_ACCESS 13 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10846. NULL information_schema ROUTINES SQL_PATH 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10847. NULL information_schema ROUTINES SECURITY_TYPE 15 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  10848. NULL information_schema ROUTINES CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  10849. NULL information_schema ROUTINES LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  10850. NULL information_schema ROUTINES SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10851. NULL information_schema ROUTINES ROUTINE_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10852. NULL information_schema ROUTINES DEFINER 20 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  10853. NULL information_schema SCHEMATA CATALOG_NAME 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10854. NULL information_schema SCHEMATA SCHEMA_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10855. NULL information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10856. NULL information_schema SCHEMATA DEFAULT_COLLATION_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10857. NULL information_schema SCHEMATA SQL_PATH 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10858. NULL information_schema SCHEMA_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  10859. NULL information_schema SCHEMA_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10860. NULL information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10861. NULL information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10862. NULL information_schema SCHEMA_PRIVILEGES IS_GRANTABLE 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10863. NULL information_schema SESSION_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10864. NULL information_schema SESSION_STATUS VARIABLE_VALUE 2 0.0000000 NO decimal NULL NULL 22 7 NULL NULL decimal(22,7) select
  10865. NULL information_schema SESSION_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10866. NULL information_schema SESSION_VARIABLES VARIABLE_VALUE 2 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10867. NULL information_schema STATISTICS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10868. NULL information_schema STATISTICS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10869. NULL information_schema STATISTICS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10870. NULL information_schema STATISTICS NON_UNIQUE 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(1) select
  10871. NULL information_schema STATISTICS INDEX_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10872. NULL information_schema STATISTICS INDEX_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10873. NULL information_schema STATISTICS SEQ_IN_INDEX 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(2) select
  10874. NULL information_schema STATISTICS COLUMN_NAME 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10875. NULL information_schema STATISTICS COLLATION 9 NULL YES varchar 1 3 NULL NULL utf8 utf8_general_ci varchar(1) select
  10876. NULL information_schema STATISTICS CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10877. NULL information_schema STATISTICS SUB_PART 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(3) select
  10878. NULL information_schema STATISTICS PACKED 12 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  10879. NULL information_schema STATISTICS NULLABLE 13 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10880. NULL information_schema STATISTICS INDEX_TYPE 14 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10881. NULL information_schema STATISTICS COMMENT 15 NULL YES varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  10882. NULL information_schema TABLES TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10883. NULL information_schema TABLES TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10884. NULL information_schema TABLES TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10885. NULL information_schema TABLES TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10886. NULL information_schema TABLES ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10887. NULL information_schema TABLES VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10888. NULL information_schema TABLES ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  10889. NULL information_schema TABLES TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10890. NULL information_schema TABLES AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10891. NULL information_schema TABLES DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10892. NULL information_schema TABLES MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10893. NULL information_schema TABLES INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10894. NULL information_schema TABLES DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10895. NULL information_schema TABLES AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10896. NULL information_schema TABLES CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10897. NULL information_schema TABLES UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10898. NULL information_schema TABLES CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10899. NULL information_schema TABLES TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10900. NULL information_schema TABLES CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  10901. NULL information_schema TABLES CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  10902. NULL information_schema TABLES TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  10903. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10904. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10905. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10906. NULL information_schema TABLE_CONSTRAINTS TABLE_SCHEMA 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10907. NULL information_schema TABLE_CONSTRAINTS TABLE_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10908. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10909. NULL information_schema TABLE_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  10910. NULL information_schema TABLE_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10911. NULL information_schema TABLE_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10912. NULL information_schema TABLE_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10913. NULL information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10914. NULL information_schema TABLE_PRIVILEGES IS_GRANTABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10915. NULL information_schema TRIGGERS TRIGGER_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10916. NULL information_schema TRIGGERS TRIGGER_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10917. NULL information_schema TRIGGERS TRIGGER_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10918. NULL information_schema TRIGGERS EVENT_MANIPULATION 4 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  10919. NULL information_schema TRIGGERS EVENT_OBJECT_CATALOG 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10920. NULL information_schema TRIGGERS EVENT_OBJECT_SCHEMA 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10921. NULL information_schema TRIGGERS EVENT_OBJECT_TABLE 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10922. NULL information_schema TRIGGERS ACTION_ORDER 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  10923. NULL information_schema TRIGGERS ACTION_CONDITION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10924. NULL information_schema TRIGGERS ACTION_STATEMENT 10 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10925. NULL information_schema TRIGGERS ACTION_ORIENTATION 11 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  10926. NULL information_schema TRIGGERS ACTION_TIMING 12 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  10927. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10928. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10929. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW 15 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10930. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10931. NULL information_schema TRIGGERS CREATED 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  10932. NULL information_schema TRIGGERS SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10933. NULL information_schema TRIGGERS DEFINER 19 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10934. NULL information_schema USER_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  10935. NULL information_schema USER_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10936. NULL information_schema USER_PRIVILEGES PRIVILEGE_TYPE 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10937. NULL information_schema USER_PRIVILEGES IS_GRANTABLE 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10938. NULL information_schema VIEWS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  10939. NULL information_schema VIEWS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10940. NULL information_schema VIEWS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  10941. NULL information_schema VIEWS VIEW_DEFINITION 4 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  10942. NULL information_schema VIEWS CHECK_OPTION 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  10943. NULL information_schema VIEWS IS_UPDATABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  10944. NULL information_schema VIEWS DEFINER 7 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  10945. NULL information_schema VIEWS SECURITY_TYPE 8 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  10946. NULL test t1 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10947. NULL test t1 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10948. NULL test t1 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10949. NULL test t1 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10950. NULL test t1 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10951. NULL test t1 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10952. NULL test t10 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10953. NULL test t10 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10954. NULL test t10 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10955. NULL test t10 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10956. NULL test t10 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10957. NULL test t10 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10958. NULL test t11 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10959. NULL test t11 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10960. NULL test t11 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10961. NULL test t11 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10962. NULL test t11 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10963. NULL test t11 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10964. NULL test t2 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10965. NULL test t2 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10966. NULL test t2 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10967. NULL test t2 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10968. NULL test t2 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10969. NULL test t2 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10970. NULL test t3 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10971. NULL test t3 f2 2 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10972. NULL test t3 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10973. NULL test t4 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10974. NULL test t4 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10975. NULL test t4 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10976. NULL test t4 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10977. NULL test t4 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10978. NULL test t4 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10979. NULL test t7 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10980. NULL test t7 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10981. NULL test t7 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10982. NULL test t7 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10983. NULL test t8 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  10984. NULL test t8 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10985. NULL test t8 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  10986. NULL test t8 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10987. NULL test t9 f1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10988. NULL test t9 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  10989. NULL test t9 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  10990. NULL test tb1 f1 1 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10991. NULL test tb1 f2 2 NULL YES char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  10992. NULL test tb1 f3 3 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  10993. NULL test tb1 f4 4 NULL YES tinytext 127 255 NULL NULL ucs2 ucs2_general_ci tinytext select,insert,update,references
  10994. NULL test tb1 f5 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  10995. NULL test tb1 f6 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  10996. NULL test tb1 f7 7 NULL YES longtext 4294967295 4294967295 NULL NULL latin1 latin1_swedish_ci longtext select,insert,update,references
  10997. NULL test tb1 f8 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  10998. NULL test tb1 f9 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  10999. NULL test tb1 f10 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  11000. NULL test tb1 f11 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  11001. NULL test tb1 f12 12 NULL YES binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  11002. NULL test tb1 f13 13 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  11003. NULL test tb1 f14 14 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  11004. NULL test tb1 f15 15 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11005. NULL test tb1 f16 16 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11006. NULL test tb1 f17 17 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  11007. NULL test tb1 f18 18 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  11008. NULL test tb1 f19 19 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11009. NULL test tb1 f20 20 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11010. NULL test tb1 f21 21 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  11011. NULL test tb1 f22 22 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  11012. NULL test tb1 f23 23 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11013. NULL test tb1 f24 24 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11014. NULL test tb1 f25 25 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11015. NULL test tb1 f26 26 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  11016. NULL test tb1 f27 27 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11017. NULL test tb1 f28 28 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11018. NULL test tb1 f29 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  11019. NULL test tb1 f30 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  11020. NULL test tb1 f31 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11021. NULL test tb1 f32 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11022. NULL test tb1 f33 33 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11023. NULL test tb1 f34 34 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11024. NULL test tb1 f35 35 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11025. NULL test tb1 f36 36 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11026. NULL test tb1 f37 37 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11027. NULL test tb1 f38 38 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11028. NULL test tb1 f39 39 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11029. NULL test tb1 f40 40 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11030. NULL test tb1 f41 41 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11031. NULL test tb1 f42 42 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11032. NULL test tb1 f43 43 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11033. NULL test tb1 f44 44 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11034. NULL test tb1 f45 45 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11035. NULL test tb1 f46 46 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11036. NULL test tb1 f47 47 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11037. NULL test tb1 f48 48 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11038. NULL test tb1 f49 49 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11039. NULL test tb1 f50 50 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11040. NULL test tb1 f51 51 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11041. NULL test tb1 f52 52 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11042. NULL test tb1 f53 53 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11043. NULL test tb1 f54 54 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11044. NULL test tb1 f55 55 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11045. NULL test tb1 f56 56 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11046. NULL test tb1 f57 57 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11047. NULL test tb1 f58 58 99 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11048. NULL test tb2 f59 1 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11049. NULL test tb2 f60 2 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11050. NULL test tb2 f61 3 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11051. NULL test tb2 f62 4 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11052. NULL test tb2 f63 5 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11053. NULL test tb2 f64 6 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11054. NULL test tb2 f65 7 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11055. NULL test tb2 f66 8 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11056. NULL test tb2 f67 9 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11057. NULL test tb2 f68 10 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11058. NULL test tb2 f69 11 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11059. NULL test tb2 f70 12 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11060. NULL test tb2 f71 13 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11061. NULL test tb2 f72 14 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11062. NULL test tb2 f73 15 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11063. NULL test tb2 f74 16 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11064. NULL test tb2 f75 17 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11065. NULL test tb2 f76 18 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11066. NULL test tb2 f77 19 7.7 YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11067. NULL test tb2 f78 20 7.7 YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11068. NULL test tb2 f79 21 00000000000000000007.7 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11069. NULL test tb2 f80 22 00000000000000000008.8 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11070. NULL test tb2 f81 23 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11071. NULL test tb2 f82 24 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11072. NULL test tb2 f83 25 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11073. NULL test tb2 f84 26 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11074. NULL test tb2 f85 27 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11075. NULL test tb2 f86 28 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11076. NULL test tb2 f87 29 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11077. NULL test tb2 f88 30 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11078. NULL test tb2 f89 31 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11079. NULL test tb2 f90 32 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11080. NULL test tb2 f91 33 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11081. NULL test tb2 f92 34 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11082. NULL test tb2 f93 35 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11083. NULL test tb2 f94 36 8.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11084. NULL test tb2 f95 37 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11085. NULL test tb2 f96 38 8.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11086. NULL test tb2 f97 39 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11087. NULL test tb2 f98 40 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11088. NULL test tb2 f99 41 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11089. NULL test tb2 f100 42 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11090. NULL test tb2 f101 43 2000-01-01 NO date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11091. NULL test tb2 f102 44 00:00:20 NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  11092. NULL test tb2 f103 45 0002-02-02 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  11093. NULL test tb2 f104 46 2000-12-31 23:59:59 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  11094. NULL test tb2 f105 47 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11095. NULL test tb2 f106 48 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11096. NULL test tb2 f107 49 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11097. NULL test tb2 f108 50 1enum NO enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  11098. NULL test tb2 f109 51 1set NO set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  11099. NULL test tb2 f110 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11100. NULL test tb2 f111 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  11101. NULL test tb2 f112 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11102. NULL test tb2 f113 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11103. NULL test tb2 f114 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11104. NULL test tb2 f115 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  11105. NULL test tb2 f116 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11106. NULL test tb2 f117 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11107. NULL test tb3 f118 1 a NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  11108. NULL test tb3 f119 2  NO char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  11109. NULL test tb3 f120 3  NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  11110. NULL test tb3 f121 4 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  11111. NULL test tb3 f122 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  11112. NULL test tb3 f123 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  11113. NULL test tb3 f124 7 NULL YES longtext 2147483647 4294967295 NULL NULL ucs2 ucs2_general_ci longtext select,insert,update,references
  11114. NULL test tb3 f125 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  11115. NULL test tb3 f126 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  11116. NULL test tb3 f127 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  11117. NULL test tb3 f128 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  11118. NULL test tb3 f129 12  NO binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  11119. NULL test tb3 f130 13 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  11120. NULL test tb3 f131 14 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  11121. NULL test tb3 f132 15 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11122. NULL test tb3 f133 16 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11123. NULL test tb3 f134 17 999 NO smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  11124. NULL test tb3 f135 18 999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  11125. NULL test tb3 f136 19 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11126. NULL test tb3 f137 20 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11127. NULL test tb3 f138 21 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  11128. NULL test tb3 f139 22 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  11129. NULL test tb3 f140 23 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11130. NULL test tb3 f141 24 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11131. NULL test tb3 f142 25 99999 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11132. NULL test tb3 f143 26 99999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  11133. NULL test tb3 f144 27 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11134. NULL test tb3 f145 28 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11135. NULL test tb3 f146 29 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  11136. NULL test tb3 f147 30 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  11137. NULL test tb3 f148 31 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11138. NULL test tb3 f149 32 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11139. NULL test tb3 f150 33 1000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11140. NULL test tb3 f151 34 999 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11141. NULL test tb3 f152 35 0000001000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11142. NULL test tb3 f153 36 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11143. NULL test tb3 f154 37 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11144. NULL test tb3 f155 38 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11145. NULL test tb3 f156 39 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11146. NULL test tb3 f157 40 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11147. NULL test tb3 f158 41 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11148. NULL test tb3 f159 42 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11149. NULL test tb3 f160 43 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11150. NULL test tb3 f161 44 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11151. NULL test tb3 f162 45 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11152. NULL test tb3 f163 46 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11153. NULL test tb3 f164 47 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11154. NULL test tb3 f165 48 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11155. NULL test tb3 f166 49 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11156. NULL test tb3 f167 50 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11157. NULL test tb3 f168 51 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11158. NULL test tb3 f169 52 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11159. NULL test tb3 f170 53 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11160. NULL test tb3 f171 54 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11161. NULL test tb3 f172 55 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11162. NULL test tb3 f173 56 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11163. NULL test tb3 f174 57 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11164. NULL test tb3 f175 58 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11165. NULL test tb4 f176 1 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11166. NULL test tb4 f177 2 9 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11167. NULL test tb4 f178 3 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11168. NULL test tb4 f179 4 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11169. NULL test tb4 f180 5 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11170. NULL test tb4 f181 6 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11171. NULL test tb4 f182 7 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11172. NULL test tb4 f183 8 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11173. NULL test tb4 f184 9 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11174. NULL test tb4 f185 10 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11175. NULL test tb4 f186 11 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11176. NULL test tb4 f187 12 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11177. NULL test tb4 f188 13 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11178. NULL test tb4 f189 14 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11179. NULL test tb4 f190 15 88.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11180. NULL test tb4 f191 16 88.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11181. NULL test tb4 f192 17 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11182. NULL test tb4 f193 18 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11183. NULL test tb4 f194 19 55.5 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11184. NULL test tb4 f195 20 55.5 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11185. NULL test tb4 f196 21 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11186. NULL test tb4 f197 22 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11187. NULL test tb4 f198 23 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11188. NULL test tb4 f199 24 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11189. NULL test tb4 f200 25 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11190. NULL test tb4 f201 26 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11191. NULL test tb4 f202 27 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11192. NULL test tb4 f203 28 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11193. NULL test tb4 f204 29 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11194. NULL test tb4 f205 30 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11195. NULL test tb4 f206 31 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11196. NULL test tb4 f207 32 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11197. NULL test tb4 f208 33 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11198. NULL test tb4 f209 34 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11199. NULL test tb4 f210 35 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11200. NULL test tb4 f211 36 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11201. NULL test tb4 f212 37 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11202. NULL test tb4 f213 38 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11203. NULL test tb4 f214 39 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11204. NULL test tb4 f215 40 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11205. NULL test tb4 f216 41 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11206. NULL test tb4 f217 42 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11207. NULL test tb4 f218 43 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11208. NULL test tb4 f219 44 NULL YES time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  11209. NULL test tb4 f220 45 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  11210. NULL test tb4 f221 46 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  11211. NULL test tb4 f222 47 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11212. NULL test tb4 f223 48 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11213. NULL test tb4 f224 49 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11214. NULL test tb4 f225 50 NULL YES enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  11215. NULL test tb4 f226 51 NULL YES set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  11216. NULL test tb4 f227 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11217. NULL test tb4 f228 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  11218. NULL test tb4 f229 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11219. NULL test tb4 f230 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11220. NULL test tb4 f231 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11221. NULL test tb4 f232 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  11222. NULL test tb4 f233 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11223. NULL test tb4 f234 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11224. NULL test tb4 f235 60 NULL YES char 255 510 NULL NULL ucs2 ucs2_general_ci char(255) select,insert,update,references
  11225. NULL test tb4 f236 61 NULL YES char 60 60 NULL NULL latin1 latin1_swedish_ci char(60) select,insert,update,references
  11226. NULL test tb4 f237 62 NULL YES char 255 255 NULL NULL latin1 latin1_bin char(255) select,insert,update,references
  11227. NULL test tb4 f238 63 NULL YES varchar 0 0 NULL NULL latin1 latin1_bin varchar(0) select,insert,update,references
  11228. NULL test tb4 f239 64 NULL YES varbinary 1000 1000 NULL NULL NULL NULL varbinary(1000) select,insert,update,references
  11229. NULL test tb4 f240 65 NULL YES varchar 120 240 NULL NULL ucs2 ucs2_general_ci varchar(120) select,insert,update,references
  11230. NULL test tb4 f241 66 NULL YES char 100 200 NULL NULL ucs2 ucs2_general_ci char(100) select,insert,update,references
  11231. NULL test tb4 f242 67 NULL YES bit NULL NULL 30 NULL NULL NULL bit(30) select,insert,update,references
  11232. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  11233. SELECT * FROM information_schema.columns
  11234. ORDER BY table_schema, table_name, ordinal_position;
  11235. 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
  11236. NULL db_datadict t_6_406002 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) insert
  11237. NULL db_datadict t_6_406002 f2 2 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text insert
  11238. NULL information_schema CHARACTER_SETS CHARACTER_SET_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11239. NULL information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11240. NULL information_schema CHARACTER_SETS DESCRIPTION 3 NO varchar 60 180 NULL NULL utf8 utf8_general_ci varchar(60) select
  11241. NULL information_schema CHARACTER_SETS MAXLEN 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  11242. NULL information_schema COLLATIONS COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11243. NULL information_schema COLLATIONS CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11244. NULL information_schema COLLATIONS ID 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(11) select
  11245. NULL information_schema COLLATIONS IS_DEFAULT 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11246. NULL information_schema COLLATIONS IS_COMPILED 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11247. NULL information_schema COLLATIONS SORTLEN 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(3) select
  11248. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11249. NULL information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11250. NULL information_schema COLUMNS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11251. NULL information_schema COLUMNS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11252. NULL information_schema COLUMNS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11253. NULL information_schema COLUMNS COLUMN_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11254. NULL information_schema COLUMNS ORDINAL_POSITION 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11255. NULL information_schema COLUMNS COLUMN_DEFAULT 6 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11256. NULL information_schema COLUMNS IS_NULLABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11257. NULL information_schema COLUMNS DATA_TYPE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11258. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11259. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11260. NULL information_schema COLUMNS NUMERIC_PRECISION 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11261. NULL information_schema COLUMNS NUMERIC_SCALE 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11262. NULL information_schema COLUMNS CHARACTER_SET_NAME 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11263. NULL information_schema COLUMNS COLLATION_NAME 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11264. NULL information_schema COLUMNS COLUMN_TYPE 15 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11265. NULL information_schema COLUMNS COLUMN_KEY 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11266. NULL information_schema COLUMNS EXTRA 17 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11267. NULL information_schema COLUMNS PRIVILEGES 18 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11268. NULL information_schema COLUMNS COLUMN_COMMENT 19 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  11269. NULL information_schema COLUMN_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11270. NULL information_schema COLUMN_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11271. NULL information_schema COLUMN_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11272. NULL information_schema COLUMN_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11273. NULL information_schema COLUMN_PRIVILEGES COLUMN_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11274. NULL information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11275. NULL information_schema COLUMN_PRIVILEGES IS_GRANTABLE 7 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11276. NULL information_schema ENGINES ENGINE 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11277. NULL information_schema ENGINES SUPPORT 2 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11278. NULL information_schema ENGINES COMMENT 3 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11279. NULL information_schema ENGINES TRANSACTIONS 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11280. NULL information_schema ENGINES XA 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11281. NULL information_schema ENGINES SAVEPOINTS 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11282. NULL information_schema EVENTS EVENT_CATALOG 1 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11283. NULL information_schema EVENTS EVENT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11284. NULL information_schema EVENTS EVENT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11285. NULL information_schema EVENTS DEFINER 4 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  11286. NULL information_schema EVENTS EVENT_BODY 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11287. NULL information_schema EVENTS EVENT_DEFINITION 6 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11288. NULL information_schema EVENTS EVENT_TYPE 7 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  11289. NULL information_schema EVENTS EXECUTE_AT 8 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11290. NULL information_schema EVENTS INTERVAL_VALUE 9 NULL YES varchar 256 768 NULL NULL utf8 utf8_general_ci varchar(256) select
  11291. NULL information_schema EVENTS INTERVAL_FIELD 10 NULL YES varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
  11292. NULL information_schema EVENTS SQL_MODE 11 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11293. NULL information_schema EVENTS STARTS 12 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11294. NULL information_schema EVENTS ENDS 13 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11295. NULL information_schema EVENTS STATUS 14 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11296. NULL information_schema EVENTS ON_COMPLETION 15 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11297. NULL information_schema EVENTS CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11298. NULL information_schema EVENTS LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11299. NULL information_schema EVENTS LAST_EXECUTED 18 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11300. NULL information_schema EVENTS EVENT_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11301. NULL information_schema FILES FILE_ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11302. NULL information_schema FILES FILE_NAME 2 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11303. NULL information_schema FILES FILE_TYPE 3 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11304. NULL information_schema FILES TABLESPACE_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11305. NULL information_schema FILES TABLE_CATALOG 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11306. NULL information_schema FILES TABLE_SCHEMA 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11307. NULL information_schema FILES TABLE_NAME 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11308. NULL information_schema FILES LOGFILE_GROUP_NAME 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11309. NULL information_schema FILES LOGFILE_GROUP_NUMBER 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11310. NULL information_schema FILES ENGINE 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11311. NULL information_schema FILES FULLTEXT_KEYS 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11312. NULL information_schema FILES DELETED_ROWS 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11313. NULL information_schema FILES UPDATE_COUNT 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11314. NULL information_schema FILES FREE_EXTENTS 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11315. NULL information_schema FILES TOTAL_EXTENTS 15 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11316. NULL information_schema FILES EXTENT_SIZE 16 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11317. NULL information_schema FILES INITIAL_SIZE 17 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11318. NULL information_schema FILES MAXIMUM_SIZE 18 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11319. NULL information_schema FILES AUTOEXTEND_SIZE 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11320. NULL information_schema FILES CREATION_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11321. NULL information_schema FILES LAST_UPDATE_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11322. NULL information_schema FILES LAST_ACCESS_TIME 22 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11323. NULL information_schema FILES RECOVER_TIME 23 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11324. NULL information_schema FILES TRANSACTION_COUNTER 24 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11325. NULL information_schema FILES VERSION 25 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11326. NULL information_schema FILES ROW_FORMAT 26 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11327. NULL information_schema FILES TABLE_ROWS 27 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11328. NULL information_schema FILES AVG_ROW_LENGTH 28 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11329. NULL information_schema FILES DATA_LENGTH 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11330. NULL information_schema FILES MAX_DATA_LENGTH 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11331. NULL information_schema FILES INDEX_LENGTH 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11332. NULL information_schema FILES DATA_FREE 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11333. NULL information_schema FILES CREATE_TIME 33 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11334. NULL information_schema FILES UPDATE_TIME 34 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11335. NULL information_schema FILES CHECK_TIME 35 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11336. NULL information_schema FILES CHECKSUM 36 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11337. NULL information_schema FILES STATUS 37 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11338. NULL information_schema FILES EXTRA 38 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  11339. NULL information_schema GLOBAL_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11340. NULL information_schema GLOBAL_STATUS VARIABLE_VALUE 2 0.0000000 NO decimal NULL NULL 22 7 NULL NULL decimal(22,7) select
  11341. NULL information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11342. NULL information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11343. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11344. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11345. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11346. NULL information_schema KEY_COLUMN_USAGE TABLE_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11347. NULL information_schema KEY_COLUMN_USAGE TABLE_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11348. NULL information_schema KEY_COLUMN_USAGE TABLE_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11349. NULL information_schema KEY_COLUMN_USAGE COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11350. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  11351. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(10) select
  11352. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11353. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11354. NULL information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME 12 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11355. NULL information_schema PARTITIONS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11356. NULL information_schema PARTITIONS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11357. NULL information_schema PARTITIONS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11358. NULL information_schema PARTITIONS PARTITION_NAME 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11359. NULL information_schema PARTITIONS SUBPARTITION_NAME 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11360. NULL information_schema PARTITIONS PARTITION_ORDINAL_POSITION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11361. NULL information_schema PARTITIONS SUBPARTITION_ORDINAL_POSITION 7 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11362. NULL information_schema PARTITIONS PARTITION_METHOD 8 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11363. NULL information_schema PARTITIONS SUBPARTITION_METHOD 9 NULL YES varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11364. NULL information_schema PARTITIONS PARTITION_EXPRESSION 10 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11365. NULL information_schema PARTITIONS SUBPARTITION_EXPRESSION 11 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11366. NULL information_schema PARTITIONS PARTITION_DESCRIPTION 12 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11367. NULL information_schema PARTITIONS TABLE_ROWS 13 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11368. NULL information_schema PARTITIONS AVG_ROW_LENGTH 14 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11369. NULL information_schema PARTITIONS DATA_LENGTH 15 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11370. NULL information_schema PARTITIONS MAX_DATA_LENGTH 16 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11371. NULL information_schema PARTITIONS INDEX_LENGTH 17 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11372. NULL information_schema PARTITIONS DATA_FREE 18 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11373. NULL information_schema PARTITIONS CREATE_TIME 19 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11374. NULL information_schema PARTITIONS UPDATE_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11375. NULL information_schema PARTITIONS CHECK_TIME 21 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11376. NULL information_schema PARTITIONS CHECKSUM 22 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11377. NULL information_schema PARTITIONS PARTITION_COMMENT 23 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11378. NULL information_schema PARTITIONS NODEGROUP 24 NO varchar 12 36 NULL NULL utf8 utf8_general_ci varchar(12) select
  11379. NULL information_schema PARTITIONS TABLESPACE_NAME 25 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11380. NULL information_schema PLUGINS PLUGIN_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11381. NULL information_schema PLUGINS PLUGIN_VERSION 2 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11382. NULL information_schema PLUGINS PLUGIN_STATUS 3 NO varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11383. NULL information_schema PLUGINS PLUGIN_TYPE 4 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11384. NULL information_schema PLUGINS PLUGIN_TYPE_VERSION 5 NO varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11385. NULL information_schema PLUGINS PLUGIN_LIBRARY 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11386. NULL information_schema PLUGINS PLUGIN_LIBRARY_VERSION 7 NULL YES varchar 20 60 NULL NULL utf8 utf8_general_ci varchar(20) select
  11387. NULL information_schema PLUGINS PLUGIN_AUTHOR 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11388. NULL information_schema PLUGINS PLUGIN_DESCRIPTION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11389. NULL information_schema PLUGINS PLUGIN_LICENSE 10 NULL YES varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11390. NULL information_schema PROCESSLIST ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11391. NULL information_schema PROCESSLIST USER 2 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11392. NULL information_schema PROCESSLIST HOST 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11393. NULL information_schema PROCESSLIST DB 4 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11394. NULL information_schema PROCESSLIST COMMAND 5 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11395. NULL information_schema PROCESSLIST TIME 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(7) select
  11396. NULL information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11397. NULL information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11398. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11399. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11400. NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11401. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11402. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11403. NULL information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11404. NULL information_schema REFERENTIAL_CONSTRAINTS MATCH_OPTION 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11405. NULL information_schema REFERENTIAL_CONSTRAINTS UPDATE_RULE 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11406. NULL information_schema REFERENTIAL_CONSTRAINTS DELETE_RULE 9 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11407. NULL information_schema REFERENTIAL_CONSTRAINTS TABLE_NAME 10 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11408. NULL information_schema REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME 11 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11409. NULL information_schema ROUTINES SPECIFIC_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11410. NULL information_schema ROUTINES ROUTINE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11411. NULL information_schema ROUTINES ROUTINE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11412. NULL information_schema ROUTINES ROUTINE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11413. NULL information_schema ROUTINES ROUTINE_TYPE 5 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  11414. NULL information_schema ROUTINES DTD_IDENTIFIER 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11415. NULL information_schema ROUTINES ROUTINE_BODY 7 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11416. NULL information_schema ROUTINES ROUTINE_DEFINITION 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11417. NULL information_schema ROUTINES EXTERNAL_NAME 9 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11418. NULL information_schema ROUTINES EXTERNAL_LANGUAGE 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11419. NULL information_schema ROUTINES PARAMETER_STYLE 11 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11420. NULL information_schema ROUTINES IS_DETERMINISTIC 12 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11421. NULL information_schema ROUTINES SQL_DATA_ACCESS 13 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11422. NULL information_schema ROUTINES SQL_PATH 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11423. NULL information_schema ROUTINES SECURITY_TYPE 15 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  11424. NULL information_schema ROUTINES CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11425. NULL information_schema ROUTINES LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  11426. NULL information_schema ROUTINES SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11427. NULL information_schema ROUTINES ROUTINE_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11428. NULL information_schema ROUTINES DEFINER 20 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  11429. NULL information_schema SCHEMATA CATALOG_NAME 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11430. NULL information_schema SCHEMATA SCHEMA_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11431. NULL information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11432. NULL information_schema SCHEMATA DEFAULT_COLLATION_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11433. NULL information_schema SCHEMATA SQL_PATH 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11434. NULL information_schema SCHEMA_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11435. NULL information_schema SCHEMA_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11436. NULL information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11437. NULL information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11438. NULL information_schema SCHEMA_PRIVILEGES IS_GRANTABLE 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11439. NULL information_schema SESSION_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11440. NULL information_schema SESSION_STATUS VARIABLE_VALUE 2 0.0000000 NO decimal NULL NULL 22 7 NULL NULL decimal(22,7) select
  11441. NULL information_schema SESSION_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11442. NULL information_schema SESSION_VARIABLES VARIABLE_VALUE 2 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11443. NULL information_schema STATISTICS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11444. NULL information_schema STATISTICS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11445. NULL information_schema STATISTICS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11446. NULL information_schema STATISTICS NON_UNIQUE 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(1) select
  11447. NULL information_schema STATISTICS INDEX_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11448. NULL information_schema STATISTICS INDEX_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11449. NULL information_schema STATISTICS SEQ_IN_INDEX 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(2) select
  11450. NULL information_schema STATISTICS COLUMN_NAME 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11451. NULL information_schema STATISTICS COLLATION 9 NULL YES varchar 1 3 NULL NULL utf8 utf8_general_ci varchar(1) select
  11452. NULL information_schema STATISTICS CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11453. NULL information_schema STATISTICS SUB_PART 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(3) select
  11454. NULL information_schema STATISTICS PACKED 12 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11455. NULL information_schema STATISTICS NULLABLE 13 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11456. NULL information_schema STATISTICS INDEX_TYPE 14 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11457. NULL information_schema STATISTICS COMMENT 15 NULL YES varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  11458. NULL information_schema TABLES TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11459. NULL information_schema TABLES TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11460. NULL information_schema TABLES TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11461. NULL information_schema TABLES TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11462. NULL information_schema TABLES ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11463. NULL information_schema TABLES VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11464. NULL information_schema TABLES ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  11465. NULL information_schema TABLES TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11466. NULL information_schema TABLES AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11467. NULL information_schema TABLES DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11468. NULL information_schema TABLES MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11469. NULL information_schema TABLES INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11470. NULL information_schema TABLES DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11471. NULL information_schema TABLES AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11472. NULL information_schema TABLES CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11473. NULL information_schema TABLES UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11474. NULL information_schema TABLES CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11475. NULL information_schema TABLES TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11476. NULL information_schema TABLES CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  11477. NULL information_schema TABLES CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  11478. NULL information_schema TABLES TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  11479. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11480. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11481. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11482. NULL information_schema TABLE_CONSTRAINTS TABLE_SCHEMA 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11483. NULL information_schema TABLE_CONSTRAINTS TABLE_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11484. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11485. NULL information_schema TABLE_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11486. NULL information_schema TABLE_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11487. NULL information_schema TABLE_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11488. NULL information_schema TABLE_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11489. NULL information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11490. NULL information_schema TABLE_PRIVILEGES IS_GRANTABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11491. NULL information_schema TRIGGERS TRIGGER_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11492. NULL information_schema TRIGGERS TRIGGER_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11493. NULL information_schema TRIGGERS TRIGGER_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11494. NULL information_schema TRIGGERS EVENT_MANIPULATION 4 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  11495. NULL information_schema TRIGGERS EVENT_OBJECT_CATALOG 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11496. NULL information_schema TRIGGERS EVENT_OBJECT_SCHEMA 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11497. NULL information_schema TRIGGERS EVENT_OBJECT_TABLE 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11498. NULL information_schema TRIGGERS ACTION_ORDER 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  11499. NULL information_schema TRIGGERS ACTION_CONDITION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11500. NULL information_schema TRIGGERS ACTION_STATEMENT 10 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11501. NULL information_schema TRIGGERS ACTION_ORIENTATION 11 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  11502. NULL information_schema TRIGGERS ACTION_TIMING 12 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  11503. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11504. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11505. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW 15 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11506. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11507. NULL information_schema TRIGGERS CREATED 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  11508. NULL information_schema TRIGGERS SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11509. NULL information_schema TRIGGERS DEFINER 19 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11510. NULL information_schema USER_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  11511. NULL information_schema USER_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11512. NULL information_schema USER_PRIVILEGES PRIVILEGE_TYPE 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11513. NULL information_schema USER_PRIVILEGES IS_GRANTABLE 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11514. NULL information_schema VIEWS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  11515. NULL information_schema VIEWS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11516. NULL information_schema VIEWS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  11517. NULL information_schema VIEWS VIEW_DEFINITION 4 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  11518. NULL information_schema VIEWS CHECK_OPTION 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  11519. NULL information_schema VIEWS IS_UPDATABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  11520. NULL information_schema VIEWS DEFINER 7 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  11521. NULL information_schema VIEWS SECURITY_TYPE 8 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  11522. NULL test t1 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11523. NULL test t1 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11524. NULL test t1 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11525. NULL test t1 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11526. NULL test t1 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11527. NULL test t1 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11528. NULL test t10 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11529. NULL test t10 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11530. NULL test t10 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11531. NULL test t10 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11532. NULL test t10 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11533. NULL test t10 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11534. NULL test t11 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11535. NULL test t11 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11536. NULL test t11 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11537. NULL test t11 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11538. NULL test t11 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11539. NULL test t11 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11540. NULL test t2 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11541. NULL test t2 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11542. NULL test t2 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11543. NULL test t2 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11544. NULL test t2 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11545. NULL test t2 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11546. NULL test t3 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11547. NULL test t3 f2 2 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11548. NULL test t3 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11549. NULL test t4 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11550. NULL test t4 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11551. NULL test t4 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11552. NULL test t4 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11553. NULL test t4 f5 5 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11554. NULL test t4 f6 6 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11555. NULL test t7 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11556. NULL test t7 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11557. NULL test t7 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11558. NULL test t7 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11559. NULL test t8 f1 1 NULL YES char 20 20 NULL NULL latin1 latin1_swedish_ci char(20) select,insert,update,references
  11560. NULL test t8 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11561. NULL test t8 f3 3 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11562. NULL test t8 f4 4 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11563. NULL test t9 f1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11564. NULL test t9 f2 2 NULL YES char 25 25 NULL NULL latin1 latin1_swedish_ci char(25) select,insert,update,references
  11565. NULL test t9 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11566. NULL test tb1 f1 1 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  11567. NULL test tb1 f2 2 NULL YES char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  11568. NULL test tb1 f3 3 NULL YES char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  11569. NULL test tb1 f4 4 NULL YES tinytext 127 255 NULL NULL ucs2 ucs2_general_ci tinytext select,insert,update,references
  11570. NULL test tb1 f5 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  11571. NULL test tb1 f6 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  11572. NULL test tb1 f7 7 NULL YES longtext 4294967295 4294967295 NULL NULL latin1 latin1_swedish_ci longtext select,insert,update,references
  11573. NULL test tb1 f8 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  11574. NULL test tb1 f9 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  11575. NULL test tb1 f10 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  11576. NULL test tb1 f11 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  11577. NULL test tb1 f12 12 NULL YES binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  11578. NULL test tb1 f13 13 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  11579. NULL test tb1 f14 14 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  11580. NULL test tb1 f15 15 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11581. NULL test tb1 f16 16 NULL YES tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11582. NULL test tb1 f17 17 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  11583. NULL test tb1 f18 18 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  11584. NULL test tb1 f19 19 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11585. NULL test tb1 f20 20 NULL YES smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11586. NULL test tb1 f21 21 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  11587. NULL test tb1 f22 22 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  11588. NULL test tb1 f23 23 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11589. NULL test tb1 f24 24 NULL YES mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11590. NULL test tb1 f25 25 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11591. NULL test tb1 f26 26 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  11592. NULL test tb1 f27 27 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11593. NULL test tb1 f28 28 NULL YES int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11594. NULL test tb1 f29 29 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  11595. NULL test tb1 f30 30 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  11596. NULL test tb1 f31 31 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11597. NULL test tb1 f32 32 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11598. NULL test tb1 f33 33 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11599. NULL test tb1 f34 34 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11600. NULL test tb1 f35 35 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11601. NULL test tb1 f36 36 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11602. NULL test tb1 f37 37 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11603. NULL test tb1 f38 38 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11604. NULL test tb1 f39 39 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11605. NULL test tb1 f40 40 10 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11606. NULL test tb1 f41 41 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11607. NULL test tb1 f42 42 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11608. NULL test tb1 f43 43 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11609. NULL test tb1 f44 44 0000000000000000000000000000000000000000000000000000000000000010 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11610. NULL test tb1 f45 45 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11611. NULL test tb1 f46 46 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11612. NULL test tb1 f47 47 10 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11613. NULL test tb1 f48 48 9.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11614. NULL test tb1 f49 49 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11615. NULL test tb1 f50 50 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11616. NULL test tb1 f51 51 0000000010 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11617. NULL test tb1 f52 52 000000000000000000000000000000009.900000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11618. NULL test tb1 f53 53 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11619. NULL test tb1 f54 54 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11620. NULL test tb1 f55 55 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11621. NULL test tb1 f56 56 0000000099 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11622. NULL test tb1 f57 57 99 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11623. NULL test tb1 f58 58 99 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11624. NULL test tb2 f59 1 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11625. NULL test tb2 f60 2 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11626. NULL test tb2 f61 3 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11627. NULL test tb2 f62 4 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11628. NULL test tb2 f63 5 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11629. NULL test tb2 f64 6 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11630. NULL test tb2 f65 7 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11631. NULL test tb2 f66 8 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11632. NULL test tb2 f67 9 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11633. NULL test tb2 f68 10 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11634. NULL test tb2 f69 11 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11635. NULL test tb2 f70 12 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11636. NULL test tb2 f71 13 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11637. NULL test tb2 f72 14 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11638. NULL test tb2 f73 15 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11639. NULL test tb2 f74 16 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11640. NULL test tb2 f75 17 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11641. NULL test tb2 f76 18 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11642. NULL test tb2 f77 19 7.7 YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11643. NULL test tb2 f78 20 7.7 YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11644. NULL test tb2 f79 21 00000000000000000007.7 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11645. NULL test tb2 f80 22 00000000000000000008.8 YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11646. NULL test tb2 f81 23 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11647. NULL test tb2 f82 24 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11648. NULL test tb2 f83 25 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11649. NULL test tb2 f84 26 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11650. NULL test tb2 f85 27 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11651. NULL test tb2 f86 28 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11652. NULL test tb2 f87 29 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11653. NULL test tb2 f88 30 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11654. NULL test tb2 f89 31 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11655. NULL test tb2 f90 32 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11656. NULL test tb2 f91 33 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11657. NULL test tb2 f92 34 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11658. NULL test tb2 f93 35 8.8 NO float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11659. NULL test tb2 f94 36 8.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11660. NULL test tb2 f95 37 8.8 NO float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11661. NULL test tb2 f96 38 8.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11662. NULL test tb2 f97 39 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11663. NULL test tb2 f98 40 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11664. NULL test tb2 f99 41 0000000008.8 NO float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11665. NULL test tb2 f100 42 00000000000000000008.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11666. NULL test tb2 f101 43 2000-01-01 NO date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11667. NULL test tb2 f102 44 00:00:20 NO time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  11668. NULL test tb2 f103 45 0002-02-02 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  11669. NULL test tb2 f104 46 2000-12-31 23:59:59 NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  11670. NULL test tb2 f105 47 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11671. NULL test tb2 f106 48 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11672. NULL test tb2 f107 49 2000 NO year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11673. NULL test tb2 f108 50 1enum NO enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  11674. NULL test tb2 f109 51 1set NO set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  11675. NULL test tb2 f110 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11676. NULL test tb2 f111 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  11677. NULL test tb2 f112 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11678. NULL test tb2 f113 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11679. NULL test tb2 f114 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11680. NULL test tb2 f115 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  11681. NULL test tb2 f116 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11682. NULL test tb2 f117 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11683. NULL test tb3 f118 1 a NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  11684. NULL test tb3 f119 2  NO char 1 1 NULL NULL latin1 latin1_bin char(1) select,insert,update,references
  11685. NULL test tb3 f120 3  NO char 1 1 NULL NULL latin1 latin1_swedish_ci char(1) select,insert,update,references
  11686. NULL test tb3 f121 4 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
  11687. NULL test tb3 f122 5 NULL YES text 65535 65535 NULL NULL latin1 latin1_swedish_ci text select,insert,update,references
  11688. NULL test tb3 f123 6 NULL YES mediumtext 16777215 16777215 NULL NULL latin1 latin1_swedish_ci mediumtext select,insert,update,references
  11689. NULL test tb3 f124 7 NULL YES longtext 2147483647 4294967295 NULL NULL ucs2 ucs2_general_ci longtext select,insert,update,references
  11690. NULL test tb3 f125 8 NULL YES tinyblob 255 255 NULL NULL NULL NULL tinyblob select,insert,update,references
  11691. NULL test tb3 f126 9 NULL YES blob 65535 65535 NULL NULL NULL NULL blob select,insert,update,references
  11692. NULL test tb3 f127 10 NULL YES mediumblob 16777215 16777215 NULL NULL NULL NULL mediumblob select,insert,update,references
  11693. NULL test tb3 f128 11 NULL YES longblob 4294967295 4294967295 NULL NULL NULL NULL longblob select,insert,update,references
  11694. NULL test tb3 f129 12  NO binary 1 1 NULL NULL NULL NULL binary(1) select,insert,update,references
  11695. NULL test tb3 f130 13 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(4) select,insert,update,references
  11696. NULL test tb3 f131 14 99 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned select,insert,update,references
  11697. NULL test tb3 f132 15 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11698. NULL test tb3 f133 16 099 NO tinyint NULL NULL 3 0 NULL NULL tinyint(3) unsigned zerofill select,insert,update,references
  11699. NULL test tb3 f134 17 999 NO smallint NULL NULL 5 0 NULL NULL smallint(6) select,insert,update,references
  11700. NULL test tb3 f135 18 999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned select,insert,update,references
  11701. NULL test tb3 f136 19 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11702. NULL test tb3 f137 20 00999 NO smallint NULL NULL 5 0 NULL NULL smallint(5) unsigned zerofill select,insert,update,references
  11703. NULL test tb3 f138 21 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(9) select,insert,update,references
  11704. NULL test tb3 f139 22 9999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned select,insert,update,references
  11705. NULL test tb3 f140 23 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11706. NULL test tb3 f141 24 00009999 NO mediumint NULL NULL 7 0 NULL NULL mediumint(8) unsigned zerofill select,insert,update,references
  11707. NULL test tb3 f142 25 99999 NO int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
  11708. NULL test tb3 f143 26 99999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned select,insert,update,references
  11709. NULL test tb3 f144 27 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11710. NULL test tb3 f145 28 0000099999 NO int NULL NULL 10 0 NULL NULL int(10) unsigned zerofill select,insert,update,references
  11711. NULL test tb3 f146 29 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
  11712. NULL test tb3 f147 30 999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned select,insert,update,references
  11713. NULL test tb3 f148 31 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11714. NULL test tb3 f149 32 00000000000000999999 NO bigint NULL NULL 19 0 NULL NULL bigint(20) unsigned zerofill select,insert,update,references
  11715. NULL test tb3 f150 33 1000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11716. NULL test tb3 f151 34 999 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11717. NULL test tb3 f152 35 0000001000 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11718. NULL test tb3 f153 36 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11719. NULL test tb3 f154 37 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11720. NULL test tb3 f155 38 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11721. NULL test tb3 f156 39 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11722. NULL test tb3 f157 40 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11723. NULL test tb3 f158 41 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11724. NULL test tb3 f159 42 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11725. NULL test tb3 f160 43 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11726. NULL test tb3 f161 44 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11727. NULL test tb3 f162 45 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11728. NULL test tb3 f163 46 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11729. NULL test tb3 f164 47 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11730. NULL test tb3 f165 48 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11731. NULL test tb3 f166 49 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11732. NULL test tb3 f167 50 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11733. NULL test tb3 f168 51 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11734. NULL test tb3 f169 52 NULL YES decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11735. NULL test tb3 f170 53 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11736. NULL test tb3 f171 54 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11737. NULL test tb3 f172 55 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11738. NULL test tb3 f173 56 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11739. NULL test tb3 f174 57 NULL YES decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11740. NULL test tb3 f175 58 NULL YES decimal NULL NULL 64 0 NULL NULL decimal(64,0) select,insert,update,references
  11741. NULL test tb4 f176 1 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11742. NULL test tb4 f177 2 9 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned select,insert,update,references
  11743. NULL test tb4 f178 3 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11744. NULL test tb4 f179 4 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11745. NULL test tb4 f180 5 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11746. NULL test tb4 f181 6 0000000000000000000000000000000000000000000000000000000000000009 NO decimal NULL NULL 64 0 NULL NULL decimal(64,0) unsigned zerofill select,insert,update,references
  11747. NULL test tb4 f182 7 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) select,insert,update,references
  11748. NULL test tb4 f183 8 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) select,insert,update,references
  11749. NULL test tb4 f184 9 9 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned select,insert,update,references
  11750. NULL test tb4 f185 10 9.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned select,insert,update,references
  11751. NULL test tb4 f186 11 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11752. NULL test tb4 f187 12 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11753. NULL test tb4 f188 13 0000000009 NO decimal NULL NULL 10 0 NULL NULL decimal(10,0) unsigned zerofill select,insert,update,references
  11754. NULL test tb4 f189 14 000000000000000000000000000000009.000000000000000000000000000000 NO decimal NULL NULL 63 30 NULL NULL decimal(63,30) unsigned zerofill select,insert,update,references
  11755. NULL test tb4 f190 15 88.8 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11756. NULL test tb4 f191 16 88.8 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11757. NULL test tb4 f192 17 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11758. NULL test tb4 f193 18 00000000000000000088.8 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11759. NULL test tb4 f194 19 55.5 NO double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11760. NULL test tb4 f195 20 55.5 NO double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11761. NULL test tb4 f196 21 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11762. NULL test tb4 f197 22 00000000000000000055.5 NO double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11763. NULL test tb4 f198 23 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11764. NULL test tb4 f199 24 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11765. NULL test tb4 f200 25 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11766. NULL test tb4 f201 26 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11767. NULL test tb4 f202 27 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11768. NULL test tb4 f203 28 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11769. NULL test tb4 f204 29 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11770. NULL test tb4 f205 30 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11771. NULL test tb4 f206 31 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11772. NULL test tb4 f207 32 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11773. NULL test tb4 f208 33 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11774. NULL test tb4 f209 34 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11775. NULL test tb4 f210 35 NULL YES float NULL NULL 12 NULL NULL NULL float select,insert,update,references
  11776. NULL test tb4 f211 36 NULL YES double NULL NULL 22 NULL NULL NULL double select,insert,update,references
  11777. NULL test tb4 f212 37 NULL YES float unsigned NULL NULL 12 NULL NULL NULL float unsigned select,insert,update,references
  11778. NULL test tb4 f213 38 NULL YES double unsigned NULL NULL 22 NULL NULL NULL double unsigned select,insert,update,references
  11779. NULL test tb4 f214 39 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11780. NULL test tb4 f215 40 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11781. NULL test tb4 f216 41 NULL YES float unsigned zerofill NULL NULL 12 NULL NULL NULL float unsigned zerofill select,insert,update,references
  11782. NULL test tb4 f217 42 NULL YES double unsigned zerofill NULL NULL 22 NULL NULL NULL double unsigned zerofill select,insert,update,references
  11783. NULL test tb4 f218 43 NULL YES date NULL NULL NULL NULL NULL NULL date select,insert,update,references
  11784. NULL test tb4 f219 44 NULL YES time NULL NULL NULL NULL NULL NULL time select,insert,update,references
  11785. NULL test tb4 f220 45 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select,insert,update,references
  11786. NULL test tb4 f221 46 CURRENT_TIMESTAMP NO timestamp NULL NULL NULL NULL NULL NULL timestamp select,insert,update,references
  11787. NULL test tb4 f222 47 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11788. NULL test tb4 f223 48 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11789. NULL test tb4 f224 49 NULL YES year NULL NULL NULL NULL NULL NULL year(4) select,insert,update,references
  11790. NULL test tb4 f225 50 NULL YES enum 5 5 NULL NULL latin1 latin1_swedish_ci enum('1enum','2enum') select,insert,update,references
  11791. NULL test tb4 f226 51 NULL YES set 9 9 NULL NULL latin1 latin1_swedish_ci set('1set','2set') select,insert,update,references
  11792. NULL test tb4 f227 52 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11793. NULL test tb4 f228 53 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  11794. NULL test tb4 f229 54 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11795. NULL test tb4 f230 55 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11796. NULL test tb4 f231 56 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11797. NULL test tb4 f232 57 NULL YES varbinary 27 27 NULL NULL NULL NULL varbinary(27) select,insert,update,references
  11798. NULL test tb4 f233 58 NULL YES varbinary 64 64 NULL NULL NULL NULL varbinary(64) select,insert,update,references
  11799. NULL test tb4 f234 59 NULL YES varbinary 192 192 NULL NULL NULL NULL varbinary(192) select,insert,update,references
  11800. NULL test tb4 f235 60 NULL YES char 255 510 NULL NULL ucs2 ucs2_general_ci char(255) select,insert,update,references
  11801. NULL test tb4 f236 61 NULL YES char 60 60 NULL NULL latin1 latin1_swedish_ci char(60) select,insert,update,references
  11802. NULL test tb4 f237 62 NULL YES char 255 255 NULL NULL latin1 latin1_bin char(255) select,insert,update,references
  11803. NULL test tb4 f238 63 NULL YES varchar 0 0 NULL NULL latin1 latin1_bin varchar(0) select,insert,update,references
  11804. NULL test tb4 f239 64 NULL YES varbinary 1000 1000 NULL NULL NULL NULL varbinary(1000) select,insert,update,references
  11805. NULL test tb4 f240 65 NULL YES varchar 120 240 NULL NULL ucs2 ucs2_general_ci varchar(120) select,insert,update,references
  11806. NULL test tb4 f241 66 NULL YES char 100 200 NULL NULL ucs2 ucs2_general_ci char(100) select,insert,update,references
  11807. NULL test tb4 f242 67 NULL YES bit NULL NULL 30 NULL NULL NULL bit(30) select,insert,update,references
  11808. root@localhost db_datadict
  11809. Show the quotient of COL and CML for all COLUMNS
  11810. ------------------------------------------------
  11811. SELECT DISTINCT
  11812. CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH AS COL_CML,
  11813. DATA_TYPE,
  11814. CHARACTER_SET_NAME,
  11815. COLLATION_NAME
  11816. FROM information_schema.columns
  11817. WHERE CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH = 1
  11818. ORDER BY CHARACTER_SET_NAME, COLLATION_NAME, COL_CML;
  11819. COL_CML DATA_TYPE CHARACTER_SET_NAME COLLATION_NAME
  11820. 1.0000 binary NULL NULL
  11821. 1.0000 blob NULL NULL
  11822. 1.0000 longblob NULL NULL
  11823. 1.0000 mediumblob NULL NULL
  11824. 1.0000 tinyblob NULL NULL
  11825. 1.0000 varbinary NULL NULL
  11826. 1.0000 char latin1 latin1_bin
  11827. 1.0000 char latin1 latin1_swedish_ci
  11828. 1.0000 enum latin1 latin1_swedish_ci
  11829. 1.0000 longtext latin1 latin1_swedish_ci
  11830. 1.0000 mediumtext latin1 latin1_swedish_ci
  11831. 1.0000 set latin1 latin1_swedish_ci
  11832. 1.0000 text latin1 latin1_swedish_ci
  11833. 1.0000 tinytext latin1 latin1_swedish_ci
  11834. 1.0000 varchar latin1 latin1_swedish_ci
  11835. 1.0000 longtext utf8 utf8_general_ci
  11836. 1.0000 mediumtext utf8 utf8_general_ci
  11837. 1.0000 text utf8 utf8_general_ci
  11838. SELECT DISTINCT
  11839. CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH AS COL_CML,
  11840. DATA_TYPE,
  11841. CHARACTER_SET_NAME,
  11842. COLLATION_NAME
  11843. FROM information_schema.columns
  11844. WHERE CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH <> 1
  11845. ORDER BY CHARACTER_SET_NAME, COLLATION_NAME, COL_CML;
  11846. COL_CML DATA_TYPE CHARACTER_SET_NAME COLLATION_NAME
  11847. 2.0000 char ucs2 ucs2_general_ci
  11848. 2.0000 longtext ucs2 ucs2_general_ci
  11849. 2.0000 varchar ucs2 ucs2_general_ci
  11850. 2.0079 tinytext ucs2 ucs2_general_ci
  11851. 3.0000 char utf8 utf8_bin
  11852. 3.0000 enum utf8 utf8_bin
  11853. 3.0000 char utf8 utf8_general_ci
  11854. 3.0000 enum utf8 utf8_general_ci
  11855. 3.0000 set utf8 utf8_general_ci
  11856. 3.0000 varchar utf8 utf8_general_ci
  11857. SELECT DISTINCT
  11858. CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH AS COL_CML,
  11859. DATA_TYPE,
  11860. CHARACTER_SET_NAME,
  11861. COLLATION_NAME
  11862. FROM information_schema.columns
  11863. WHERE CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH IS NULL
  11864. ORDER BY CHARACTER_SET_NAME, COLLATION_NAME, COL_CML;
  11865. COL_CML DATA_TYPE CHARACTER_SET_NAME COLLATION_NAME
  11866. NULL bigint NULL NULL
  11867. NULL bit NULL NULL
  11868. NULL date NULL NULL
  11869. NULL datetime NULL NULL
  11870. NULL decimal NULL NULL
  11871. NULL double NULL NULL
  11872. NULL double unsigned NULL NULL
  11873. NULL double unsigned zerofill NULL NULL
  11874. NULL float NULL NULL
  11875. NULL float unsigned NULL NULL
  11876. NULL float unsigned zerofill NULL NULL
  11877. NULL int NULL NULL
  11878. NULL mediumint NULL NULL
  11879. NULL smallint NULL NULL
  11880. NULL time NULL NULL
  11881. NULL timestamp NULL NULL
  11882. NULL tinyint NULL NULL
  11883. NULL year NULL NULL
  11884. NULL varchar latin1 latin1_bin
  11885. --> CHAR(0) is allowed (see manual), and here both CHARACHTER_* values
  11886. --> are 0, which is intended behavior, and the result of 0 / 0 IS NULL
  11887. SELECT CHARACTER_OCTET_LENGTH / CHARACTER_MAXIMUM_LENGTH AS COL_CML,
  11888. TABLE_SCHEMA,
  11889. TABLE_NAME,
  11890. COLUMN_NAME,
  11891. DATA_TYPE,
  11892. CHARACTER_MAXIMUM_LENGTH,
  11893. CHARACTER_OCTET_LENGTH,
  11894. CHARACTER_SET_NAME,
  11895. COLLATION_NAME,
  11896. COLUMN_TYPE
  11897. FROM information_schema.columns
  11898. ORDER BY TABLE_SCHEMA, TABLE_NAME, ORDINAL_POSITION;
  11899. COL_CML TABLE_SCHEMA TABLE_NAME COLUMN_NAME DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE
  11900. 1.0000 db_datadict t_6_406001 f1 char 10 10 latin1 latin1_swedish_ci char(10)
  11901. 1.0000 db_datadict t_6_406001 f2 text 65535 65535 latin1 latin1_swedish_ci text
  11902. NULL db_datadict t_6_406001 f3 date NULL NULL NULL NULL date
  11903. NULL db_datadict t_6_406001 f4 int NULL NULL NULL NULL int(11)
  11904. 1.0000 db_datadict t_6_406002 f1 char 10 10 latin1 latin1_swedish_ci char(10)
  11905. 1.0000 db_datadict t_6_406002 f2 text 65535 65535 latin1 latin1_swedish_ci text
  11906. NULL db_datadict t_6_406002 f3 date NULL NULL NULL NULL date
  11907. NULL db_datadict t_6_406002 f4 int NULL NULL NULL NULL int(11)
  11908. 3.0000 information_schema CHARACTER_SETS CHARACTER_SET_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11909. 3.0000 information_schema CHARACTER_SETS DEFAULT_COLLATE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11910. 3.0000 information_schema CHARACTER_SETS DESCRIPTION varchar 60 180 utf8 utf8_general_ci varchar(60)
  11911. NULL information_schema CHARACTER_SETS MAXLEN bigint NULL NULL NULL NULL bigint(3)
  11912. 3.0000 information_schema COLLATIONS COLLATION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11913. 3.0000 information_schema COLLATIONS CHARACTER_SET_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11914. NULL information_schema COLLATIONS ID bigint NULL NULL NULL NULL bigint(11)
  11915. 3.0000 information_schema COLLATIONS IS_DEFAULT varchar 3 9 utf8 utf8_general_ci varchar(3)
  11916. 3.0000 information_schema COLLATIONS IS_COMPILED varchar 3 9 utf8 utf8_general_ci varchar(3)
  11917. NULL information_schema COLLATIONS SORTLEN bigint NULL NULL NULL NULL bigint(3)
  11918. 3.0000 information_schema COLLATION_CHARACTER_SET_APPLICABILITY COLLATION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11919. 3.0000 information_schema COLLATION_CHARACTER_SET_APPLICABILITY CHARACTER_SET_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11920. 3.0000 information_schema COLUMNS TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11921. 3.0000 information_schema COLUMNS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11922. 3.0000 information_schema COLUMNS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11923. 3.0000 information_schema COLUMNS COLUMN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11924. NULL information_schema COLUMNS ORDINAL_POSITION bigint NULL NULL NULL NULL bigint(21)
  11925. 1.0000 information_schema COLUMNS COLUMN_DEFAULT longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  11926. 3.0000 information_schema COLUMNS IS_NULLABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  11927. 3.0000 information_schema COLUMNS DATA_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11928. NULL information_schema COLUMNS CHARACTER_MAXIMUM_LENGTH bigint NULL NULL NULL NULL bigint(21)
  11929. NULL information_schema COLUMNS CHARACTER_OCTET_LENGTH bigint NULL NULL NULL NULL bigint(21)
  11930. NULL information_schema COLUMNS NUMERIC_PRECISION bigint NULL NULL NULL NULL bigint(21)
  11931. NULL information_schema COLUMNS NUMERIC_SCALE bigint NULL NULL NULL NULL bigint(21)
  11932. 3.0000 information_schema COLUMNS CHARACTER_SET_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11933. 3.0000 information_schema COLUMNS COLLATION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11934. 1.0000 information_schema COLUMNS COLUMN_TYPE longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  11935. 3.0000 information_schema COLUMNS COLUMN_KEY varchar 3 9 utf8 utf8_general_ci varchar(3)
  11936. 3.0000 information_schema COLUMNS EXTRA varchar 20 60 utf8 utf8_general_ci varchar(20)
  11937. 3.0000 information_schema COLUMNS PRIVILEGES varchar 80 240 utf8 utf8_general_ci varchar(80)
  11938. 3.0000 information_schema COLUMNS COLUMN_COMMENT varchar 255 765 utf8 utf8_general_ci varchar(255)
  11939. 3.0000 information_schema COLUMN_PRIVILEGES GRANTEE varchar 81 243 utf8 utf8_general_ci varchar(81)
  11940. 3.0000 information_schema COLUMN_PRIVILEGES TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  11941. 3.0000 information_schema COLUMN_PRIVILEGES TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11942. 3.0000 information_schema COLUMN_PRIVILEGES TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11943. 3.0000 information_schema COLUMN_PRIVILEGES COLUMN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11944. 3.0000 information_schema COLUMN_PRIVILEGES PRIVILEGE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11945. 3.0000 information_schema COLUMN_PRIVILEGES IS_GRANTABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  11946. 3.0000 information_schema ENGINES ENGINE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11947. 3.0000 information_schema ENGINES SUPPORT varchar 8 24 utf8 utf8_general_ci varchar(8)
  11948. 3.0000 information_schema ENGINES COMMENT varchar 80 240 utf8 utf8_general_ci varchar(80)
  11949. 3.0000 information_schema ENGINES TRANSACTIONS varchar 3 9 utf8 utf8_general_ci varchar(3)
  11950. 3.0000 information_schema ENGINES XA varchar 3 9 utf8 utf8_general_ci varchar(3)
  11951. 3.0000 information_schema ENGINES SAVEPOINTS varchar 3 9 utf8 utf8_general_ci varchar(3)
  11952. 3.0000 information_schema EVENTS EVENT_CATALOG varchar 64 192 utf8 utf8_general_ci varchar(64)
  11953. 3.0000 information_schema EVENTS EVENT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11954. 3.0000 information_schema EVENTS EVENT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11955. 3.0000 information_schema EVENTS DEFINER varchar 77 231 utf8 utf8_general_ci varchar(77)
  11956. 3.0000 information_schema EVENTS EVENT_BODY varchar 8 24 utf8 utf8_general_ci varchar(8)
  11957. 1.0000 information_schema EVENTS EVENT_DEFINITION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  11958. 3.0000 information_schema EVENTS EVENT_TYPE varchar 9 27 utf8 utf8_general_ci varchar(9)
  11959. NULL information_schema EVENTS EXECUTE_AT datetime NULL NULL NULL NULL datetime
  11960. 3.0000 information_schema EVENTS INTERVAL_VALUE varchar 256 768 utf8 utf8_general_ci varchar(256)
  11961. 3.0000 information_schema EVENTS INTERVAL_FIELD varchar 18 54 utf8 utf8_general_ci varchar(18)
  11962. 1.0000 information_schema EVENTS SQL_MODE longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  11963. NULL information_schema EVENTS STARTS datetime NULL NULL NULL NULL datetime
  11964. NULL information_schema EVENTS ENDS datetime NULL NULL NULL NULL datetime
  11965. 3.0000 information_schema EVENTS STATUS varchar 8 24 utf8 utf8_general_ci varchar(8)
  11966. 3.0000 information_schema EVENTS ON_COMPLETION varchar 12 36 utf8 utf8_general_ci varchar(12)
  11967. NULL information_schema EVENTS CREATED datetime NULL NULL NULL NULL datetime
  11968. NULL information_schema EVENTS LAST_ALTERED datetime NULL NULL NULL NULL datetime
  11969. NULL information_schema EVENTS LAST_EXECUTED datetime NULL NULL NULL NULL datetime
  11970. 3.0000 information_schema EVENTS EVENT_COMMENT varchar 64 192 utf8 utf8_general_ci varchar(64)
  11971. NULL information_schema FILES FILE_ID bigint NULL NULL NULL NULL bigint(4)
  11972. 3.0000 information_schema FILES FILE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11973. 3.0000 information_schema FILES FILE_TYPE varchar 20 60 utf8 utf8_general_ci varchar(20)
  11974. 3.0000 information_schema FILES TABLESPACE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11975. 3.0000 information_schema FILES TABLE_CATALOG varchar 64 192 utf8 utf8_general_ci varchar(64)
  11976. 3.0000 information_schema FILES TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  11977. 3.0000 information_schema FILES TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11978. 3.0000 information_schema FILES LOGFILE_GROUP_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  11979. NULL information_schema FILES LOGFILE_GROUP_NUMBER bigint NULL NULL NULL NULL bigint(4)
  11980. 3.0000 information_schema FILES ENGINE varchar 64 192 utf8 utf8_general_ci varchar(64)
  11981. 3.0000 information_schema FILES FULLTEXT_KEYS varchar 64 192 utf8 utf8_general_ci varchar(64)
  11982. NULL information_schema FILES DELETED_ROWS bigint NULL NULL NULL NULL bigint(4)
  11983. NULL information_schema FILES UPDATE_COUNT bigint NULL NULL NULL NULL bigint(4)
  11984. NULL information_schema FILES FREE_EXTENTS bigint NULL NULL NULL NULL bigint(4)
  11985. NULL information_schema FILES TOTAL_EXTENTS bigint NULL NULL NULL NULL bigint(4)
  11986. NULL information_schema FILES EXTENT_SIZE bigint NULL NULL NULL NULL bigint(4)
  11987. NULL information_schema FILES INITIAL_SIZE bigint NULL NULL NULL NULL bigint(21)
  11988. NULL information_schema FILES MAXIMUM_SIZE bigint NULL NULL NULL NULL bigint(21)
  11989. NULL information_schema FILES AUTOEXTEND_SIZE bigint NULL NULL NULL NULL bigint(21)
  11990. NULL information_schema FILES CREATION_TIME datetime NULL NULL NULL NULL datetime
  11991. NULL information_schema FILES LAST_UPDATE_TIME datetime NULL NULL NULL NULL datetime
  11992. NULL information_schema FILES LAST_ACCESS_TIME datetime NULL NULL NULL NULL datetime
  11993. NULL information_schema FILES RECOVER_TIME bigint NULL NULL NULL NULL bigint(4)
  11994. NULL information_schema FILES TRANSACTION_COUNTER bigint NULL NULL NULL NULL bigint(4)
  11995. NULL information_schema FILES VERSION bigint NULL NULL NULL NULL bigint(21)
  11996. 3.0000 information_schema FILES ROW_FORMAT varchar 10 30 utf8 utf8_general_ci varchar(10)
  11997. NULL information_schema FILES TABLE_ROWS bigint NULL NULL NULL NULL bigint(21)
  11998. NULL information_schema FILES AVG_ROW_LENGTH bigint NULL NULL NULL NULL bigint(21)
  11999. NULL information_schema FILES DATA_LENGTH bigint NULL NULL NULL NULL bigint(21)
  12000. NULL information_schema FILES MAX_DATA_LENGTH bigint NULL NULL NULL NULL bigint(21)
  12001. NULL information_schema FILES INDEX_LENGTH bigint NULL NULL NULL NULL bigint(21)
  12002. NULL information_schema FILES DATA_FREE bigint NULL NULL NULL NULL bigint(21)
  12003. NULL information_schema FILES CREATE_TIME datetime NULL NULL NULL NULL datetime
  12004. NULL information_schema FILES UPDATE_TIME datetime NULL NULL NULL NULL datetime
  12005. NULL information_schema FILES CHECK_TIME datetime NULL NULL NULL NULL datetime
  12006. NULL information_schema FILES CHECKSUM bigint NULL NULL NULL NULL bigint(21)
  12007. 3.0000 information_schema FILES STATUS varchar 20 60 utf8 utf8_general_ci varchar(20)
  12008. 3.0000 information_schema FILES EXTRA varchar 255 765 utf8 utf8_general_ci varchar(255)
  12009. 3.0000 information_schema GLOBAL_STATUS VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12010. NULL information_schema GLOBAL_STATUS VARIABLE_VALUE decimal NULL NULL NULL NULL decimal(22,7)
  12011. 3.0000 information_schema GLOBAL_VARIABLES VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12012. 1.0000 information_schema GLOBAL_VARIABLES VARIABLE_VALUE longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12013. 3.0000 information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12014. 3.0000 information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12015. 3.0000 information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12016. 3.0000 information_schema KEY_COLUMN_USAGE TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12017. 3.0000 information_schema KEY_COLUMN_USAGE TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12018. 3.0000 information_schema KEY_COLUMN_USAGE TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12019. 3.0000 information_schema KEY_COLUMN_USAGE COLUMN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12020. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION bigint NULL NULL NULL NULL bigint(10)
  12021. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT bigint NULL NULL NULL NULL bigint(10)
  12022. 3.0000 information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12023. 3.0000 information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12024. 3.0000 information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12025. 3.0000 information_schema PARTITIONS TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12026. 3.0000 information_schema PARTITIONS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12027. 3.0000 information_schema PARTITIONS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12028. 3.0000 information_schema PARTITIONS PARTITION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12029. 3.0000 information_schema PARTITIONS SUBPARTITION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12030. NULL information_schema PARTITIONS PARTITION_ORDINAL_POSITION bigint NULL NULL NULL NULL bigint(21)
  12031. NULL information_schema PARTITIONS SUBPARTITION_ORDINAL_POSITION bigint NULL NULL NULL NULL bigint(21)
  12032. 3.0000 information_schema PARTITIONS PARTITION_METHOD varchar 12 36 utf8 utf8_general_ci varchar(12)
  12033. 3.0000 information_schema PARTITIONS SUBPARTITION_METHOD varchar 12 36 utf8 utf8_general_ci varchar(12)
  12034. 1.0000 information_schema PARTITIONS PARTITION_EXPRESSION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12035. 1.0000 information_schema PARTITIONS SUBPARTITION_EXPRESSION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12036. 1.0000 information_schema PARTITIONS PARTITION_DESCRIPTION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12037. NULL information_schema PARTITIONS TABLE_ROWS bigint NULL NULL NULL NULL bigint(21)
  12038. NULL information_schema PARTITIONS AVG_ROW_LENGTH bigint NULL NULL NULL NULL bigint(21)
  12039. NULL information_schema PARTITIONS DATA_LENGTH bigint NULL NULL NULL NULL bigint(21)
  12040. NULL information_schema PARTITIONS MAX_DATA_LENGTH bigint NULL NULL NULL NULL bigint(21)
  12041. NULL information_schema PARTITIONS INDEX_LENGTH bigint NULL NULL NULL NULL bigint(21)
  12042. NULL information_schema PARTITIONS DATA_FREE bigint NULL NULL NULL NULL bigint(21)
  12043. NULL information_schema PARTITIONS CREATE_TIME datetime NULL NULL NULL NULL datetime
  12044. NULL information_schema PARTITIONS UPDATE_TIME datetime NULL NULL NULL NULL datetime
  12045. NULL information_schema PARTITIONS CHECK_TIME datetime NULL NULL NULL NULL datetime
  12046. NULL information_schema PARTITIONS CHECKSUM bigint NULL NULL NULL NULL bigint(21)
  12047. 3.0000 information_schema PARTITIONS PARTITION_COMMENT varchar 80 240 utf8 utf8_general_ci varchar(80)
  12048. 3.0000 information_schema PARTITIONS NODEGROUP varchar 12 36 utf8 utf8_general_ci varchar(12)
  12049. 3.0000 information_schema PARTITIONS TABLESPACE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12050. 3.0000 information_schema PLUGINS PLUGIN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12051. 3.0000 information_schema PLUGINS PLUGIN_VERSION varchar 20 60 utf8 utf8_general_ci varchar(20)
  12052. 3.0000 information_schema PLUGINS PLUGIN_STATUS varchar 10 30 utf8 utf8_general_ci varchar(10)
  12053. 3.0000 information_schema PLUGINS PLUGIN_TYPE varchar 80 240 utf8 utf8_general_ci varchar(80)
  12054. 3.0000 information_schema PLUGINS PLUGIN_TYPE_VERSION varchar 20 60 utf8 utf8_general_ci varchar(20)
  12055. 3.0000 information_schema PLUGINS PLUGIN_LIBRARY varchar 64 192 utf8 utf8_general_ci varchar(64)
  12056. 3.0000 information_schema PLUGINS PLUGIN_LIBRARY_VERSION varchar 20 60 utf8 utf8_general_ci varchar(20)
  12057. 3.0000 information_schema PLUGINS PLUGIN_AUTHOR varchar 64 192 utf8 utf8_general_ci varchar(64)
  12058. 1.0000 information_schema PLUGINS PLUGIN_DESCRIPTION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12059. 3.0000 information_schema PLUGINS PLUGIN_LICENSE varchar 80 240 utf8 utf8_general_ci varchar(80)
  12060. NULL information_schema PROCESSLIST ID bigint NULL NULL NULL NULL bigint(4)
  12061. 3.0000 information_schema PROCESSLIST USER varchar 16 48 utf8 utf8_general_ci varchar(16)
  12062. 3.0000 information_schema PROCESSLIST HOST varchar 64 192 utf8 utf8_general_ci varchar(64)
  12063. 3.0000 information_schema PROCESSLIST DB varchar 64 192 utf8 utf8_general_ci varchar(64)
  12064. 3.0000 information_schema PROCESSLIST COMMAND varchar 16 48 utf8 utf8_general_ci varchar(16)
  12065. NULL information_schema PROCESSLIST TIME bigint NULL NULL NULL NULL bigint(7)
  12066. 3.0000 information_schema PROCESSLIST STATE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12067. 1.0000 information_schema PROCESSLIST INFO longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12068. 3.0000 information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12069. 3.0000 information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12070. 3.0000 information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12071. 3.0000 information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12072. 3.0000 information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12073. 3.0000 information_schema REFERENTIAL_CONSTRAINTS UNIQUE_CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12074. 3.0000 information_schema REFERENTIAL_CONSTRAINTS MATCH_OPTION varchar 64 192 utf8 utf8_general_ci varchar(64)
  12075. 3.0000 information_schema REFERENTIAL_CONSTRAINTS UPDATE_RULE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12076. 3.0000 information_schema REFERENTIAL_CONSTRAINTS DELETE_RULE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12077. 3.0000 information_schema REFERENTIAL_CONSTRAINTS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12078. 3.0000 information_schema REFERENTIAL_CONSTRAINTS REFERENCED_TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12079. 3.0000 information_schema ROUTINES SPECIFIC_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12080. 3.0000 information_schema ROUTINES ROUTINE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12081. 3.0000 information_schema ROUTINES ROUTINE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12082. 3.0000 information_schema ROUTINES ROUTINE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12083. 3.0000 information_schema ROUTINES ROUTINE_TYPE varchar 9 27 utf8 utf8_general_ci varchar(9)
  12084. 3.0000 information_schema ROUTINES DTD_IDENTIFIER varchar 64 192 utf8 utf8_general_ci varchar(64)
  12085. 3.0000 information_schema ROUTINES ROUTINE_BODY varchar 8 24 utf8 utf8_general_ci varchar(8)
  12086. 1.0000 information_schema ROUTINES ROUTINE_DEFINITION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12087. 3.0000 information_schema ROUTINES EXTERNAL_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12088. 3.0000 information_schema ROUTINES EXTERNAL_LANGUAGE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12089. 3.0000 information_schema ROUTINES PARAMETER_STYLE varchar 8 24 utf8 utf8_general_ci varchar(8)
  12090. 3.0000 information_schema ROUTINES IS_DETERMINISTIC varchar 3 9 utf8 utf8_general_ci varchar(3)
  12091. 3.0000 information_schema ROUTINES SQL_DATA_ACCESS varchar 64 192 utf8 utf8_general_ci varchar(64)
  12092. 3.0000 information_schema ROUTINES SQL_PATH varchar 64 192 utf8 utf8_general_ci varchar(64)
  12093. 3.0000 information_schema ROUTINES SECURITY_TYPE varchar 7 21 utf8 utf8_general_ci varchar(7)
  12094. NULL information_schema ROUTINES CREATED datetime NULL NULL NULL NULL datetime
  12095. NULL information_schema ROUTINES LAST_ALTERED datetime NULL NULL NULL NULL datetime
  12096. 1.0000 information_schema ROUTINES SQL_MODE longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12097. 3.0000 information_schema ROUTINES ROUTINE_COMMENT varchar 64 192 utf8 utf8_general_ci varchar(64)
  12098. 3.0000 information_schema ROUTINES DEFINER varchar 77 231 utf8 utf8_general_ci varchar(77)
  12099. 3.0000 information_schema SCHEMATA CATALOG_NAME varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12100. 3.0000 information_schema SCHEMATA SCHEMA_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12101. 3.0000 information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12102. 3.0000 information_schema SCHEMATA DEFAULT_COLLATION_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12103. 3.0000 information_schema SCHEMATA SQL_PATH varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12104. 3.0000 information_schema SCHEMA_PRIVILEGES GRANTEE varchar 81 243 utf8 utf8_general_ci varchar(81)
  12105. 3.0000 information_schema SCHEMA_PRIVILEGES TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12106. 3.0000 information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12107. 3.0000 information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12108. 3.0000 information_schema SCHEMA_PRIVILEGES IS_GRANTABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  12109. 3.0000 information_schema SESSION_STATUS VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12110. NULL information_schema SESSION_STATUS VARIABLE_VALUE decimal NULL NULL NULL NULL decimal(22,7)
  12111. 3.0000 information_schema SESSION_VARIABLES VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12112. 1.0000 information_schema SESSION_VARIABLES VARIABLE_VALUE longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12113. 3.0000 information_schema STATISTICS TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12114. 3.0000 information_schema STATISTICS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12115. 3.0000 information_schema STATISTICS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12116. NULL information_schema STATISTICS NON_UNIQUE bigint NULL NULL NULL NULL bigint(1)
  12117. 3.0000 information_schema STATISTICS INDEX_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12118. 3.0000 information_schema STATISTICS INDEX_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12119. NULL information_schema STATISTICS SEQ_IN_INDEX bigint NULL NULL NULL NULL bigint(2)
  12120. 3.0000 information_schema STATISTICS COLUMN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12121. 3.0000 information_schema STATISTICS COLLATION varchar 1 3 utf8 utf8_general_ci varchar(1)
  12122. NULL information_schema STATISTICS CARDINALITY bigint NULL NULL NULL NULL bigint(21)
  12123. NULL information_schema STATISTICS SUB_PART bigint NULL NULL NULL NULL bigint(3)
  12124. 3.0000 information_schema STATISTICS PACKED varchar 10 30 utf8 utf8_general_ci varchar(10)
  12125. 3.0000 information_schema STATISTICS NULLABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  12126. 3.0000 information_schema STATISTICS INDEX_TYPE varchar 16 48 utf8 utf8_general_ci varchar(16)
  12127. 3.0000 information_schema STATISTICS COMMENT varchar 16 48 utf8 utf8_general_ci varchar(16)
  12128. 3.0000 information_schema TABLES TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12129. 3.0000 information_schema TABLES TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12130. 3.0000 information_schema TABLES TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12131. 3.0000 information_schema TABLES TABLE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12132. 3.0000 information_schema TABLES ENGINE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12133. NULL information_schema TABLES VERSION bigint NULL NULL NULL NULL bigint(21)
  12134. 3.0000 information_schema TABLES ROW_FORMAT varchar 10 30 utf8 utf8_general_ci varchar(10)
  12135. NULL information_schema TABLES TABLE_ROWS bigint NULL NULL NULL NULL bigint(21)
  12136. NULL information_schema TABLES AVG_ROW_LENGTH bigint NULL NULL NULL NULL bigint(21)
  12137. NULL information_schema TABLES DATA_LENGTH bigint NULL NULL NULL NULL bigint(21)
  12138. NULL information_schema TABLES MAX_DATA_LENGTH bigint NULL NULL NULL NULL bigint(21)
  12139. NULL information_schema TABLES INDEX_LENGTH bigint NULL NULL NULL NULL bigint(21)
  12140. NULL information_schema TABLES DATA_FREE bigint NULL NULL NULL NULL bigint(21)
  12141. NULL information_schema TABLES AUTO_INCREMENT bigint NULL NULL NULL NULL bigint(21)
  12142. NULL information_schema TABLES CREATE_TIME datetime NULL NULL NULL NULL datetime
  12143. NULL information_schema TABLES UPDATE_TIME datetime NULL NULL NULL NULL datetime
  12144. NULL information_schema TABLES CHECK_TIME datetime NULL NULL NULL NULL datetime
  12145. 3.0000 information_schema TABLES TABLE_COLLATION varchar 64 192 utf8 utf8_general_ci varchar(64)
  12146. NULL information_schema TABLES CHECKSUM bigint NULL NULL NULL NULL bigint(21)
  12147. 3.0000 information_schema TABLES CREATE_OPTIONS varchar 255 765 utf8 utf8_general_ci varchar(255)
  12148. 3.0000 information_schema TABLES TABLE_COMMENT varchar 80 240 utf8 utf8_general_ci varchar(80)
  12149. 3.0000 information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12150. 3.0000 information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12151. 3.0000 information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12152. 3.0000 information_schema TABLE_CONSTRAINTS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12153. 3.0000 information_schema TABLE_CONSTRAINTS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12154. 3.0000 information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12155. 3.0000 information_schema TABLE_PRIVILEGES GRANTEE varchar 81 243 utf8 utf8_general_ci varchar(81)
  12156. 3.0000 information_schema TABLE_PRIVILEGES TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12157. 3.0000 information_schema TABLE_PRIVILEGES TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12158. 3.0000 information_schema TABLE_PRIVILEGES TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12159. 3.0000 information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12160. 3.0000 information_schema TABLE_PRIVILEGES IS_GRANTABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  12161. 3.0000 information_schema TRIGGERS TRIGGER_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12162. 3.0000 information_schema TRIGGERS TRIGGER_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12163. 3.0000 information_schema TRIGGERS TRIGGER_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12164. 3.0000 information_schema TRIGGERS EVENT_MANIPULATION varchar 6 18 utf8 utf8_general_ci varchar(6)
  12165. 3.0000 information_schema TRIGGERS EVENT_OBJECT_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12166. 3.0000 information_schema TRIGGERS EVENT_OBJECT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12167. 3.0000 information_schema TRIGGERS EVENT_OBJECT_TABLE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12168. NULL information_schema TRIGGERS ACTION_ORDER bigint NULL NULL NULL NULL bigint(4)
  12169. 1.0000 information_schema TRIGGERS ACTION_CONDITION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12170. 1.0000 information_schema TRIGGERS ACTION_STATEMENT longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12171. 3.0000 information_schema TRIGGERS ACTION_ORIENTATION varchar 9 27 utf8 utf8_general_ci varchar(9)
  12172. 3.0000 information_schema TRIGGERS ACTION_TIMING varchar 6 18 utf8 utf8_general_ci varchar(6)
  12173. 3.0000 information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12174. 3.0000 information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12175. 3.0000 information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW varchar 3 9 utf8 utf8_general_ci varchar(3)
  12176. 3.0000 information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW varchar 3 9 utf8 utf8_general_ci varchar(3)
  12177. NULL information_schema TRIGGERS CREATED datetime NULL NULL NULL NULL datetime
  12178. 1.0000 information_schema TRIGGERS SQL_MODE longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12179. 1.0000 information_schema TRIGGERS DEFINER longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12180. 3.0000 information_schema USER_PRIVILEGES GRANTEE varchar 81 243 utf8 utf8_general_ci varchar(81)
  12181. 3.0000 information_schema USER_PRIVILEGES TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12182. 3.0000 information_schema USER_PRIVILEGES PRIVILEGE_TYPE varchar 64 192 utf8 utf8_general_ci varchar(64)
  12183. 3.0000 information_schema USER_PRIVILEGES IS_GRANTABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  12184. 3.0000 information_schema VIEWS TABLE_CATALOG varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12185. 3.0000 information_schema VIEWS TABLE_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
  12186. 3.0000 information_schema VIEWS TABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
  12187. 1.0000 information_schema VIEWS VIEW_DEFINITION longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
  12188. 3.0000 information_schema VIEWS CHECK_OPTION varchar 8 24 utf8 utf8_general_ci varchar(8)
  12189. 3.0000 information_schema VIEWS IS_UPDATABLE varchar 3 9 utf8 utf8_general_ci varchar(3)
  12190. 3.0000 information_schema VIEWS DEFINER varchar 77 231 utf8 utf8_general_ci varchar(77)
  12191. 3.0000 information_schema VIEWS SECURITY_TYPE varchar 7 21 utf8 utf8_general_ci varchar(7)
  12192. 3.0000 mysql columns_priv Host char 60 180 utf8 utf8_bin char(60)
  12193. 3.0000 mysql columns_priv Db char 64 192 utf8 utf8_bin char(64)
  12194. 3.0000 mysql columns_priv User char 16 48 utf8 utf8_bin char(16)
  12195. 3.0000 mysql columns_priv Table_name char 64 192 utf8 utf8_bin char(64)
  12196. 3.0000 mysql columns_priv Column_name char 64 192 utf8 utf8_bin char(64)
  12197. NULL mysql columns_priv Timestamp timestamp NULL NULL NULL NULL timestamp
  12198. 3.0000 mysql columns_priv Column_priv set 31 93 utf8 utf8_general_ci set('Select','Insert','Update','References')
  12199. 3.0000 mysql db Host char 60 180 utf8 utf8_bin char(60)
  12200. 3.0000 mysql db Db char 64 192 utf8 utf8_bin char(64)
  12201. 3.0000 mysql db User char 16 48 utf8 utf8_bin char(16)
  12202. 3.0000 mysql db Select_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12203. 3.0000 mysql db Insert_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12204. 3.0000 mysql db Update_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12205. 3.0000 mysql db Delete_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12206. 3.0000 mysql db Create_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12207. 3.0000 mysql db Drop_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12208. 3.0000 mysql db Grant_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12209. 3.0000 mysql db References_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12210. 3.0000 mysql db Index_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12211. 3.0000 mysql db Alter_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12212. 3.0000 mysql db Create_tmp_table_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12213. 3.0000 mysql db Lock_tables_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12214. 3.0000 mysql db Create_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12215. 3.0000 mysql db Show_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12216. 3.0000 mysql db Create_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12217. 3.0000 mysql db Alter_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12218. 3.0000 mysql db Execute_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12219. 3.0000 mysql db Event_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12220. 3.0000 mysql db Trigger_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12221. 3.0000 mysql event db char 64 192 utf8 utf8_bin char(64)
  12222. 3.0000 mysql event name char 64 192 utf8 utf8_general_ci char(64)
  12223. 1.0000 mysql event body longblob 4294967295 4294967295 NULL NULL longblob
  12224. 3.0000 mysql event definer char 77 231 utf8 utf8_bin char(77)
  12225. NULL mysql event execute_at datetime NULL NULL NULL NULL datetime
  12226. NULL mysql event interval_value int NULL NULL NULL NULL int(11)
  12227. 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')
  12228. NULL mysql event created timestamp NULL NULL NULL NULL timestamp
  12229. NULL mysql event modified timestamp NULL NULL NULL NULL timestamp
  12230. NULL mysql event last_executed datetime NULL NULL NULL NULL datetime
  12231. NULL mysql event starts datetime NULL NULL NULL NULL datetime
  12232. NULL mysql event ends datetime NULL NULL NULL NULL datetime
  12233. 3.0000 mysql event status enum 8 24 utf8 utf8_general_ci enum('ENABLED','DISABLED')
  12234. 3.0000 mysql event on_completion enum 8 24 utf8 utf8_general_ci enum('DROP','PRESERVE')
  12235. 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')
  12236. 3.0000 mysql event comment char 64 192 utf8 utf8_bin char(64)
  12237. 3.0000 mysql func name char 64 192 utf8 utf8_bin char(64)
  12238. NULL mysql func ret tinyint NULL NULL NULL NULL tinyint(1)
  12239. 3.0000 mysql func dl char 128 384 utf8 utf8_bin char(128)
  12240. 3.0000 mysql func type enum 9 27 utf8 utf8_general_ci enum('function','aggregate')
  12241. NULL mysql general_log event_time timestamp NULL NULL NULL NULL timestamp
  12242. 1.0000 mysql general_log user_host mediumtext 16777215 16777215 utf8 utf8_general_ci mediumtext
  12243. NULL mysql general_log thread_id int NULL NULL NULL NULL int(11)
  12244. NULL mysql general_log server_id int NULL NULL NULL NULL int(11)
  12245. 3.0000 mysql general_log command_type varchar 64 192 utf8 utf8_general_ci varchar(64)
  12246. 1.0000 mysql general_log argument mediumtext 16777215 16777215 utf8 utf8_general_ci mediumtext
  12247. NULL mysql help_category help_category_id smallint NULL NULL NULL NULL smallint(5) unsigned
  12248. 3.0000 mysql help_category name char 64 192 utf8 utf8_general_ci char(64)
  12249. NULL mysql help_category parent_category_id smallint NULL NULL NULL NULL smallint(5) unsigned
  12250. 3.0000 mysql help_category url char 128 384 utf8 utf8_general_ci char(128)
  12251. NULL mysql help_keyword help_keyword_id int NULL NULL NULL NULL int(10) unsigned
  12252. 3.0000 mysql help_keyword name char 64 192 utf8 utf8_general_ci char(64)
  12253. NULL mysql help_relation help_topic_id int NULL NULL NULL NULL int(10) unsigned
  12254. NULL mysql help_relation help_keyword_id int NULL NULL NULL NULL int(10) unsigned
  12255. NULL mysql help_topic help_topic_id int NULL NULL NULL NULL int(10) unsigned
  12256. 3.0000 mysql help_topic name char 64 192 utf8 utf8_general_ci char(64)
  12257. NULL mysql help_topic help_category_id smallint NULL NULL NULL NULL smallint(5) unsigned
  12258. 1.0000 mysql help_topic description text 65535 65535 utf8 utf8_general_ci text
  12259. 1.0000 mysql help_topic example text 65535 65535 utf8 utf8_general_ci text
  12260. 3.0000 mysql help_topic url char 128 384 utf8 utf8_general_ci char(128)
  12261. 3.0000 mysql host Host char 60 180 utf8 utf8_bin char(60)
  12262. 3.0000 mysql host Db char 64 192 utf8 utf8_bin char(64)
  12263. 3.0000 mysql host Select_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12264. 3.0000 mysql host Insert_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12265. 3.0000 mysql host Update_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12266. 3.0000 mysql host Delete_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12267. 3.0000 mysql host Create_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12268. 3.0000 mysql host Drop_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12269. 3.0000 mysql host Grant_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12270. 3.0000 mysql host References_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12271. 3.0000 mysql host Index_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12272. 3.0000 mysql host Alter_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12273. 3.0000 mysql host Create_tmp_table_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12274. 3.0000 mysql host Lock_tables_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12275. 3.0000 mysql host Create_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12276. 3.0000 mysql host Show_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12277. 3.0000 mysql host Create_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12278. 3.0000 mysql host Alter_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12279. 3.0000 mysql host Execute_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12280. 3.0000 mysql host Trigger_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12281. NULL mysql ndb_apply_status server_id int NULL NULL NULL NULL int(10) unsigned
  12282. NULL mysql ndb_apply_status epoch bigint NULL NULL NULL NULL bigint(20) unsigned
  12283. NULL mysql ndb_binlog_index Position bigint NULL NULL NULL NULL bigint(20) unsigned
  12284. 1.0000 mysql ndb_binlog_index File varchar 255 255 latin1 latin1_swedish_ci varchar(255)
  12285. NULL mysql ndb_binlog_index epoch bigint NULL NULL NULL NULL bigint(20) unsigned
  12286. NULL mysql ndb_binlog_index inserts bigint NULL NULL NULL NULL bigint(20) unsigned
  12287. NULL mysql ndb_binlog_index updates bigint NULL NULL NULL NULL bigint(20) unsigned
  12288. NULL mysql ndb_binlog_index deletes bigint NULL NULL NULL NULL bigint(20) unsigned
  12289. NULL mysql ndb_binlog_index schemaops bigint NULL NULL NULL NULL bigint(20) unsigned
  12290. 3.0000 mysql plugin name char 64 192 utf8 utf8_bin char(64)
  12291. 3.0000 mysql plugin dl char 128 384 utf8 utf8_bin char(128)
  12292. 3.0000 mysql proc db char 64 192 utf8 utf8_bin char(64)
  12293. 3.0000 mysql proc name char 64 192 utf8 utf8_general_ci char(64)
  12294. 3.0000 mysql proc type enum 9 27 utf8 utf8_general_ci enum('FUNCTION','PROCEDURE')
  12295. 3.0000 mysql proc specific_name char 64 192 utf8 utf8_general_ci char(64)
  12296. 3.0000 mysql proc language enum 3 9 utf8 utf8_general_ci enum('SQL')
  12297. 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')
  12298. 3.0000 mysql proc is_deterministic enum 3 9 utf8 utf8_general_ci enum('YES','NO')
  12299. 3.0000 mysql proc security_type enum 7 21 utf8 utf8_general_ci enum('INVOKER','DEFINER')
  12300. 1.0000 mysql proc param_list blob 65535 65535 NULL NULL blob
  12301. 3.0000 mysql proc returns char 64 192 utf8 utf8_general_ci char(64)
  12302. 1.0000 mysql proc body longblob 4294967295 4294967295 NULL NULL longblob
  12303. 3.0000 mysql proc definer char 77 231 utf8 utf8_bin char(77)
  12304. NULL mysql proc created timestamp NULL NULL NULL NULL timestamp
  12305. NULL mysql proc modified timestamp NULL NULL NULL NULL timestamp
  12306. 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')
  12307. 3.0000 mysql proc comment char 64 192 utf8 utf8_bin char(64)
  12308. 3.0000 mysql procs_priv Host char 60 180 utf8 utf8_bin char(60)
  12309. 3.0000 mysql procs_priv Db char 64 192 utf8 utf8_bin char(64)
  12310. 3.0000 mysql procs_priv User char 16 48 utf8 utf8_bin char(16)
  12311. 3.0000 mysql procs_priv Routine_name char 64 192 utf8 utf8_bin char(64)
  12312. 3.0000 mysql procs_priv Routine_type enum 9 27 utf8 utf8_bin enum('FUNCTION','PROCEDURE')
  12313. 3.0000 mysql procs_priv Grantor char 77 231 utf8 utf8_bin char(77)
  12314. 3.0000 mysql procs_priv Proc_priv set 27 81 utf8 utf8_general_ci set('Execute','Alter Routine','Grant')
  12315. NULL mysql procs_priv Timestamp timestamp NULL NULL NULL NULL timestamp
  12316. 3.0000 mysql servers Server_name char 64 192 utf8 utf8_general_ci char(64)
  12317. 3.0000 mysql servers Host char 64 192 utf8 utf8_general_ci char(64)
  12318. 3.0000 mysql servers Db char 64 192 utf8 utf8_general_ci char(64)
  12319. 3.0000 mysql servers Username char 64 192 utf8 utf8_general_ci char(64)
  12320. 3.0000 mysql servers Password char 64 192 utf8 utf8_general_ci char(64)
  12321. NULL mysql servers Port int NULL NULL NULL NULL int(4)
  12322. 3.0000 mysql servers Socket char 64 192 utf8 utf8_general_ci char(64)
  12323. 3.0000 mysql servers Wrapper char 64 192 utf8 utf8_general_ci char(64)
  12324. 3.0000 mysql servers Owner char 64 192 utf8 utf8_general_ci char(64)
  12325. NULL mysql slow_log start_time timestamp NULL NULL NULL NULL timestamp
  12326. 1.0000 mysql slow_log user_host mediumtext 16777215 16777215 utf8 utf8_general_ci mediumtext
  12327. NULL mysql slow_log query_time time NULL NULL NULL NULL time
  12328. NULL mysql slow_log lock_time time NULL NULL NULL NULL time
  12329. NULL mysql slow_log rows_sent int NULL NULL NULL NULL int(11)
  12330. NULL mysql slow_log rows_examined int NULL NULL NULL NULL int(11)
  12331. 3.0000 mysql slow_log db varchar 4096 12288 utf8 utf8_general_ci varchar(4096)
  12332. NULL mysql slow_log last_insert_id int NULL NULL NULL NULL int(11)
  12333. NULL mysql slow_log insert_id int NULL NULL NULL NULL int(11)
  12334. NULL mysql slow_log server_id int NULL NULL NULL NULL int(11)
  12335. 1.0000 mysql slow_log sql_text mediumtext 16777215 16777215 utf8 utf8_general_ci mediumtext
  12336. 3.0000 mysql tables_priv Host char 60 180 utf8 utf8_bin char(60)
  12337. 3.0000 mysql tables_priv Db char 64 192 utf8 utf8_bin char(64)
  12338. 3.0000 mysql tables_priv User char 16 48 utf8 utf8_bin char(16)
  12339. 3.0000 mysql tables_priv Table_name char 64 192 utf8 utf8_bin char(64)
  12340. 3.0000 mysql tables_priv Grantor char 77 231 utf8 utf8_bin char(77)
  12341. NULL mysql tables_priv Timestamp timestamp NULL NULL NULL NULL timestamp
  12342. 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')
  12343. 3.0000 mysql tables_priv Column_priv set 31 93 utf8 utf8_general_ci set('Select','Insert','Update','References')
  12344. NULL mysql time_zone Time_zone_id int NULL NULL NULL NULL int(10) unsigned
  12345. 3.0000 mysql time_zone Use_leap_seconds enum 1 3 utf8 utf8_general_ci enum('Y','N')
  12346. NULL mysql time_zone_leap_second Transition_time bigint NULL NULL NULL NULL bigint(20)
  12347. NULL mysql time_zone_leap_second Correction int NULL NULL NULL NULL int(11)
  12348. 3.0000 mysql time_zone_name Name char 64 192 utf8 utf8_general_ci char(64)
  12349. NULL mysql time_zone_name Time_zone_id int NULL NULL NULL NULL int(10) unsigned
  12350. NULL mysql time_zone_transition Time_zone_id int NULL NULL NULL NULL int(10) unsigned
  12351. NULL mysql time_zone_transition Transition_time bigint NULL NULL NULL NULL bigint(20)
  12352. NULL mysql time_zone_transition Transition_type_id int NULL NULL NULL NULL int(10) unsigned
  12353. NULL mysql time_zone_transition_type Time_zone_id int NULL NULL NULL NULL int(10) unsigned
  12354. NULL mysql time_zone_transition_type Transition_type_id int NULL NULL NULL NULL int(10) unsigned
  12355. NULL mysql time_zone_transition_type Offset int NULL NULL NULL NULL int(11)
  12356. NULL mysql time_zone_transition_type Is_DST tinyint NULL NULL NULL NULL tinyint(3) unsigned
  12357. 3.0000 mysql time_zone_transition_type Abbreviation char 8 24 utf8 utf8_general_ci char(8)
  12358. 3.0000 mysql user Host char 60 180 utf8 utf8_bin char(60)
  12359. 3.0000 mysql user User char 16 48 utf8 utf8_bin char(16)
  12360. 1.0000 mysql user Password char 41 41 latin1 latin1_bin char(41)
  12361. 3.0000 mysql user Select_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12362. 3.0000 mysql user Insert_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12363. 3.0000 mysql user Update_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12364. 3.0000 mysql user Delete_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12365. 3.0000 mysql user Create_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12366. 3.0000 mysql user Drop_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12367. 3.0000 mysql user Reload_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12368. 3.0000 mysql user Shutdown_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12369. 3.0000 mysql user Process_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12370. 3.0000 mysql user File_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12371. 3.0000 mysql user Grant_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12372. 3.0000 mysql user References_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12373. 3.0000 mysql user Index_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12374. 3.0000 mysql user Alter_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12375. 3.0000 mysql user Show_db_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12376. 3.0000 mysql user Super_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12377. 3.0000 mysql user Create_tmp_table_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12378. 3.0000 mysql user Lock_tables_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12379. 3.0000 mysql user Execute_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12380. 3.0000 mysql user Repl_slave_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12381. 3.0000 mysql user Repl_client_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12382. 3.0000 mysql user Create_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12383. 3.0000 mysql user Show_view_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12384. 3.0000 mysql user Create_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12385. 3.0000 mysql user Alter_routine_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12386. 3.0000 mysql user Create_user_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12387. 3.0000 mysql user Event_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12388. 3.0000 mysql user Trigger_priv enum 1 3 utf8 utf8_general_ci enum('N','Y')
  12389. 3.0000 mysql user ssl_type enum 9 27 utf8 utf8_general_ci enum('','ANY','X509','SPECIFIED')
  12390. 1.0000 mysql user ssl_cipher blob 65535 65535 NULL NULL blob
  12391. 1.0000 mysql user x509_issuer blob 65535 65535 NULL NULL blob
  12392. 1.0000 mysql user x509_subject blob 65535 65535 NULL NULL blob
  12393. NULL mysql user max_questions int NULL NULL NULL NULL int(11) unsigned
  12394. NULL mysql user max_updates int NULL NULL NULL NULL int(11) unsigned
  12395. NULL mysql user max_connections int NULL NULL NULL NULL int(11) unsigned
  12396. NULL mysql user max_user_connections int NULL NULL NULL NULL int(11) unsigned
  12397. 1.0000 test t1 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12398. 1.0000 test t1 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12399. NULL test t1 f3 date NULL NULL NULL NULL date
  12400. NULL test t1 f4 int NULL NULL NULL NULL int(11)
  12401. 1.0000 test t1 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12402. NULL test t1 f6 int NULL NULL NULL NULL int(11)
  12403. 1.0000 test t10 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12404. 1.0000 test t10 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12405. NULL test t10 f3 date NULL NULL NULL NULL date
  12406. NULL test t10 f4 int NULL NULL NULL NULL int(11)
  12407. 1.0000 test t10 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12408. NULL test t10 f6 int NULL NULL NULL NULL int(11)
  12409. 1.0000 test t11 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12410. 1.0000 test t11 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12411. NULL test t11 f3 date NULL NULL NULL NULL date
  12412. NULL test t11 f4 int NULL NULL NULL NULL int(11)
  12413. 1.0000 test t11 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12414. NULL test t11 f6 int NULL NULL NULL NULL int(11)
  12415. 1.0000 test t2 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12416. 1.0000 test t2 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12417. NULL test t2 f3 date NULL NULL NULL NULL date
  12418. NULL test t2 f4 int NULL NULL NULL NULL int(11)
  12419. 1.0000 test t2 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12420. NULL test t2 f6 int NULL NULL NULL NULL int(11)
  12421. 1.0000 test t3 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12422. 1.0000 test t3 f2 char 20 20 latin1 latin1_swedish_ci char(20)
  12423. NULL test t3 f3 int NULL NULL NULL NULL int(11)
  12424. 1.0000 test t4 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12425. 1.0000 test t4 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12426. NULL test t4 f3 date NULL NULL NULL NULL date
  12427. NULL test t4 f4 int NULL NULL NULL NULL int(11)
  12428. 1.0000 test t4 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12429. NULL test t4 f6 int NULL NULL NULL NULL int(11)
  12430. 1.0000 test t7 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12431. 1.0000 test t7 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12432. NULL test t7 f3 date NULL NULL NULL NULL date
  12433. NULL test t7 f4 int NULL NULL NULL NULL int(11)
  12434. 1.0000 test t8 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12435. 1.0000 test t8 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12436. NULL test t8 f3 date NULL NULL NULL NULL date
  12437. NULL test t8 f4 int NULL NULL NULL NULL int(11)
  12438. NULL test t9 f1 int NULL NULL NULL NULL int(11)
  12439. 1.0000 test t9 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12440. NULL test t9 f3 int NULL NULL NULL NULL int(11)
  12441. 1.0000 test tb1 f1 char 1 1 latin1 latin1_swedish_ci char(1)
  12442. 1.0000 test tb1 f2 char 1 1 latin1 latin1_bin char(1)
  12443. 1.0000 test tb1 f3 char 1 1 latin1 latin1_swedish_ci char(1)
  12444. 2.0079 test tb1 f4 tinytext 127 255 ucs2 ucs2_general_ci tinytext
  12445. 1.0000 test tb1 f5 text 65535 65535 latin1 latin1_swedish_ci text
  12446. 1.0000 test tb1 f6 mediumtext 16777215 16777215 latin1 latin1_swedish_ci mediumtext
  12447. 1.0000 test tb1 f7 longtext 4294967295 4294967295 latin1 latin1_swedish_ci longtext
  12448. 1.0000 test tb1 f8 tinyblob 255 255 NULL NULL tinyblob
  12449. 1.0000 test tb1 f9 blob 65535 65535 NULL NULL blob
  12450. 1.0000 test tb1 f10 mediumblob 16777215 16777215 NULL NULL mediumblob
  12451. 1.0000 test tb1 f11 longblob 4294967295 4294967295 NULL NULL longblob
  12452. 1.0000 test tb1 f12 binary 1 1 NULL NULL binary(1)
  12453. NULL test tb1 f13 tinyint NULL NULL NULL NULL tinyint(4)
  12454. NULL test tb1 f14 tinyint NULL NULL NULL NULL tinyint(3) unsigned
  12455. NULL test tb1 f15 tinyint NULL NULL NULL NULL tinyint(3) unsigned zerofill
  12456. NULL test tb1 f16 tinyint NULL NULL NULL NULL tinyint(3) unsigned zerofill
  12457. NULL test tb1 f17 smallint NULL NULL NULL NULL smallint(6)
  12458. NULL test tb1 f18 smallint NULL NULL NULL NULL smallint(5) unsigned
  12459. NULL test tb1 f19 smallint NULL NULL NULL NULL smallint(5) unsigned zerofill
  12460. NULL test tb1 f20 smallint NULL NULL NULL NULL smallint(5) unsigned zerofill
  12461. NULL test tb1 f21 mediumint NULL NULL NULL NULL mediumint(9)
  12462. NULL test tb1 f22 mediumint NULL NULL NULL NULL mediumint(8) unsigned
  12463. NULL test tb1 f23 mediumint NULL NULL NULL NULL mediumint(8) unsigned zerofill
  12464. NULL test tb1 f24 mediumint NULL NULL NULL NULL mediumint(8) unsigned zerofill
  12465. NULL test tb1 f25 int NULL NULL NULL NULL int(11)
  12466. NULL test tb1 f26 int NULL NULL NULL NULL int(10) unsigned
  12467. NULL test tb1 f27 int NULL NULL NULL NULL int(10) unsigned zerofill
  12468. NULL test tb1 f28 int NULL NULL NULL NULL int(10) unsigned zerofill
  12469. NULL test tb1 f29 bigint NULL NULL NULL NULL bigint(20)
  12470. NULL test tb1 f30 bigint NULL NULL NULL NULL bigint(20) unsigned
  12471. NULL test tb1 f31 bigint NULL NULL NULL NULL bigint(20) unsigned zerofill
  12472. NULL test tb1 f32 bigint NULL NULL NULL NULL bigint(20) unsigned zerofill
  12473. NULL test tb1 f33 decimal NULL NULL NULL NULL decimal(10,0)
  12474. NULL test tb1 f34 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12475. NULL test tb1 f35 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12476. NULL test tb1 f36 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12477. NULL test tb1 f37 decimal NULL NULL NULL NULL decimal(10,0)
  12478. NULL test tb1 f38 decimal NULL NULL NULL NULL decimal(64,0)
  12479. NULL test tb1 f39 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12480. NULL test tb1 f40 decimal NULL NULL NULL NULL decimal(64,0) unsigned
  12481. NULL test tb1 f41 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12482. NULL test tb1 f42 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12483. NULL test tb1 f43 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12484. NULL test tb1 f44 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12485. NULL test tb1 f45 decimal NULL NULL NULL NULL decimal(10,0)
  12486. NULL test tb1 f46 decimal NULL NULL NULL NULL decimal(63,30)
  12487. NULL test tb1 f47 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12488. NULL test tb1 f48 decimal NULL NULL NULL NULL decimal(63,30) unsigned
  12489. NULL test tb1 f49 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12490. NULL test tb1 f50 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12491. NULL test tb1 f51 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12492. NULL test tb1 f52 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12493. NULL test tb1 f53 decimal NULL NULL NULL NULL decimal(10,0)
  12494. NULL test tb1 f54 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12495. NULL test tb1 f55 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12496. NULL test tb1 f56 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12497. NULL test tb1 f57 decimal NULL NULL NULL NULL decimal(10,0)
  12498. NULL test tb1 f58 decimal NULL NULL NULL NULL decimal(64,0)
  12499. NULL test tb2 f59 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12500. NULL test tb2 f60 decimal NULL NULL NULL NULL decimal(64,0) unsigned
  12501. NULL test tb2 f61 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12502. NULL test tb2 f62 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12503. NULL test tb2 f63 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12504. NULL test tb2 f64 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12505. NULL test tb2 f65 decimal NULL NULL NULL NULL decimal(10,0)
  12506. NULL test tb2 f66 decimal NULL NULL NULL NULL decimal(63,30)
  12507. NULL test tb2 f67 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12508. NULL test tb2 f68 decimal NULL NULL NULL NULL decimal(63,30) unsigned
  12509. NULL test tb2 f69 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12510. NULL test tb2 f70 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12511. NULL test tb2 f71 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12512. NULL test tb2 f72 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12513. NULL test tb2 f73 double NULL NULL NULL NULL double
  12514. NULL test tb2 f74 double unsigned NULL NULL NULL NULL double unsigned
  12515. NULL test tb2 f75 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12516. NULL test tb2 f76 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12517. NULL test tb2 f77 double NULL NULL NULL NULL double
  12518. NULL test tb2 f78 double unsigned NULL NULL NULL NULL double unsigned
  12519. NULL test tb2 f79 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12520. NULL test tb2 f80 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12521. NULL test tb2 f81 float NULL NULL NULL NULL float
  12522. NULL test tb2 f82 float unsigned NULL NULL NULL NULL float unsigned
  12523. NULL test tb2 f83 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12524. NULL test tb2 f84 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12525. NULL test tb2 f85 float NULL NULL NULL NULL float
  12526. NULL test tb2 f86 float NULL NULL NULL NULL float
  12527. NULL test tb2 f87 float unsigned NULL NULL NULL NULL float unsigned
  12528. NULL test tb2 f88 float unsigned NULL NULL NULL NULL float unsigned
  12529. NULL test tb2 f89 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12530. NULL test tb2 f90 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12531. NULL test tb2 f91 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12532. NULL test tb2 f92 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12533. NULL test tb2 f93 float NULL NULL NULL NULL float
  12534. NULL test tb2 f94 double NULL NULL NULL NULL double
  12535. NULL test tb2 f95 float unsigned NULL NULL NULL NULL float unsigned
  12536. NULL test tb2 f96 double unsigned NULL NULL NULL NULL double unsigned
  12537. NULL test tb2 f97 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12538. NULL test tb2 f98 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12539. NULL test tb2 f99 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12540. NULL test tb2 f100 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12541. NULL test tb2 f101 date NULL NULL NULL NULL date
  12542. NULL test tb2 f102 time NULL NULL NULL NULL time
  12543. NULL test tb2 f103 datetime NULL NULL NULL NULL datetime
  12544. NULL test tb2 f104 timestamp NULL NULL NULL NULL timestamp
  12545. NULL test tb2 f105 year NULL NULL NULL NULL year(4)
  12546. NULL test tb2 f106 year NULL NULL NULL NULL year(4)
  12547. NULL test tb2 f107 year NULL NULL NULL NULL year(4)
  12548. 1.0000 test tb2 f108 enum 5 5 latin1 latin1_swedish_ci enum('1enum','2enum')
  12549. 1.0000 test tb2 f109 set 9 9 latin1 latin1_swedish_ci set('1set','2set')
  12550. 1.0000 test tb2 f110 varbinary 64 64 NULL NULL varbinary(64)
  12551. 1.0000 test tb2 f111 varbinary 27 27 NULL NULL varbinary(27)
  12552. 1.0000 test tb2 f112 varbinary 64 64 NULL NULL varbinary(64)
  12553. 1.0000 test tb2 f113 varbinary 192 192 NULL NULL varbinary(192)
  12554. 1.0000 test tb2 f114 varbinary 192 192 NULL NULL varbinary(192)
  12555. 1.0000 test tb2 f115 varbinary 27 27 NULL NULL varbinary(27)
  12556. 1.0000 test tb2 f116 varbinary 64 64 NULL NULL varbinary(64)
  12557. 1.0000 test tb2 f117 varbinary 192 192 NULL NULL varbinary(192)
  12558. 1.0000 test tb3 f118 char 1 1 latin1 latin1_swedish_ci char(1)
  12559. 1.0000 test tb3 f119 char 1 1 latin1 latin1_bin char(1)
  12560. 1.0000 test tb3 f120 char 1 1 latin1 latin1_swedish_ci char(1)
  12561. 1.0000 test tb3 f121 tinytext 255 255 latin1 latin1_swedish_ci tinytext
  12562. 1.0000 test tb3 f122 text 65535 65535 latin1 latin1_swedish_ci text
  12563. 1.0000 test tb3 f123 mediumtext 16777215 16777215 latin1 latin1_swedish_ci mediumtext
  12564. 2.0000 test tb3 f124 longtext 2147483647 4294967295 ucs2 ucs2_general_ci longtext
  12565. 1.0000 test tb3 f125 tinyblob 255 255 NULL NULL tinyblob
  12566. 1.0000 test tb3 f126 blob 65535 65535 NULL NULL blob
  12567. 1.0000 test tb3 f127 mediumblob 16777215 16777215 NULL NULL mediumblob
  12568. 1.0000 test tb3 f128 longblob 4294967295 4294967295 NULL NULL longblob
  12569. 1.0000 test tb3 f129 binary 1 1 NULL NULL binary(1)
  12570. NULL test tb3 f130 tinyint NULL NULL NULL NULL tinyint(4)
  12571. NULL test tb3 f131 tinyint NULL NULL NULL NULL tinyint(3) unsigned
  12572. NULL test tb3 f132 tinyint NULL NULL NULL NULL tinyint(3) unsigned zerofill
  12573. NULL test tb3 f133 tinyint NULL NULL NULL NULL tinyint(3) unsigned zerofill
  12574. NULL test tb3 f134 smallint NULL NULL NULL NULL smallint(6)
  12575. NULL test tb3 f135 smallint NULL NULL NULL NULL smallint(5) unsigned
  12576. NULL test tb3 f136 smallint NULL NULL NULL NULL smallint(5) unsigned zerofill
  12577. NULL test tb3 f137 smallint NULL NULL NULL NULL smallint(5) unsigned zerofill
  12578. NULL test tb3 f138 mediumint NULL NULL NULL NULL mediumint(9)
  12579. NULL test tb3 f139 mediumint NULL NULL NULL NULL mediumint(8) unsigned
  12580. NULL test tb3 f140 mediumint NULL NULL NULL NULL mediumint(8) unsigned zerofill
  12581. NULL test tb3 f141 mediumint NULL NULL NULL NULL mediumint(8) unsigned zerofill
  12582. NULL test tb3 f142 int NULL NULL NULL NULL int(11)
  12583. NULL test tb3 f143 int NULL NULL NULL NULL int(10) unsigned
  12584. NULL test tb3 f144 int NULL NULL NULL NULL int(10) unsigned zerofill
  12585. NULL test tb3 f145 int NULL NULL NULL NULL int(10) unsigned zerofill
  12586. NULL test tb3 f146 bigint NULL NULL NULL NULL bigint(20)
  12587. NULL test tb3 f147 bigint NULL NULL NULL NULL bigint(20) unsigned
  12588. NULL test tb3 f148 bigint NULL NULL NULL NULL bigint(20) unsigned zerofill
  12589. NULL test tb3 f149 bigint NULL NULL NULL NULL bigint(20) unsigned zerofill
  12590. NULL test tb3 f150 decimal NULL NULL NULL NULL decimal(10,0)
  12591. NULL test tb3 f151 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12592. NULL test tb3 f152 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12593. NULL test tb3 f153 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12594. NULL test tb3 f154 decimal NULL NULL NULL NULL decimal(10,0)
  12595. NULL test tb3 f155 decimal NULL NULL NULL NULL decimal(64,0)
  12596. NULL test tb3 f156 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12597. NULL test tb3 f157 decimal NULL NULL NULL NULL decimal(64,0) unsigned
  12598. NULL test tb3 f158 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12599. NULL test tb3 f159 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12600. NULL test tb3 f160 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12601. NULL test tb3 f161 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12602. NULL test tb3 f162 decimal NULL NULL NULL NULL decimal(10,0)
  12603. NULL test tb3 f163 decimal NULL NULL NULL NULL decimal(63,30)
  12604. NULL test tb3 f164 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12605. NULL test tb3 f165 decimal NULL NULL NULL NULL decimal(63,30) unsigned
  12606. NULL test tb3 f166 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12607. NULL test tb3 f167 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12608. NULL test tb3 f168 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12609. NULL test tb3 f169 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12610. NULL test tb3 f170 decimal NULL NULL NULL NULL decimal(10,0)
  12611. NULL test tb3 f171 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12612. NULL test tb3 f172 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12613. NULL test tb3 f173 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12614. NULL test tb3 f174 decimal NULL NULL NULL NULL decimal(10,0)
  12615. NULL test tb3 f175 decimal NULL NULL NULL NULL decimal(64,0)
  12616. NULL test tb4 f176 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12617. NULL test tb4 f177 decimal NULL NULL NULL NULL decimal(64,0) unsigned
  12618. NULL test tb4 f178 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12619. NULL test tb4 f179 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12620. NULL test tb4 f180 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12621. NULL test tb4 f181 decimal NULL NULL NULL NULL decimal(64,0) unsigned zerofill
  12622. NULL test tb4 f182 decimal NULL NULL NULL NULL decimal(10,0)
  12623. NULL test tb4 f183 decimal NULL NULL NULL NULL decimal(63,30)
  12624. NULL test tb4 f184 decimal NULL NULL NULL NULL decimal(10,0) unsigned
  12625. NULL test tb4 f185 decimal NULL NULL NULL NULL decimal(63,30) unsigned
  12626. NULL test tb4 f186 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12627. NULL test tb4 f187 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12628. NULL test tb4 f188 decimal NULL NULL NULL NULL decimal(10,0) unsigned zerofill
  12629. NULL test tb4 f189 decimal NULL NULL NULL NULL decimal(63,30) unsigned zerofill
  12630. NULL test tb4 f190 double NULL NULL NULL NULL double
  12631. NULL test tb4 f191 double unsigned NULL NULL NULL NULL double unsigned
  12632. NULL test tb4 f192 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12633. NULL test tb4 f193 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12634. NULL test tb4 f194 double NULL NULL NULL NULL double
  12635. NULL test tb4 f195 double unsigned NULL NULL NULL NULL double unsigned
  12636. NULL test tb4 f196 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12637. NULL test tb4 f197 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12638. NULL test tb4 f198 float NULL NULL NULL NULL float
  12639. NULL test tb4 f199 float unsigned NULL NULL NULL NULL float unsigned
  12640. NULL test tb4 f200 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12641. NULL test tb4 f201 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12642. NULL test tb4 f202 float NULL NULL NULL NULL float
  12643. NULL test tb4 f203 float NULL NULL NULL NULL float
  12644. NULL test tb4 f204 float unsigned NULL NULL NULL NULL float unsigned
  12645. NULL test tb4 f205 float unsigned NULL NULL NULL NULL float unsigned
  12646. NULL test tb4 f206 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12647. NULL test tb4 f207 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12648. NULL test tb4 f208 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12649. NULL test tb4 f209 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12650. NULL test tb4 f210 float NULL NULL NULL NULL float
  12651. NULL test tb4 f211 double NULL NULL NULL NULL double
  12652. NULL test tb4 f212 float unsigned NULL NULL NULL NULL float unsigned
  12653. NULL test tb4 f213 double unsigned NULL NULL NULL NULL double unsigned
  12654. NULL test tb4 f214 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12655. NULL test tb4 f215 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12656. NULL test tb4 f216 float unsigned zerofill NULL NULL NULL NULL float unsigned zerofill
  12657. NULL test tb4 f217 double unsigned zerofill NULL NULL NULL NULL double unsigned zerofill
  12658. NULL test tb4 f218 date NULL NULL NULL NULL date
  12659. NULL test tb4 f219 time NULL NULL NULL NULL time
  12660. NULL test tb4 f220 datetime NULL NULL NULL NULL datetime
  12661. NULL test tb4 f221 timestamp NULL NULL NULL NULL timestamp
  12662. NULL test tb4 f222 year NULL NULL NULL NULL year(4)
  12663. NULL test tb4 f223 year NULL NULL NULL NULL year(4)
  12664. NULL test tb4 f224 year NULL NULL NULL NULL year(4)
  12665. 1.0000 test tb4 f225 enum 5 5 latin1 latin1_swedish_ci enum('1enum','2enum')
  12666. 1.0000 test tb4 f226 set 9 9 latin1 latin1_swedish_ci set('1set','2set')
  12667. 1.0000 test tb4 f227 varbinary 64 64 NULL NULL varbinary(64)
  12668. 1.0000 test tb4 f228 varbinary 27 27 NULL NULL varbinary(27)
  12669. 1.0000 test tb4 f229 varbinary 64 64 NULL NULL varbinary(64)
  12670. 1.0000 test tb4 f230 varbinary 192 192 NULL NULL varbinary(192)
  12671. 1.0000 test tb4 f231 varbinary 192 192 NULL NULL varbinary(192)
  12672. 1.0000 test tb4 f232 varbinary 27 27 NULL NULL varbinary(27)
  12673. 1.0000 test tb4 f233 varbinary 64 64 NULL NULL varbinary(64)
  12674. 1.0000 test tb4 f234 varbinary 192 192 NULL NULL varbinary(192)
  12675. 2.0000 test tb4 f235 char 255 510 ucs2 ucs2_general_ci char(255)
  12676. 1.0000 test tb4 f236 char 60 60 latin1 latin1_swedish_ci char(60)
  12677. 1.0000 test tb4 f237 char 255 255 latin1 latin1_bin char(255)
  12678. NULL test tb4 f238 varchar 0 0 latin1 latin1_bin varchar(0)
  12679. 1.0000 test tb4 f239 varbinary 1000 1000 NULL NULL varbinary(1000)
  12680. 2.0000 test tb4 f240 varchar 120 240 ucs2 ucs2_general_ci varchar(120)
  12681. 2.0000 test tb4 f241 char 100 200 ucs2 ucs2_general_ci char(100)
  12682. NULL test tb4 f242 bit NULL NULL NULL NULL bit(30)
  12683. 1.0000 test4 t6 f1 char 20 20 latin1 latin1_swedish_ci char(20)
  12684. 1.0000 test4 t6 f2 char 25 25 latin1 latin1_swedish_ci char(25)
  12685. NULL test4 t6 f3 date NULL NULL NULL NULL date
  12686. NULL test4 t6 f4 int NULL NULL NULL NULL int(11)
  12687. 1.0000 test4 t6 f5 char 25 25 latin1 latin1_swedish_ci char(25)
  12688. NULL test4 t6 f6 int NULL NULL NULL NULL int(11)
  12689. DROP USER 'user_1'@'localhost';
  12690. DROP USER 'user_2'@'localhost';
  12691. DROP TABLE IF EXISTS t_6_406001;
  12692. DROP TABLE IF EXISTS t_6_406002;
  12693. DROP DATABASE IF EXISTS db_datadict;
  12694. Testcase 3.2.7.1:
  12695. --------------------------------------------------------------------------------
  12696. USE information_schema;
  12697. DESC key_column_usage;
  12698. Field Type Null Key Default Extra
  12699. CONSTRAINT_CATALOG varchar(4096) YES NULL
  12700. CONSTRAINT_SCHEMA varchar(64) NO
  12701. CONSTRAINT_NAME varchar(64) NO
  12702. TABLE_CATALOG varchar(4096) YES NULL
  12703. TABLE_SCHEMA varchar(64) NO
  12704. TABLE_NAME varchar(64) NO
  12705. COLUMN_NAME varchar(64) NO
  12706. ORDINAL_POSITION bigint(10) NO 0
  12707. POSITION_IN_UNIQUE_CONSTRAINT bigint(10) YES NULL
  12708. REFERENCED_TABLE_SCHEMA varchar(64) YES NULL
  12709. REFERENCED_TABLE_NAME varchar(64) YES NULL
  12710. REFERENCED_COLUMN_NAME varchar(64) YES NULL
  12711. SHOW CREATE TABLE key_column_usage;
  12712. Table Create Table
  12713. KEY_COLUMN_USAGE CREATE TEMPORARY TABLE `KEY_COLUMN_USAGE` (
  12714. `CONSTRAINT_CATALOG` varchar(4096) DEFAULT NULL,
  12715. `CONSTRAINT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  12716. `CONSTRAINT_NAME` varchar(64) NOT NULL DEFAULT '',
  12717. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  12718. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  12719. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  12720. `COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
  12721. `ORDINAL_POSITION` bigint(10) NOT NULL DEFAULT '0',
  12722. `POSITION_IN_UNIQUE_CONSTRAINT` bigint(10) DEFAULT NULL,
  12723. `REFERENCED_TABLE_SCHEMA` varchar(64) DEFAULT NULL,
  12724. `REFERENCED_TABLE_NAME` varchar(64) DEFAULT NULL,
  12725. `REFERENCED_COLUMN_NAME` varchar(64) DEFAULT NULL
  12726. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  12727. SELECT COUNT(*) FROM information_schema.columns
  12728. WHERE table_schema = 'information_schema'
  12729. AND table_name = 'key_column_usage'
  12730. ORDER BY ordinal_position;
  12731. COUNT(*)
  12732. 12
  12733. SELECT * FROM information_schema.columns
  12734. WHERE table_schema = 'information_schema'
  12735. AND table_name = 'key_column_usage'
  12736. ORDER BY ordinal_position;
  12737. 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
  12738. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  12739. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12740. NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12741. NULL information_schema KEY_COLUMN_USAGE TABLE_CATALOG 4 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  12742. NULL information_schema KEY_COLUMN_USAGE TABLE_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12743. NULL information_schema KEY_COLUMN_USAGE TABLE_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12744. NULL information_schema KEY_COLUMN_USAGE COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12745. NULL information_schema KEY_COLUMN_USAGE ORDINAL_POSITION 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(10) select
  12746. NULL information_schema KEY_COLUMN_USAGE POSITION_IN_UNIQUE_CONSTRAINT 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(10) select
  12747. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_SCHEMA 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12748. NULL information_schema KEY_COLUMN_USAGE REFERENCED_TABLE_NAME 11 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12749. NULL information_schema KEY_COLUMN_USAGE REFERENCED_COLUMN_NAME 12 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12750. Testcase 3.2.7.2 + 3.2.7.3:
  12751. --------------------------------------------------------------------------------
  12752. DROP DATABASE IF EXISTS db_datadict;
  12753. CREATE DATABASE db_datadict;
  12754. CREATE USER 'user_1'@'localhost';
  12755. CREATE USER 'user_2'@'localhost';
  12756. USE db_datadict;
  12757. CREATE TABLE t_40701 (
  12758. f1 INT NOT NULL, PRIMARY KEY(f1),
  12759. f2 INT, INDEX f2_ind(f2)
  12760. );
  12761. GRANT SELECT ON t_40701 to 'user_1'@'localhost';
  12762. CREATE TABLE t_40702 (
  12763. f1 INT NOT NULL, PRIMARY KEY(f1),
  12764. f2 INT, INDEX f2_ind(f2)
  12765. );
  12766. GRANT SELECT ON t_40702 to 'user_2'@'localhost';
  12767. FLUSH PRIVILEGES;
  12768. SELECT * FROM information_schema.key_column_usage
  12769. ORDER BY constraint_catalog, constraint_schema, constraint_name,
  12770. table_catalog, table_schema, table_name, ordinal_position;
  12771. 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
  12772. NULL db_datadict PRIMARY NULL db_datadict t_40701 f1 1 NULL NULL NULL NULL
  12773. NULL db_datadict PRIMARY NULL db_datadict t_40702 f1 1 NULL NULL NULL NULL
  12774. NULL mysql name NULL mysql help_category name 1 NULL NULL NULL NULL
  12775. NULL mysql name NULL mysql help_keyword name 1 NULL NULL NULL NULL
  12776. NULL mysql name NULL mysql help_topic name 1 NULL NULL NULL NULL
  12777. NULL mysql PRIMARY NULL mysql columns_priv Host 1 NULL NULL NULL NULL
  12778. NULL mysql PRIMARY NULL mysql columns_priv Db 2 NULL NULL NULL NULL
  12779. NULL mysql PRIMARY NULL mysql columns_priv User 3 NULL NULL NULL NULL
  12780. NULL mysql PRIMARY NULL mysql columns_priv Table_name 4 NULL NULL NULL NULL
  12781. NULL mysql PRIMARY NULL mysql columns_priv Column_name 5 NULL NULL NULL NULL
  12782. NULL mysql PRIMARY NULL mysql db Host 1 NULL NULL NULL NULL
  12783. NULL mysql PRIMARY NULL mysql db Db 2 NULL NULL NULL NULL
  12784. NULL mysql PRIMARY NULL mysql db User 3 NULL NULL NULL NULL
  12785. NULL mysql PRIMARY NULL mysql event db 1 NULL NULL NULL NULL
  12786. NULL mysql PRIMARY NULL mysql event name 2 NULL NULL NULL NULL
  12787. NULL mysql PRIMARY NULL mysql func name 1 NULL NULL NULL NULL
  12788. NULL mysql PRIMARY NULL mysql help_category help_category_id 1 NULL NULL NULL NULL
  12789. NULL mysql PRIMARY NULL mysql help_keyword help_keyword_id 1 NULL NULL NULL NULL
  12790. NULL mysql PRIMARY NULL mysql help_relation help_keyword_id 1 NULL NULL NULL NULL
  12791. NULL mysql PRIMARY NULL mysql help_relation help_topic_id 2 NULL NULL NULL NULL
  12792. NULL mysql PRIMARY NULL mysql help_topic help_topic_id 1 NULL NULL NULL NULL
  12793. NULL mysql PRIMARY NULL mysql host Host 1 NULL NULL NULL NULL
  12794. NULL mysql PRIMARY NULL mysql host Db 2 NULL NULL NULL NULL
  12795. NULL mysql PRIMARY NULL mysql ndb_apply_status server_id 1 NULL NULL NULL NULL
  12796. NULL mysql PRIMARY NULL mysql ndb_binlog_index epoch 1 NULL NULL NULL NULL
  12797. NULL mysql PRIMARY NULL mysql plugin name 1 NULL NULL NULL NULL
  12798. NULL mysql PRIMARY NULL mysql proc db 1 NULL NULL NULL NULL
  12799. NULL mysql PRIMARY NULL mysql proc name 2 NULL NULL NULL NULL
  12800. NULL mysql PRIMARY NULL mysql proc type 3 NULL NULL NULL NULL
  12801. NULL mysql PRIMARY NULL mysql procs_priv Host 1 NULL NULL NULL NULL
  12802. NULL mysql PRIMARY NULL mysql procs_priv Db 2 NULL NULL NULL NULL
  12803. NULL mysql PRIMARY NULL mysql procs_priv User 3 NULL NULL NULL NULL
  12804. NULL mysql PRIMARY NULL mysql procs_priv Routine_name 4 NULL NULL NULL NULL
  12805. NULL mysql PRIMARY NULL mysql procs_priv Routine_type 5 NULL NULL NULL NULL
  12806. NULL mysql PRIMARY NULL mysql servers Server_name 1 NULL NULL NULL NULL
  12807. NULL mysql PRIMARY NULL mysql tables_priv Host 1 NULL NULL NULL NULL
  12808. NULL mysql PRIMARY NULL mysql tables_priv Db 2 NULL NULL NULL NULL
  12809. NULL mysql PRIMARY NULL mysql tables_priv User 3 NULL NULL NULL NULL
  12810. NULL mysql PRIMARY NULL mysql tables_priv Table_name 4 NULL NULL NULL NULL
  12811. NULL mysql PRIMARY NULL mysql time_zone Time_zone_id 1 NULL NULL NULL NULL
  12812. NULL mysql PRIMARY NULL mysql time_zone_leap_second Transition_time 1 NULL NULL NULL NULL
  12813. NULL mysql PRIMARY NULL mysql time_zone_name Name 1 NULL NULL NULL NULL
  12814. NULL mysql PRIMARY NULL mysql time_zone_transition Time_zone_id 1 NULL NULL NULL NULL
  12815. NULL mysql PRIMARY NULL mysql time_zone_transition Transition_time 2 NULL NULL NULL NULL
  12816. NULL mysql PRIMARY NULL mysql time_zone_transition_type Time_zone_id 1 NULL NULL NULL NULL
  12817. NULL mysql PRIMARY NULL mysql time_zone_transition_type Transition_type_id 2 NULL NULL NULL NULL
  12818. NULL mysql PRIMARY NULL mysql user Host 1 NULL NULL NULL NULL
  12819. NULL mysql PRIMARY NULL mysql user User 2 NULL NULL NULL NULL
  12820. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  12821. SELECT * FROM information_schema.key_column_usage
  12822. ORDER BY constraint_catalog, constraint_schema, constraint_name,
  12823. table_catalog, table_schema, table_name, ordinal_position;
  12824. 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
  12825. NULL db_datadict PRIMARY NULL db_datadict t_40701 f1 1 NULL NULL NULL NULL
  12826. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  12827. SELECT * FROM information_schema.key_column_usage
  12828. ORDER BY constraint_catalog, constraint_schema, constraint_name,
  12829. table_catalog, table_schema, table_name, ordinal_position;
  12830. 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
  12831. NULL db_datadict PRIMARY NULL db_datadict t_40702 f1 1 NULL NULL NULL NULL
  12832. root@localhost db_datadict
  12833. DROP USER 'user_1'@'localhost';
  12834. DROP USER 'user_2'@'localhost';
  12835. DROP TABLE t_40701;
  12836. DROP TABLE t_40702;
  12837. DROP DATABASE IF EXISTS db_datadict;
  12838. Testcase 3.2.8.1:
  12839. --------------------------------------------------------------------------------
  12840. USE information_schema;
  12841. DESC routines;
  12842. Field Type Null Key Default Extra
  12843. SPECIFIC_NAME varchar(64) NO
  12844. ROUTINE_CATALOG varchar(4096) YES NULL
  12845. ROUTINE_SCHEMA varchar(64) NO
  12846. ROUTINE_NAME varchar(64) NO
  12847. ROUTINE_TYPE varchar(9) NO
  12848. DTD_IDENTIFIER varchar(64) YES NULL
  12849. ROUTINE_BODY varchar(8) NO
  12850. ROUTINE_DEFINITION longtext YES NULL
  12851. EXTERNAL_NAME varchar(64) YES NULL
  12852. EXTERNAL_LANGUAGE varchar(64) YES NULL
  12853. PARAMETER_STYLE varchar(8) NO
  12854. IS_DETERMINISTIC varchar(3) NO
  12855. SQL_DATA_ACCESS varchar(64) NO
  12856. SQL_PATH varchar(64) YES NULL
  12857. SECURITY_TYPE varchar(7) NO
  12858. CREATED datetime NO 0000-00-00 00:00:00
  12859. LAST_ALTERED datetime NO 0000-00-00 00:00:00
  12860. SQL_MODE longtext NO
  12861. ROUTINE_COMMENT varchar(64) NO
  12862. DEFINER varchar(77) NO
  12863. SHOW CREATE TABLE routines;
  12864. Table Create Table
  12865. ROUTINES CREATE TEMPORARY TABLE `ROUTINES` (
  12866. `SPECIFIC_NAME` varchar(64) NOT NULL DEFAULT '',
  12867. `ROUTINE_CATALOG` varchar(4096) DEFAULT NULL,
  12868. `ROUTINE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  12869. `ROUTINE_NAME` varchar(64) NOT NULL DEFAULT '',
  12870. `ROUTINE_TYPE` varchar(9) NOT NULL DEFAULT '',
  12871. `DTD_IDENTIFIER` varchar(64) DEFAULT NULL,
  12872. `ROUTINE_BODY` varchar(8) NOT NULL DEFAULT '',
  12873. `ROUTINE_DEFINITION` longtext,
  12874. `EXTERNAL_NAME` varchar(64) DEFAULT NULL,
  12875. `EXTERNAL_LANGUAGE` varchar(64) DEFAULT NULL,
  12876. `PARAMETER_STYLE` varchar(8) NOT NULL DEFAULT '',
  12877. `IS_DETERMINISTIC` varchar(3) NOT NULL DEFAULT '',
  12878. `SQL_DATA_ACCESS` varchar(64) NOT NULL DEFAULT '',
  12879. `SQL_PATH` varchar(64) DEFAULT NULL,
  12880. `SECURITY_TYPE` varchar(7) NOT NULL DEFAULT '',
  12881. `CREATED` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  12882. `LAST_ALTERED` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  12883. `SQL_MODE` longtext NOT NULL,
  12884. `ROUTINE_COMMENT` varchar(64) NOT NULL DEFAULT '',
  12885. `DEFINER` varchar(77) NOT NULL DEFAULT ''
  12886. ) ENGINE=MyISAM DEFAULT CHARSET=utf8
  12887. SELECT COUNT(*) FROM information_schema.columns
  12888. WHERE table_schema = 'information_schema'
  12889. AND table_name = 'routines'
  12890. ORDER BY ordinal_position;
  12891. COUNT(*)
  12892. 20
  12893. SELECT * FROM information_schema.columns
  12894. WHERE table_schema = 'information_schema'
  12895. AND table_name = 'routines'
  12896. ORDER BY ordinal_position;
  12897. 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
  12898. NULL information_schema ROUTINES SPECIFIC_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12899. NULL information_schema ROUTINES ROUTINE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  12900. NULL information_schema ROUTINES ROUTINE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12901. NULL information_schema ROUTINES ROUTINE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12902. NULL information_schema ROUTINES ROUTINE_TYPE 5 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  12903. NULL information_schema ROUTINES DTD_IDENTIFIER 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12904. NULL information_schema ROUTINES ROUTINE_BODY 7 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  12905. NULL information_schema ROUTINES ROUTINE_DEFINITION 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  12906. NULL information_schema ROUTINES EXTERNAL_NAME 9 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12907. NULL information_schema ROUTINES EXTERNAL_LANGUAGE 10 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12908. NULL information_schema ROUTINES PARAMETER_STYLE 11 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  12909. NULL information_schema ROUTINES IS_DETERMINISTIC 12 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  12910. NULL information_schema ROUTINES SQL_DATA_ACCESS 13 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12911. NULL information_schema ROUTINES SQL_PATH 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12912. NULL information_schema ROUTINES SECURITY_TYPE 15 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  12913. NULL information_schema ROUTINES CREATED 16 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  12914. NULL information_schema ROUTINES LAST_ALTERED 17 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
  12915. NULL information_schema ROUTINES SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  12916. NULL information_schema ROUTINES ROUTINE_COMMENT 19 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  12917. NULL information_schema ROUTINES DEFINER 20 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  12918. Testcase 3.2.8.2 + 3.2.8.3:
  12919. --------------------------------------------------------------------------------
  12920. DROP DATABASE IF EXISTS db_datadict;
  12921. DROP DATABASE IF EXISTS db_datadict_2;
  12922. CREATE DATABASE db_datadict;
  12923. USE db_datadict;
  12924. CREATE USER 'user_1'@'localhost';
  12925. CREATE USER 'user_2'@'localhost';
  12926. CREATE USER 'user_3'@'localhost';
  12927. CREATE TABLE res_6_408002_1(f1 CHAR(3), f2 TEXT(25), f3 DATE, f4 INT);
  12928. INSERT INTO res_6_408002_1(f1, f2, f3, f4)
  12929. VALUES('abc', 'xyz', '1989-11-09', 0815);
  12930. DROP PROCEDURE IF EXISTS sp_6_408002_1;
  12931. CREATE PROCEDURE sp_6_408002_1()
  12932. BEGIN
  12933. SELECT * FROM db_datadict.res_6_408002_1;
  12934. END//
  12935. CREATE DATABASE db_datadict_2;
  12936. USE db_datadict_2;
  12937. CREATE TABLE res_6_408002_2(f1 CHAR(3), f2 TEXT(25), f3 DATE, f4 INT);
  12938. INSERT INTO res_6_408002_2(f1, f2, f3, f4)
  12939. VALUES('abc', 'xyz', '1990-10-03', 4711);
  12940. DROP PROCEDURE IF EXISTS sp_6_408002_2;
  12941. CREATE PROCEDURE sp_6_408002_2()
  12942. BEGIN
  12943. SELECT * FROM db_datadict_2.res_6_408002_2;
  12944. END//
  12945. GRANT SELECT ON db_datadict_2.* TO 'user_1'@'localhost';
  12946. GRANT EXECUTE ON db_datadict_2.* TO 'user_1'@'localhost';
  12947. GRANT EXECUTE ON db_datadict.* TO 'user_1'@'localhost';
  12948. GRANT SELECT ON db_datadict.* TO 'user_2'@'localhost';
  12949. GRANT EXECUTE ON PROCEDURE db_datadict_2.sp_6_408002_2 TO 'user_2'@'localhost';
  12950. GRANT EXECUTE ON db_datadict_2.* TO 'user_2'@'localhost';
  12951. FLUSH PRIVILEGES;
  12952. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  12953. SELECT * FROM information_schema.routines;
  12954. 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
  12955. 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
  12956. 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
  12957. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  12958. SELECT * FROM information_schema.routines;
  12959. 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
  12960. 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
  12961. connect(localhost,user_3,,test,MYSQL_PORT,MYSQL_SOCK);
  12962. SELECT * FROM information_schema.routines;
  12963. 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
  12964. root@localhost db_datadict_2
  12965. DROP USER 'user_1'@'localhost';
  12966. DROP USER 'user_2'@'localhost';
  12967. DROP USER 'user_3'@'localhost';
  12968. use db_datadict;
  12969. DROP TABLE res_6_408002_1;
  12970. DROP PROCEDURE sp_6_408002_1;
  12971. USE db_datadict_2;
  12972. DROP TABLE res_6_408002_2;
  12973. DROP PROCEDURE sp_6_408002_2;
  12974. USE test;
  12975. DROP DATABASE db_datadict;
  12976. DROP DATABASE db_datadict_2;
  12977. Testcase 3.2.8.4:
  12978. --------------------------------------------------------------------------------
  12979. DROP DATABASE IF EXISTS db_datadict;
  12980. CREATE DATABASE db_datadict;
  12981. USE db_datadict;
  12982. create table res_6_408004_1(f1 longtext , f2 mediumint , f3 longblob , f4 real , f5 year);
  12983. insert into res_6_408004_1 values ('abc', 98765 , 99999999 , 98765, 10);
  12984. drop procedure if exists sp_6_408004;
  12985. create table res_6_408004_2(f1 longtext , f2 mediumint , f3 longblob , f4 real , f5 year);
  12986. insert into res_6_408004_2 values ('abc', 98765 , 99999999 , 98765, 10);
  12987. Checking the max. possible length of (currently) 4 GByte is not possible in this environment here.
  12988. --------------------------------------------------------------------------------------------------
  12989. create procedure sp_6_408004 ()
  12990. begin
  12991. declare done integer default 0;
  12992. declare variable_number_1 longtext;
  12993. declare variable_number_2 mediumint;
  12994. declare variable_number_3 longblob;
  12995. declare variable_number_4 real;
  12996. declare variable_number_5 year;
  12997. declare cursor_number_1 cursor for select * from res_6_408004_1 limit 0, 10;
  12998. declare cursor_number_2 cursor for select * from res_6_408004_1 limit 0, 10;
  12999. declare cursor_number_3 cursor for select * from res_6_408004_1 limit 0, 10;
  13000. declare cursor_number_4 cursor for select * from res_6_408004_1 limit 0, 10;
  13001. declare cursor_number_5 cursor for select * from res_6_408004_1 limit 0, 10;
  13002. declare continue handler for sqlstate '02000' set done = 1;
  13003. begin
  13004. open cursor_number_1;
  13005. while done <> 1 do
  13006. fetch cursor_number_1 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13007. if done <> 0 then
  13008. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3,
  13009. variable_number_4, variable_number_5);
  13010. end if;
  13011. end while;
  13012. begin
  13013. begin
  13014. set done = 0;
  13015. open cursor_number_2;
  13016. while done <> 1 do
  13017. fetch cursor_number_2 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. set done = 0;
  13024. open cursor_number_3;
  13025. while done <> 1 do
  13026. fetch cursor_number_3 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13027. if done <> 0 then
  13028. insert into res_6_408004_2 values(variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13029. end if;
  13030. end while;
  13031. end;
  13032. end;
  13033. begin
  13034. set done = 0;
  13035. open cursor_number_4;
  13036. while done <> 1 do
  13037. fetch cursor_number_4 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13038. if done <> 0 then
  13039. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13040. end if;
  13041. end while;
  13042. end;
  13043. begin
  13044. set @a='test row';
  13045. select @a;
  13046. select @a;
  13047. select @a;
  13048. end;
  13049. begin
  13050. set done = 0;
  13051. open cursor_number_5;
  13052. while done <> 1 do
  13053. fetch cursor_number_5 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13054. if done <> 0 then
  13055. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13056. end if;
  13057. end while;
  13058. end;
  13059. begin
  13060. set @a='test row';
  13061. select @a;
  13062. select @a;
  13063. select @a;
  13064. end;
  13065. end//
  13066. call sp_6_408004 ();
  13067. @a
  13068. test row
  13069. @a
  13070. test row
  13071. @a
  13072. test row
  13073. @a
  13074. test row
  13075. @a
  13076. test row
  13077. @a
  13078. test row
  13079. select * from res_6_408004_2;
  13080. f1 f2 f3 f4 f5
  13081. abc 98765 99999999 98765 2010
  13082. abc 98765 99999999 98765 2010
  13083. abc 98765 99999999 98765 2010
  13084. abc 98765 99999999 98765 2010
  13085. abc 98765 99999999 98765 2010
  13086. abc 98765 99999999 98765 2010
  13087. SELECT *, LENGTH(routine_definition)
  13088. FROM information_schema.routines
  13089. WHERE routine_schema = 'db_datadict';
  13090. SPECIFIC_NAME sp_6_408004
  13091. ROUTINE_CATALOG NULL
  13092. ROUTINE_SCHEMA db_datadict
  13093. ROUTINE_NAME sp_6_408004
  13094. ROUTINE_TYPE PROCEDURE
  13095. DTD_IDENTIFIER NULL
  13096. ROUTINE_BODY SQL
  13097. ROUTINE_DEFINITION begin
  13098. declare done integer default 0;
  13099. declare variable_number_1 longtext;
  13100. declare variable_number_2 mediumint;
  13101. declare variable_number_3 longblob;
  13102. declare variable_number_4 real;
  13103. declare variable_number_5 year;
  13104. declare cursor_number_1 cursor for select * from res_6_408004_1 limit 0, 10;
  13105. declare cursor_number_2 cursor for select * from res_6_408004_1 limit 0, 10;
  13106. declare cursor_number_3 cursor for select * from res_6_408004_1 limit 0, 10;
  13107. declare cursor_number_4 cursor for select * from res_6_408004_1 limit 0, 10;
  13108. declare cursor_number_5 cursor for select * from res_6_408004_1 limit 0, 10;
  13109. declare continue handler for sqlstate '02000' set done = 1;
  13110. begin
  13111. open cursor_number_1;
  13112. while done <> 1 do
  13113. fetch cursor_number_1 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13114. if done <> 0 then
  13115. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3,
  13116. variable_number_4, variable_number_5);
  13117. end if;
  13118. end while;
  13119. begin
  13120. begin
  13121. set done = 0;
  13122. open cursor_number_2;
  13123. while done <> 1 do
  13124. fetch cursor_number_2 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13125. if done <> 0 then
  13126. insert into res_6_408004_2 values(variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13127. end if;
  13128. end while;
  13129. end;
  13130. set done = 0;
  13131. open cursor_number_3;
  13132. while done <> 1 do
  13133. fetch cursor_number_3 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13134. if done <> 0 then
  13135. insert into res_6_408004_2 values(variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13136. end if;
  13137. end while;
  13138. end;
  13139. end;
  13140. begin
  13141. set done = 0;
  13142. open cursor_number_4;
  13143. while done <> 1 do
  13144. fetch cursor_number_4 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13145. if done <> 0 then
  13146. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13147. end if;
  13148. end while;
  13149. end;
  13150. begin
  13151. set @a='test row';
  13152. select @a;
  13153. select @a;
  13154. select @a;
  13155. end;
  13156. begin
  13157. set done = 0;
  13158. open cursor_number_5;
  13159. while done <> 1 do
  13160. fetch cursor_number_5 into variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5;
  13161. if done <> 0 then
  13162. insert into res_6_408004_2 values (variable_number_1, variable_number_2, variable_number_3, variable_number_4, variable_number_5);
  13163. end if;
  13164. end while;
  13165. end;
  13166. begin
  13167. set @a='test row';
  13168. select @a;
  13169. select @a;
  13170. select @a;
  13171. end;
  13172. end
  13173. EXTERNAL_NAME NULL
  13174. EXTERNAL_LANGUAGE NULL
  13175. PARAMETER_STYLE SQL
  13176. IS_DETERMINISTIC NO
  13177. SQL_DATA_ACCESS CONTAINS SQL
  13178. SQL_PATH NULL
  13179. SECURITY_TYPE DEFINER
  13180. CREATED YYYY-MM-DD hh:mm:ss
  13181. LAST_ALTERED YYYY-MM-DD hh:mm:ss
  13182. SQL_MODE
  13183. ROUTINE_COMMENT
  13184. DEFINER root@localhost
  13185. LENGTH(routine_definition) 2549
  13186. use db_datadict;
  13187. drop procedure sp_6_408004;
  13188. drop table res_6_408004_1;
  13189. drop table res_6_408004_2;
  13190. use test;
  13191. drop database db_datadict;
  13192. Testcase 3.2.9.1:
  13193. --------------------------------------------------------------------------------
  13194. USE information_schema;
  13195. DESC schemata;
  13196. Field Type Null Key Default Extra
  13197. CATALOG_NAME varchar(4096) YES NULL
  13198. SCHEMA_NAME varchar(64) NO
  13199. DEFAULT_CHARACTER_SET_NAME varchar(64) NO
  13200. DEFAULT_COLLATION_NAME varchar(64) NO
  13201. SQL_PATH varchar(4096) YES NULL
  13202. SHOW CREATE TABLE schemata;
  13203. Table Create Table
  13204. SCHEMATA CREATE TEMPORARY TABLE `SCHEMATA` (
  13205. `CATALOG_NAME` varchar(4096) DEFAULT NULL,
  13206. `SCHEMA_NAME` varchar(64) NOT NULL DEFAULT '',
  13207. `DEFAULT_CHARACTER_SET_NAME` varchar(64) NOT NULL DEFAULT '',
  13208. `DEFAULT_COLLATION_NAME` varchar(64) NOT NULL DEFAULT '',
  13209. `SQL_PATH` varchar(4096) DEFAULT NULL
  13210. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13211. SELECT COUNT(*) FROM information_schema.columns
  13212. WHERE table_schema = 'information_schema'
  13213. AND table_name = 'schemata'
  13214. ORDER BY ordinal_position;
  13215. COUNT(*)
  13216. 5
  13217. SELECT * FROM information_schema.columns
  13218. WHERE table_schema = 'information_schema'
  13219. AND table_name = 'schemata'
  13220. ORDER BY ordinal_position;
  13221. 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
  13222. NULL information_schema SCHEMATA CATALOG_NAME 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13223. NULL information_schema SCHEMATA SCHEMA_NAME 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13224. NULL information_schema SCHEMATA DEFAULT_CHARACTER_SET_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13225. NULL information_schema SCHEMATA DEFAULT_COLLATION_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13226. NULL information_schema SCHEMATA SQL_PATH 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13227. Testcase 3.2.9.2 + 3.2.9.3:
  13228. --------------------------------------------------------------------------------
  13229. CREATE USER 'user_1'@'localhost';
  13230. CREATE USER 'user_2'@'localhost';
  13231. CREATE USER 'user_3'@'localhost';
  13232. DROP DATABASE IF EXISTS db_datadict_1;
  13233. DROP DATABASE IF EXISTS db_datadict_2;
  13234. CREATE DATABASE db_datadict_1;
  13235. CREATE DATABASE db_datadict_2;
  13236. GRANT SELECT ON db_datadict_1.* to 'user_1'@'localhost';
  13237. GRANT SELECT ON db_datadict_2.* to 'user_2'@'localhost';
  13238. FLUSH PRIVILEGES;
  13239. connect(localhost,user_1,,db_datadict_1,MYSQL_PORT,MYSQL_SOCK);
  13240. SELECT COUNT(*) FROM information_schema.schemata;
  13241. COUNT(*)
  13242. 3
  13243. SELECT * FROM information_schema.schemata;
  13244. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  13245. NULL information_schema utf8 utf8_general_ci NULL
  13246. NULL db_datadict_1 latin1 latin1_swedish_ci NULL
  13247. NULL test latin1 latin1_swedish_ci NULL
  13248. connect(localhost,user_2,,db_datadict_2,MYSQL_PORT,MYSQL_SOCK);
  13249. SELECT COUNT(*) FROM information_schema.schemata;
  13250. COUNT(*)
  13251. 3
  13252. SELECT * FROM information_schema.schemata;
  13253. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  13254. NULL information_schema utf8 utf8_general_ci NULL
  13255. NULL db_datadict_2 latin1 latin1_swedish_ci NULL
  13256. NULL test latin1 latin1_swedish_ci NULL
  13257. connect(localhost,user_3,,test,MYSQL_PORT,MYSQL_SOCK);
  13258. SELECT COUNT(*) FROM information_schema.schemata;
  13259. COUNT(*)
  13260. 2
  13261. SELECT * FROM information_schema.schemata;
  13262. CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
  13263. NULL information_schema utf8 utf8_general_ci NULL
  13264. NULL test latin1 latin1_swedish_ci NULL
  13265. root@localhost information_schema
  13266. DROP USER 'user_1'@'localhost';
  13267. DROP USER 'user_2'@'localhost';
  13268. DROP USER 'user_3'@'localhost';
  13269. DROP DATABASE db_datadict_1;
  13270. DROP DATABASE db_datadict_2;
  13271. Testcase 3.2.10.1:
  13272. --------------------------------------------------------------------------------
  13273. USE information_schema;
  13274. DESC table_constraints;
  13275. Field Type Null Key Default Extra
  13276. CONSTRAINT_CATALOG varchar(4096) YES NULL
  13277. CONSTRAINT_SCHEMA varchar(64) NO
  13278. CONSTRAINT_NAME varchar(64) NO
  13279. TABLE_SCHEMA varchar(64) NO
  13280. TABLE_NAME varchar(64) NO
  13281. CONSTRAINT_TYPE varchar(64) NO
  13282. SHOW CREATE TABLE table_constraints;
  13283. Table Create Table
  13284. TABLE_CONSTRAINTS CREATE TEMPORARY TABLE `TABLE_CONSTRAINTS` (
  13285. `CONSTRAINT_CATALOG` varchar(4096) DEFAULT NULL,
  13286. `CONSTRAINT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13287. `CONSTRAINT_NAME` varchar(64) NOT NULL DEFAULT '',
  13288. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13289. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  13290. `CONSTRAINT_TYPE` varchar(64) NOT NULL DEFAULT ''
  13291. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13292. SELECT COUNT(*) FROM information_schema.columns
  13293. WHERE table_schema = 'information_schema'
  13294. AND table_name = 'table_constraints'
  13295. ORDER BY ordinal_position;
  13296. COUNT(*)
  13297. 6
  13298. SELECT * FROM information_schema.columns
  13299. WHERE table_schema = 'information_schema'
  13300. AND table_name = 'table_constraints'
  13301. ORDER BY ordinal_position;
  13302. 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
  13303. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13304. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13305. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13306. NULL information_schema TABLE_CONSTRAINTS TABLE_SCHEMA 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13307. NULL information_schema TABLE_CONSTRAINTS TABLE_NAME 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13308. NULL information_schema TABLE_CONSTRAINTS CONSTRAINT_TYPE 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13309. Testcase 3.2.10.2 + 3.2.10.3:
  13310. --------------------------------------------------------------------------------
  13311. CREATE USER 'user_1'@'localhost';
  13312. CREATE USER 'user_2'@'localhost';
  13313. DROP DATABASE IF EXISTS db_datadict;
  13314. DROP DATABASE IF EXISTS db_datadict_2;
  13315. CREATE DATABASE db_datadict;
  13316. CREATE DATABASE db_datadict_2;
  13317. USE db_datadict;
  13318. CREATE TABLE res_6_401003_1(f1 INT NOT NULL, PRIMARY KEY(f1), f2 INT, INDEX f2_ind(f2));
  13319. USE db_datadict_2;
  13320. CREATE TABLE res_6_401003_2(f1 INT NOT NULL, PRIMARY KEY(f1), f2 INT, INDEX f2_ind(f2));
  13321. GRANT SELECT ON db_datadict.res_6_401003_1 TO 'user_1'@'localhost';
  13322. GRANT SELECT ON db_datadict_2.res_6_401003_2 TO 'user_2'@'localhost';
  13323. FLUSH PRIVILEGES;
  13324. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13325. SELECT * FROM information_schema.table_constraints;
  13326. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  13327. NULL db_datadict PRIMARY db_datadict res_6_401003_1 PRIMARY KEY
  13328. SELECT COUNT(*) FROM information_schema.table_constraints;
  13329. COUNT(*)
  13330. 1
  13331. connect(localhost,user_2,,db_datadict_2,MYSQL_PORT,MYSQL_SOCK);
  13332. SELECT * FROM information_schema.table_constraints;
  13333. CONSTRAINT_CATALOG CONSTRAINT_SCHEMA CONSTRAINT_NAME TABLE_SCHEMA TABLE_NAME CONSTRAINT_TYPE
  13334. NULL db_datadict_2 PRIMARY db_datadict_2 res_6_401003_2 PRIMARY KEY
  13335. SELECT COUNT(*) FROM information_schema.table_constraints;
  13336. COUNT(*)
  13337. 1
  13338. use db_datadict;
  13339. root@localhost db_datadict
  13340. DROP USER 'user_1'@'localhost';
  13341. DROP USER 'user_2'@'localhost';
  13342. DROP TABLE res_6_401003_1;
  13343. USE db_datadict_2;
  13344. DROP TABLE res_6_401003_2;
  13345. USE test;
  13346. DROP DATABASE db_datadict;
  13347. DROP DATABASE db_datadict_2;
  13348. Testcase 3.2.11.1:
  13349. --------------------------------------------------------------------------------
  13350. USE information_schema;
  13351. DESC table_privileges;
  13352. Field Type Null Key Default Extra
  13353. GRANTEE varchar(81) NO
  13354. TABLE_CATALOG varchar(4096) YES NULL
  13355. TABLE_SCHEMA varchar(64) NO
  13356. TABLE_NAME varchar(64) NO
  13357. PRIVILEGE_TYPE varchar(64) NO
  13358. IS_GRANTABLE varchar(3) NO
  13359. SHOW CREATE TABLE table_privileges;
  13360. Table Create Table
  13361. TABLE_PRIVILEGES CREATE TEMPORARY TABLE `TABLE_PRIVILEGES` (
  13362. `GRANTEE` varchar(81) NOT NULL DEFAULT '',
  13363. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  13364. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13365. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  13366. `PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
  13367. `IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''
  13368. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13369. SELECT COUNT(*) FROM information_schema.columns
  13370. WHERE table_schema = 'information_schema'
  13371. AND table_name = 'table_privileges'
  13372. ORDER BY ordinal_position;
  13373. COUNT(*)
  13374. 6
  13375. SELECT * FROM information_schema.columns
  13376. WHERE table_schema = 'information_schema'
  13377. AND table_name = 'table_privileges'
  13378. ORDER BY ordinal_position;
  13379. 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
  13380. NULL information_schema TABLE_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  13381. NULL information_schema TABLE_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13382. NULL information_schema TABLE_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13383. NULL information_schema TABLE_PRIVILEGES TABLE_NAME 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13384. NULL information_schema TABLE_PRIVILEGES PRIVILEGE_TYPE 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13385. NULL information_schema TABLE_PRIVILEGES IS_GRANTABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  13386. Testcase 3.2.11.2 + 3.2.11.3 + 3.2.11.4:
  13387. --------------------------------------------------------------------------------
  13388. DROP DATABASE IF EXISTS db_datadict;
  13389. create database db_datadict;
  13390. CREATE USER 'user_1'@'localhost';
  13391. GRANT CREATE, SELECT ON db_datadict.* TO 'user_1'@'localhost' WITH GRANT OPTION;
  13392. CREATE USER 'user_2'@'localhost';
  13393. CREATE USER 'user_3'@'localhost';
  13394. use db_datadict;
  13395. create table tb1(f1 int, f2 int, f3 int);
  13396. grant select on db_datadict.tb1 to 'user_1'@'localhost';
  13397. GRANT ALL on db_datadict.tb1 to 'user_2'@'localhost' WITH GRANT OPTION;
  13398. FLUSH PRIVILEGES;
  13399. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13400. CREATE TABLE tb3 (f1 TEXT);
  13401. GRANT SELECT ON db_datadict.tb3 to 'user_3'@'localhost';
  13402. SELECT * FROM information_schema.table_privileges
  13403. WHERE table_name LIKE 'tb%';
  13404. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  13405. 'user_1'@'localhost' NULL db_datadict tb1 SELECT NO
  13406. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13407. SELECT * FROM information_schema.table_privileges;
  13408. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  13409. 'user_2'@'localhost' NULL db_datadict tb1 SELECT YES
  13410. 'user_2'@'localhost' NULL db_datadict tb1 INSERT YES
  13411. 'user_2'@'localhost' NULL db_datadict tb1 UPDATE YES
  13412. 'user_2'@'localhost' NULL db_datadict tb1 DELETE YES
  13413. 'user_2'@'localhost' NULL db_datadict tb1 CREATE YES
  13414. 'user_2'@'localhost' NULL db_datadict tb1 DROP YES
  13415. 'user_2'@'localhost' NULL db_datadict tb1 REFERENCES YES
  13416. 'user_2'@'localhost' NULL db_datadict tb1 INDEX YES
  13417. 'user_2'@'localhost' NULL db_datadict tb1 ALTER YES
  13418. 'user_2'@'localhost' NULL db_datadict tb1 CREATE VIEW YES
  13419. 'user_2'@'localhost' NULL db_datadict tb1 SHOW VIEW YES
  13420. 'user_2'@'localhost' NULL db_datadict tb1 TRIGGER YES
  13421. SELECT USER(), COUNT(*)
  13422. FROM information_schema.table_privileges
  13423. WHERE grantee = USER();
  13424. USER() COUNT(*)
  13425. user_2@localhost 0
  13426. SELECT USER(), COUNT(*)
  13427. FROM information_schema.table_privileges
  13428. WHERE grantee = "'user_2'@'localhost'";
  13429. USER() COUNT(*)
  13430. user_2@localhost 12
  13431. connect(localhost,user_3,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13432. SELECT * FROM information_schema.table_privileges;
  13433. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  13434. 'user_3'@'localhost' NULL db_datadict tb3 SELECT NO
  13435. root@localhost db_datadict
  13436. SELECT * FROM information_schema.table_privileges;
  13437. GRANTEE TABLE_CATALOG TABLE_SCHEMA TABLE_NAME PRIVILEGE_TYPE IS_GRANTABLE
  13438. 'user_2'@'localhost' NULL db_datadict tb1 SELECT YES
  13439. 'user_2'@'localhost' NULL db_datadict tb1 INSERT YES
  13440. 'user_2'@'localhost' NULL db_datadict tb1 UPDATE YES
  13441. 'user_2'@'localhost' NULL db_datadict tb1 DELETE YES
  13442. 'user_2'@'localhost' NULL db_datadict tb1 CREATE YES
  13443. 'user_2'@'localhost' NULL db_datadict tb1 DROP YES
  13444. 'user_2'@'localhost' NULL db_datadict tb1 REFERENCES YES
  13445. 'user_2'@'localhost' NULL db_datadict tb1 INDEX YES
  13446. 'user_2'@'localhost' NULL db_datadict tb1 ALTER YES
  13447. 'user_2'@'localhost' NULL db_datadict tb1 CREATE VIEW YES
  13448. 'user_2'@'localhost' NULL db_datadict tb1 SHOW VIEW YES
  13449. 'user_2'@'localhost' NULL db_datadict tb1 TRIGGER YES
  13450. 'user_1'@'localhost' NULL db_datadict tb1 SELECT NO
  13451. 'user_3'@'localhost' NULL db_datadict tb3 SELECT NO
  13452. root@localhost db_datadict
  13453. DROP USER 'user_1'@'localhost';
  13454. DROP USER 'user_2'@'localhost';
  13455. DROP USER 'user_3'@'localhost';
  13456. drop table db_datadict.tb1;
  13457. drop table db_datadict.tb3;
  13458. use test;
  13459. drop database db_datadict;
  13460. Testcase 3.2.12.1:
  13461. --------------------------------------------------------------------------------
  13462. USE information_schema;
  13463. DESC tables;
  13464. Field Type Null Key Default Extra
  13465. TABLE_CATALOG varchar(4096) YES NULL
  13466. TABLE_SCHEMA varchar(64) NO
  13467. TABLE_NAME varchar(64) NO
  13468. TABLE_TYPE varchar(64) NO
  13469. ENGINE varchar(64) YES NULL
  13470. VERSION bigint(21) YES NULL
  13471. ROW_FORMAT varchar(10) YES NULL
  13472. TABLE_ROWS bigint(21) YES NULL
  13473. AVG_ROW_LENGTH bigint(21) YES NULL
  13474. DATA_LENGTH bigint(21) YES NULL
  13475. MAX_DATA_LENGTH bigint(21) YES NULL
  13476. INDEX_LENGTH bigint(21) YES NULL
  13477. DATA_FREE bigint(21) YES NULL
  13478. AUTO_INCREMENT bigint(21) YES NULL
  13479. CREATE_TIME datetime YES NULL
  13480. UPDATE_TIME datetime YES NULL
  13481. CHECK_TIME datetime YES NULL
  13482. TABLE_COLLATION varchar(64) YES NULL
  13483. CHECKSUM bigint(21) YES NULL
  13484. CREATE_OPTIONS varchar(255) YES NULL
  13485. TABLE_COMMENT varchar(80) NO
  13486. SHOW CREATE TABLE tables;
  13487. Table Create Table
  13488. TABLES CREATE TEMPORARY TABLE `TABLES` (
  13489. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  13490. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13491. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  13492. `TABLE_TYPE` varchar(64) NOT NULL DEFAULT '',
  13493. `ENGINE` varchar(64) DEFAULT NULL,
  13494. `VERSION` bigint(21) DEFAULT NULL,
  13495. `ROW_FORMAT` varchar(10) DEFAULT NULL,
  13496. `TABLE_ROWS` bigint(21) DEFAULT NULL,
  13497. `AVG_ROW_LENGTH` bigint(21) DEFAULT NULL,
  13498. `DATA_LENGTH` bigint(21) DEFAULT NULL,
  13499. `MAX_DATA_LENGTH` bigint(21) DEFAULT NULL,
  13500. `INDEX_LENGTH` bigint(21) DEFAULT NULL,
  13501. `DATA_FREE` bigint(21) DEFAULT NULL,
  13502. `AUTO_INCREMENT` bigint(21) DEFAULT NULL,
  13503. `CREATE_TIME` datetime DEFAULT NULL,
  13504. `UPDATE_TIME` datetime DEFAULT NULL,
  13505. `CHECK_TIME` datetime DEFAULT NULL,
  13506. `TABLE_COLLATION` varchar(64) DEFAULT NULL,
  13507. `CHECKSUM` bigint(21) DEFAULT NULL,
  13508. `CREATE_OPTIONS` varchar(255) DEFAULT NULL,
  13509. `TABLE_COMMENT` varchar(80) NOT NULL DEFAULT ''
  13510. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13511. SELECT COUNT(*) FROM information_schema.columns
  13512. WHERE table_schema = 'information_schema'
  13513. AND table_name = 'tables'
  13514. ORDER BY ordinal_position;
  13515. COUNT(*)
  13516. 21
  13517. SELECT * FROM information_schema.columns
  13518. WHERE table_schema = 'information_schema'
  13519. AND table_name = 'tables'
  13520. ORDER BY ordinal_position;
  13521. 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
  13522. NULL information_schema TABLES TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13523. NULL information_schema TABLES TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13524. NULL information_schema TABLES TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13525. NULL information_schema TABLES TABLE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13526. NULL information_schema TABLES ENGINE 5 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13527. NULL information_schema TABLES VERSION 6 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  13528. NULL information_schema TABLES ROW_FORMAT 7 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  13529. NULL information_schema TABLES TABLE_ROWS 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  13530. NULL information_schema TABLES AVG_ROW_LENGTH 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  13531. NULL information_schema TABLES DATA_LENGTH 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  13532. NULL information_schema TABLES MAX_DATA_LENGTH 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  13533. NULL information_schema TABLES INDEX_LENGTH 12 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  13534. NULL information_schema TABLES DATA_FREE 13 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  13535. NULL information_schema TABLES AUTO_INCREMENT 14 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  13536. NULL information_schema TABLES CREATE_TIME 15 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  13537. NULL information_schema TABLES UPDATE_TIME 16 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  13538. NULL information_schema TABLES CHECK_TIME 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  13539. NULL information_schema TABLES TABLE_COLLATION 18 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13540. NULL information_schema TABLES CHECKSUM 19 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  13541. NULL information_schema TABLES CREATE_OPTIONS 20 NULL YES varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
  13542. NULL information_schema TABLES TABLE_COMMENT 21 NO varchar 80 240 NULL NULL utf8 utf8_general_ci varchar(80) select
  13543. Testcase 3.2.12.2 + 3.2.12.3:
  13544. --------------------------------------------------------------------------------
  13545. DROP DATABASE IF EXISTS db_datadict;
  13546. create database db_datadict;
  13547. CREATE USER 'user_1'@'localhost';
  13548. GRANT CREATE, CREATE VIEW, INSERT, SELECT ON db_datadict.*
  13549. TO 'user_1'@'localhost' WITH GRANT OPTION;
  13550. CREATE USER 'user_2'@'localhost';
  13551. CREATE USER 'user_3'@'localhost';
  13552. use db_datadict;
  13553. create table tb1(f1 int, f2 int, f3 int);
  13554. grant select on db_datadict.tb1 to 'user_1'@'localhost';
  13555. GRANT ALL on db_datadict.tb1 to 'user_2'@'localhost' WITH GRANT OPTION;
  13556. FLUSH PRIVILEGES;
  13557. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13558. CREATE TABLE tb2 (f1 DECIMAL);
  13559. CREATE TABLE tb3 (f1 TEXT);
  13560. GRANT SELECT ON db_datadict.tb3 to 'user_3'@'localhost';
  13561. GRANT INSERT ON db_datadict.tb3 to 'user_2'@'localhost';
  13562. CREATE VIEW v3 AS SELECT * FROM tb3;
  13563. GRANT SELECT ON db_datadict.v3 to 'user_3'@'localhost';
  13564. SELECT * FROM information_schema.tables
  13565. WHERE table_schema = 'information_schema';
  13566. 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
  13567. 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#
  13568. 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 NULL utf8_general_ci NULL #CO#
  13569. 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 NULL utf8_general_ci NULL #CO#
  13570. 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 NULL utf8_general_ci NULL #CO#
  13571. 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 NULL utf8_general_ci NULL #CO#
  13572. 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 NULL utf8_general_ci NULL #CO#
  13573. 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 NULL utf8_general_ci NULL #CO#
  13574. 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 NULL utf8_general_ci NULL #CO#
  13575. 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 NULL utf8_general_ci NULL #CO#
  13576. NULL information_schema GLOBAL_VARIABLES SYSTEM VIEW MyISAM 10 Dynamic 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#
  13577. 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 NULL utf8_general_ci NULL #CO#
  13578. 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 NULL utf8_general_ci NULL #CO#
  13579. 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 NULL utf8_general_ci NULL #CO#
  13580. 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 NULL utf8_general_ci NULL #CO#
  13581. 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 NULL utf8_general_ci NULL #CO#
  13582. 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 NULL utf8_general_ci NULL #CO#
  13583. 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 NULL utf8_general_ci NULL #CO#
  13584. 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 NULL utf8_general_ci NULL #CO#
  13585. 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 NULL utf8_general_ci NULL #CO#
  13586. NULL information_schema SESSION_VARIABLES SYSTEM VIEW MyISAM 10 Dynamic 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#
  13587. 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 NULL utf8_general_ci NULL #CO#
  13588. 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 NULL utf8_general_ci NULL #CO#
  13589. 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 NULL utf8_general_ci NULL #CO#
  13590. 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 NULL utf8_general_ci NULL #CO#
  13591. 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 NULL utf8_general_ci NULL #CO#
  13592. 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 NULL utf8_general_ci NULL #CO#
  13593. 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 NULL utf8_general_ci NULL #CO#
  13594. SELECT * FROM information_schema.tables
  13595. WHERE NOT( table_schema = 'information_schema');
  13596. 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
  13597. 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 NULL latin1_swedish_ci NULL
  13598. 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 NULL latin1_swedish_ci NULL
  13599. 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 NULL latin1_swedish_ci NULL
  13600. 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 NULL NULL NULL NULL VIEW
  13601. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13602. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13603. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13604. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13605. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13606. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13607. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13608. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13609. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13610. 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 NULL latin1_swedish_ci NULL
  13611. 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 NULL latin1_swedish_ci NULL
  13612. 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 NULL latin1_swedish_ci NULL
  13613. 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 NULL latin1_swedish_ci NULL
  13614. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13615. SELECT * FROM information_schema.tables
  13616. WHERE table_schema = 'information_schema';
  13617. 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
  13618. 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#
  13619. 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 NULL utf8_general_ci NULL #CO#
  13620. 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 NULL utf8_general_ci NULL #CO#
  13621. 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 NULL utf8_general_ci NULL #CO#
  13622. 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 NULL utf8_general_ci NULL #CO#
  13623. 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 NULL utf8_general_ci NULL #CO#
  13624. 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 NULL utf8_general_ci NULL #CO#
  13625. 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 NULL utf8_general_ci NULL #CO#
  13626. 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 NULL utf8_general_ci NULL #CO#
  13627. NULL information_schema GLOBAL_VARIABLES SYSTEM VIEW MyISAM 10 Dynamic 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#
  13628. 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 NULL utf8_general_ci NULL #CO#
  13629. 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 NULL utf8_general_ci NULL #CO#
  13630. 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 NULL utf8_general_ci NULL #CO#
  13631. 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 NULL utf8_general_ci NULL #CO#
  13632. 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 NULL utf8_general_ci NULL #CO#
  13633. 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 NULL utf8_general_ci NULL #CO#
  13634. 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 NULL utf8_general_ci NULL #CO#
  13635. 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 NULL utf8_general_ci NULL #CO#
  13636. 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 NULL utf8_general_ci NULL #CO#
  13637. NULL information_schema SESSION_VARIABLES SYSTEM VIEW MyISAM 10 Dynamic 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#
  13638. 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 NULL utf8_general_ci NULL #CO#
  13639. 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 NULL utf8_general_ci NULL #CO#
  13640. 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 NULL utf8_general_ci NULL #CO#
  13641. 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 NULL utf8_general_ci NULL #CO#
  13642. 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 NULL utf8_general_ci NULL #CO#
  13643. 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 NULL utf8_general_ci NULL #CO#
  13644. 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 NULL utf8_general_ci NULL #CO#
  13645. SELECT * FROM information_schema.tables
  13646. WHERE NOT( table_schema = 'information_schema');
  13647. 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
  13648. 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 NULL latin1_swedish_ci NULL
  13649. 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 NULL latin1_swedish_ci NULL
  13650. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13651. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13652. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13653. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13654. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13655. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13656. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13657. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13658. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13659. 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 NULL latin1_swedish_ci NULL
  13660. 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 NULL latin1_swedish_ci NULL
  13661. 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 NULL latin1_swedish_ci NULL
  13662. 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 NULL latin1_swedish_ci NULL
  13663. connect(localhost,user_3,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  13664. SELECT * FROM information_schema.tables
  13665. WHERE table_schema = 'information_schema';
  13666. 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
  13667. 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#
  13668. 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 NULL utf8_general_ci NULL #CO#
  13669. 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 NULL utf8_general_ci NULL #CO#
  13670. 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 NULL utf8_general_ci NULL #CO#
  13671. 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 NULL utf8_general_ci NULL #CO#
  13672. 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 NULL utf8_general_ci NULL #CO#
  13673. 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 NULL utf8_general_ci NULL #CO#
  13674. 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 NULL utf8_general_ci NULL #CO#
  13675. 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 NULL utf8_general_ci NULL #CO#
  13676. NULL information_schema GLOBAL_VARIABLES SYSTEM VIEW MyISAM 10 Dynamic 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#
  13677. 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 NULL utf8_general_ci NULL #CO#
  13678. 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 NULL utf8_general_ci NULL #CO#
  13679. 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 NULL utf8_general_ci NULL #CO#
  13680. 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 NULL utf8_general_ci NULL #CO#
  13681. 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 NULL utf8_general_ci NULL #CO#
  13682. 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 NULL utf8_general_ci NULL #CO#
  13683. 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 NULL utf8_general_ci NULL #CO#
  13684. 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 NULL utf8_general_ci NULL #CO#
  13685. 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 NULL utf8_general_ci NULL #CO#
  13686. NULL information_schema SESSION_VARIABLES SYSTEM VIEW MyISAM 10 Dynamic 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#
  13687. 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 NULL utf8_general_ci NULL #CO#
  13688. 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 NULL utf8_general_ci NULL #CO#
  13689. 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 NULL utf8_general_ci NULL #CO#
  13690. 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 NULL utf8_general_ci NULL #CO#
  13691. 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 NULL utf8_general_ci NULL #CO#
  13692. 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 NULL utf8_general_ci NULL #CO#
  13693. 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 NULL utf8_general_ci NULL #CO#
  13694. SELECT * FROM information_schema.tables
  13695. WHERE NOT( table_schema = 'information_schema');
  13696. 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
  13697. 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 NULL latin1_swedish_ci NULL
  13698. 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 NULL NULL NULL NULL VIEW
  13699. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13700. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13701. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13702. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13703. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13704. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13705. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13706. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13707. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13708. 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 NULL latin1_swedish_ci NULL
  13709. 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 NULL latin1_swedish_ci NULL
  13710. 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 NULL latin1_swedish_ci NULL
  13711. 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 NULL latin1_swedish_ci NULL
  13712. root@localhost db_datadict
  13713. SELECT * FROM information_schema.tables
  13714. WHERE table_schema = 'information_schema';
  13715. 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
  13716. 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#
  13717. 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 NULL utf8_general_ci NULL #CO#
  13718. 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 NULL utf8_general_ci NULL #CO#
  13719. 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 NULL utf8_general_ci NULL #CO#
  13720. 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 NULL utf8_general_ci NULL #CO#
  13721. 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 NULL utf8_general_ci NULL #CO#
  13722. 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 NULL utf8_general_ci NULL #CO#
  13723. 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 NULL utf8_general_ci NULL #CO#
  13724. 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 NULL utf8_general_ci NULL #CO#
  13725. NULL information_schema GLOBAL_VARIABLES SYSTEM VIEW MyISAM 10 Dynamic 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#
  13726. 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 NULL utf8_general_ci NULL #CO#
  13727. 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 NULL utf8_general_ci NULL #CO#
  13728. 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 NULL utf8_general_ci NULL #CO#
  13729. 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 NULL utf8_general_ci NULL #CO#
  13730. 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 NULL utf8_general_ci NULL #CO#
  13731. 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 NULL utf8_general_ci NULL #CO#
  13732. 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 NULL utf8_general_ci NULL #CO#
  13733. 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 NULL utf8_general_ci NULL #CO#
  13734. 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 NULL utf8_general_ci NULL #CO#
  13735. NULL information_schema SESSION_VARIABLES SYSTEM VIEW MyISAM 10 Dynamic 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#
  13736. 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 NULL utf8_general_ci NULL #CO#
  13737. 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 NULL utf8_general_ci NULL #CO#
  13738. 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 NULL utf8_general_ci NULL #CO#
  13739. 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 NULL utf8_general_ci NULL #CO#
  13740. 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 NULL utf8_general_ci NULL #CO#
  13741. 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 NULL utf8_general_ci NULL #CO#
  13742. 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 NULL utf8_general_ci NULL #CO#
  13743. SELECT * FROM information_schema.tables
  13744. WHERE NOT( table_schema = 'information_schema');
  13745. 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
  13746. 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 NULL latin1_swedish_ci NULL
  13747. 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 NULL latin1_swedish_ci NULL
  13748. 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 NULL latin1_swedish_ci NULL
  13749. 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 NULL NULL NULL NULL VIEW
  13750. NULL mysql user BASE TABLE MyISAM 10 Dynamic 8 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss NULL utf8_bin NULL Users and global privileges
  13751. 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 NULL utf8_bin NULL Column privileges
  13752. 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 NULL utf8_bin NULL Database privileges
  13753. 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 NULL utf8_general_ci NULL Events
  13754. 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 NULL utf8_bin NULL User defined functions
  13755. NULL mysql general_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 NULL utf8_general_ci NULL General log
  13756. NULL mysql help_category BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss NULL utf8_general_ci NULL help categories
  13757. NULL mysql help_keyword BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss NULL utf8_general_ci NULL help keywords
  13758. NULL mysql help_relation BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss NULL utf8_general_ci NULL keyword-topic relation
  13759. NULL mysql help_topic BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss NULL utf8_general_ci NULL help topics
  13760. 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 NULL utf8_bin NULL Host privileges; Merged with database privileges
  13761. NULL mysql ndb_apply_status BASE TABLE NDBCLUSTER 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss NULL latin1_swedish_ci NULL number_of_replicas: 2
  13762. NULL mysql ndb_binlog_index BASE TABLE MyISAM 10 Dynamic 5 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss NULL latin1_swedish_ci NULL
  13763. 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 NULL utf8_bin NULL MySQL plugins
  13764. 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 NULL utf8_general_ci NULL Stored Procedures
  13765. 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 NULL utf8_bin NULL Procedure privileges
  13766. NULL mysql servers BASE TABLE MyISAM 10 Fixed 1 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss NULL utf8_general_ci NULL MySQL Foreign Servers table
  13767. 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 NULL utf8_general_ci NULL Slow log
  13768. 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 NULL utf8_bin NULL Table privileges
  13769. 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 NULL utf8_general_ci NULL Time zones
  13770. 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 NULL utf8_general_ci NULL Leap seconds information for time zones
  13771. 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 NULL utf8_general_ci NULL Time zone names
  13772. 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 NULL utf8_general_ci NULL Time zone transitions
  13773. 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 NULL utf8_general_ci NULL Time zone transition types
  13774. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13775. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13776. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13777. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13778. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13779. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13780. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13781. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13782. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13783. 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 NULL latin1_swedish_ci NULL
  13784. 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 NULL latin1_swedish_ci NULL
  13785. 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 NULL latin1_swedish_ci NULL
  13786. 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 NULL latin1_swedish_ci NULL
  13787. 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 NULL latin1_swedish_ci NULL number_of_replicas: 2
  13788. DROP USER 'user_1'@'localhost';
  13789. DROP USER 'user_2'@'localhost';
  13790. DROP USER 'user_3'@'localhost';
  13791. DROP TABLE db_datadict.tb1;
  13792. DROP TABLE db_datadict.tb3;
  13793. DROP VIEW db_datadict.v3;
  13794. USE test;
  13795. DROP DATABASE db_datadict;
  13796. Testcase 3.2.13.1:
  13797. --------------------------------------------------------------------------------
  13798. USE information_schema;
  13799. DESC views;
  13800. Field Type Null Key Default Extra
  13801. TABLE_CATALOG varchar(4096) YES NULL
  13802. TABLE_SCHEMA varchar(64) NO
  13803. TABLE_NAME varchar(64) NO
  13804. VIEW_DEFINITION longtext NO
  13805. CHECK_OPTION varchar(8) NO
  13806. IS_UPDATABLE varchar(3) NO
  13807. DEFINER varchar(77) NO
  13808. SECURITY_TYPE varchar(7) NO
  13809. SHOW CREATE TABLE views;
  13810. Table Create Table
  13811. VIEWS CREATE TEMPORARY TABLE `VIEWS` (
  13812. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  13813. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13814. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  13815. `VIEW_DEFINITION` longtext NOT NULL,
  13816. `CHECK_OPTION` varchar(8) NOT NULL DEFAULT '',
  13817. `IS_UPDATABLE` varchar(3) NOT NULL DEFAULT '',
  13818. `DEFINER` varchar(77) NOT NULL DEFAULT '',
  13819. `SECURITY_TYPE` varchar(7) NOT NULL DEFAULT ''
  13820. ) ENGINE=MyISAM DEFAULT CHARSET=utf8
  13821. SELECT COUNT(*) FROM information_schema.columns
  13822. WHERE table_schema = 'information_schema'
  13823. AND table_name = 'views'
  13824. ORDER BY ordinal_position;
  13825. COUNT(*)
  13826. 8
  13827. SELECT * FROM information_schema.columns
  13828. WHERE table_schema = 'information_schema'
  13829. AND table_name = 'views'
  13830. ORDER BY ordinal_position;
  13831. 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
  13832. NULL information_schema VIEWS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13833. NULL information_schema VIEWS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13834. NULL information_schema VIEWS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13835. NULL information_schema VIEWS VIEW_DEFINITION 4 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  13836. NULL information_schema VIEWS CHECK_OPTION 5 NO varchar 8 24 NULL NULL utf8 utf8_general_ci varchar(8) select
  13837. NULL information_schema VIEWS IS_UPDATABLE 6 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  13838. NULL information_schema VIEWS DEFINER 7 NO varchar 77 231 NULL NULL utf8 utf8_general_ci varchar(77) select
  13839. NULL information_schema VIEWS SECURITY_TYPE 8 NO varchar 7 21 NULL NULL utf8 utf8_general_ci varchar(7) select
  13840. Testcase 3.2.13.2 + 3.2.13.3:
  13841. --------------------------------------------------------------------------------
  13842. DROP DATABASE IF EXISTS db_datadict;
  13843. CREATE DATABASE db_datadict;
  13844. CREATE USER 'user_1'@'localhost';
  13845. CREATE USER 'user_2'@'localhost';
  13846. CREATE USER 'user_no_views'@'localhost';
  13847. USE db_datadict;
  13848. CREATE TABLE tb_401302(f1 INT, f2 INT, f3 INT);
  13849. CREATE VIEW v_granted_to_1 AS SELECT * FROM tb_401302;
  13850. CREATE VIEW v_granted_glob AS SELECT f2, f3 FROM tb_401302;
  13851. GRANT SELECT ON db_datadict.tb_401302 TO 'user_1'@'localhost';
  13852. GRANT SELECT ON db_datadict.v_granted_to_1 TO 'user_1'@'localhost';
  13853. GRANT SHOW VIEW, CREATE VIEW ON db_datadict.* TO 'user_2'@'localhost';
  13854. FLUSH PRIVILEGES;
  13855. SELECT * FROM information_schema.views;
  13856. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE
  13857. NULL db_datadict v_granted_glob /* ALGORITHM=UNDEFINED */ select `db_datadict`.`tb_401302`.`f2` AS `f2`,`db_datadict`.`tb_401302`.`f3` AS `f3` from `db_datadict`.`tb_401302` NONE YES root@localhost DEFINER
  13858. NULL db_datadict v_granted_to_1 /* ALGORITHM=UNDEFINED */ select `db_datadict`.`tb_401302`.`f1` AS `f1`,`db_datadict`.`tb_401302`.`f2` AS `f2`,`db_datadict`.`tb_401302`.`f3` AS `f3` from `db_datadict`.`tb_401302` NONE YES root@localhost DEFINER
  13859. connect(localhost,user_1,,test,MYSQL_PORT,MYSQL_SOCK);
  13860. SELECT * FROM information_schema.views;
  13861. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE
  13862. NULL db_datadict v_granted_to_1 NONE YES root@localhost DEFINER
  13863. connect(localhost,user_2,,test,MYSQL_PORT,MYSQL_SOCK);
  13864. SELECT * FROM information_schema.views;
  13865. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE
  13866. NULL db_datadict v_granted_glob NONE YES root@localhost DEFINER
  13867. NULL db_datadict v_granted_to_1 NONE YES root@localhost DEFINER
  13868. connect(localhost,user_no_views,,test,MYSQL_PORT,MYSQL_SOCK);
  13869. SELECT * FROM information_schema.views;
  13870. TABLE_CATALOG TABLE_SCHEMA TABLE_NAME VIEW_DEFINITION CHECK_OPTION IS_UPDATABLE DEFINER SECURITY_TYPE
  13871. root@localhost db_datadict
  13872. USE db_datadict;
  13873. DROP USER 'user_1'@'localhost';
  13874. DROP USER 'user_2'@'localhost';
  13875. DROP USER 'user_no_views'@'localhost';
  13876. DROP VIEW v_granted_to_1;
  13877. DROP TABLE tb_401302;
  13878. DROP VIEW v_granted_glob;
  13879. USE test;
  13880. DROP DATABASE db_datadict;
  13881. Testcase 3.2.14.1:
  13882. --------------------------------------------------------------------------------
  13883. USE information_schema;
  13884. DESC statistics;
  13885. Field Type Null Key Default Extra
  13886. TABLE_CATALOG varchar(4096) YES NULL
  13887. TABLE_SCHEMA varchar(64) NO
  13888. TABLE_NAME varchar(64) NO
  13889. NON_UNIQUE bigint(1) NO 0
  13890. INDEX_SCHEMA varchar(64) NO
  13891. INDEX_NAME varchar(64) NO
  13892. SEQ_IN_INDEX bigint(2) NO 0
  13893. COLUMN_NAME varchar(64) NO
  13894. COLLATION varchar(1) YES NULL
  13895. CARDINALITY bigint(21) YES NULL
  13896. SUB_PART bigint(3) YES NULL
  13897. PACKED varchar(10) YES NULL
  13898. NULLABLE varchar(3) NO
  13899. INDEX_TYPE varchar(16) NO
  13900. COMMENT varchar(16) YES NULL
  13901. SHOW CREATE TABLE statistics;
  13902. Table Create Table
  13903. STATISTICS CREATE TEMPORARY TABLE `STATISTICS` (
  13904. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  13905. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13906. `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  13907. `NON_UNIQUE` bigint(1) NOT NULL DEFAULT '0',
  13908. `INDEX_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  13909. `INDEX_NAME` varchar(64) NOT NULL DEFAULT '',
  13910. `SEQ_IN_INDEX` bigint(2) NOT NULL DEFAULT '0',
  13911. `COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
  13912. `COLLATION` varchar(1) DEFAULT NULL,
  13913. `CARDINALITY` bigint(21) DEFAULT NULL,
  13914. `SUB_PART` bigint(3) DEFAULT NULL,
  13915. `PACKED` varchar(10) DEFAULT NULL,
  13916. `NULLABLE` varchar(3) NOT NULL DEFAULT '',
  13917. `INDEX_TYPE` varchar(16) NOT NULL DEFAULT '',
  13918. `COMMENT` varchar(16) DEFAULT NULL
  13919. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  13920. SELECT COUNT(*) FROM information_schema.columns
  13921. WHERE table_schema = 'information_schema'
  13922. AND table_name = 'statistics'
  13923. ORDER BY ordinal_position;
  13924. COUNT(*)
  13925. 15
  13926. SELECT * FROM information_schema.columns
  13927. WHERE table_schema = 'information_schema'
  13928. AND table_name = 'statistics'
  13929. ORDER BY ordinal_position;
  13930. 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
  13931. NULL information_schema STATISTICS TABLE_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  13932. NULL information_schema STATISTICS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13933. NULL information_schema STATISTICS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13934. NULL information_schema STATISTICS NON_UNIQUE 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(1) select
  13935. NULL information_schema STATISTICS INDEX_SCHEMA 5 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13936. NULL information_schema STATISTICS INDEX_NAME 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13937. NULL information_schema STATISTICS SEQ_IN_INDEX 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(2) select
  13938. NULL information_schema STATISTICS COLUMN_NAME 8 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  13939. NULL information_schema STATISTICS COLLATION 9 NULL YES varchar 1 3 NULL NULL utf8 utf8_general_ci varchar(1) select
  13940. NULL information_schema STATISTICS CARDINALITY 10 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) select
  13941. NULL information_schema STATISTICS SUB_PART 11 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(3) select
  13942. NULL information_schema STATISTICS PACKED 12 NULL YES varchar 10 30 NULL NULL utf8 utf8_general_ci varchar(10) select
  13943. NULL information_schema STATISTICS NULLABLE 13 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  13944. NULL information_schema STATISTICS INDEX_TYPE 14 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  13945. NULL information_schema STATISTICS COMMENT 15 NULL YES varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
  13946. Testcase 3.2.14.2 + 3.2.14.3:
  13947. --------------------------------------------------------------------------------
  13948. DROP DATABASE IF EXISTS db_datadict;
  13949. DROP DATABASE IF EXISTS db_datadict_2;
  13950. CREATE DATABASE db_datadict;
  13951. CREATE DATABASE db_datadict_2;
  13952. CREATE USER 'user_1'@'localhost';
  13953. CREATE USER 'user_2'@'localhost';
  13954. USE db_datadict;
  13955. create table tb_6_401402_1(f1 int not null, primary key(f1), f2 int, index f2_ind(f2));
  13956. create table tb_6_401402_2(f1 int not null, primary key(f1), f2 int, index f2_ind(f2));
  13957. grant select on db_datadict.tb_6_401402_1 to 'user_1'@'localhost' WITH GRANT OPTION;
  13958. USE db_datadict_2;
  13959. create table tb_2_1(f1 int not null, primary key(f1), f2 int, index f2_ind(f2));
  13960. create table tb_2_2(f1 int not null, primary key(f1), f2 int, index f2_ind(f2));
  13961. grant select on db_datadict_2.tb_2_1 to 'user_1'@'localhost';
  13962. FLUSH PRIVILEGES;
  13963. connect(localhost,user_1,,test,MYSQL_PORT,MYSQL_SOCK);
  13964. SELECT * FROM information_schema.statistics;
  13965. 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
  13966. NULL db_datadict tb_6_401402_1 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
  13967. NULL db_datadict tb_6_401402_1 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
  13968. NULL db_datadict_2 tb_2_1 0 db_datadict_2 PRIMARY 1 f1 A 0 NULL NULL BTREE
  13969. NULL db_datadict_2 tb_2_1 1 db_datadict_2 f2_ind 1 f2 A NULL NULL NULL YES BTREE
  13970. connect(localhost,user_2,,test,MYSQL_PORT,MYSQL_SOCK);
  13971. SELECT * FROM information_schema.statistics;
  13972. 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
  13973. root@localhost db_datadict_2
  13974. REVOKE SELECT ON db_datadict.tb_6_401402_1 FROM 'user_1'@'localhost';
  13975. SELECT * FROM information_schema.statistics;
  13976. 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
  13977. NULL db_datadict tb_6_401402_1 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
  13978. NULL db_datadict tb_6_401402_1 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
  13979. NULL db_datadict tb_6_401402_2 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
  13980. NULL db_datadict tb_6_401402_2 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
  13981. NULL db_datadict_2 tb_2_1 0 db_datadict_2 PRIMARY 1 f1 A 0 NULL NULL BTREE
  13982. NULL db_datadict_2 tb_2_1 1 db_datadict_2 f2_ind 1 f2 A NULL NULL NULL YES BTREE
  13983. NULL db_datadict_2 tb_2_2 0 db_datadict_2 PRIMARY 1 f1 A 0 NULL NULL BTREE
  13984. NULL db_datadict_2 tb_2_2 1 db_datadict_2 f2_ind 1 f2 A NULL NULL NULL YES BTREE
  13985. NULL mysql user 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  13986. NULL mysql user 0 mysql PRIMARY 2 User A 7 NULL NULL BTREE
  13987. NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  13988. NULL mysql columns_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  13989. NULL mysql columns_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  13990. NULL mysql columns_priv 0 mysql PRIMARY 4 Table_name A NULL NULL NULL BTREE
  13991. NULL mysql columns_priv 0 mysql PRIMARY 5 Column_name A 0 NULL NULL BTREE
  13992. NULL mysql db 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  13993. NULL mysql db 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  13994. NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
  13995. NULL mysql db 1 mysql User 1 User A NULL NULL NULL BTREE
  13996. NULL mysql event 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
  13997. NULL mysql event 0 mysql PRIMARY 2 name A 0 NULL NULL BTREE
  13998. NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
  13999. NULL mysql help_category 0 mysql PRIMARY 1 help_category_id A 0 NULL NULL BTREE
  14000. NULL mysql help_category 0 mysql name 1 name A 0 NULL NULL BTREE
  14001. NULL mysql help_keyword 0 mysql PRIMARY 1 help_keyword_id A 0 NULL NULL BTREE
  14002. NULL mysql help_keyword 0 mysql name 1 name A 0 NULL NULL BTREE
  14003. NULL mysql help_relation 0 mysql PRIMARY 1 help_keyword_id A NULL NULL NULL BTREE
  14004. NULL mysql help_relation 0 mysql PRIMARY 2 help_topic_id A 0 NULL NULL BTREE
  14005. NULL mysql help_topic 0 mysql PRIMARY 1 help_topic_id A 0 NULL NULL BTREE
  14006. NULL mysql help_topic 0 mysql name 1 name A 0 NULL NULL BTREE
  14007. NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  14008. NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
  14009. NULL mysql ndb_apply_status 0 mysql PRIMARY 1 server_id NULL 0 NULL NULL HASH
  14010. NULL mysql ndb_binlog_index 0 mysql PRIMARY 1 epoch A 5 NULL NULL BTREE
  14011. NULL mysql plugin 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
  14012. NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
  14013. NULL mysql proc 0 mysql PRIMARY 2 name A NULL NULL NULL BTREE
  14014. NULL mysql proc 0 mysql PRIMARY 3 type A 0 NULL NULL BTREE
  14015. NULL mysql procs_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  14016. NULL mysql procs_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  14017. NULL mysql procs_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  14018. NULL mysql procs_priv 0 mysql PRIMARY 4 Routine_name A NULL NULL NULL BTREE
  14019. NULL mysql procs_priv 0 mysql PRIMARY 5 Routine_type A 0 NULL NULL BTREE
  14020. NULL mysql procs_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
  14021. NULL mysql servers 0 mysql PRIMARY 1 Server_name A 1 NULL NULL BTREE
  14022. NULL mysql tables_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
  14023. NULL mysql tables_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
  14024. NULL mysql tables_priv 0 mysql PRIMARY 3 User A NULL NULL NULL BTREE
  14025. NULL mysql tables_priv 0 mysql PRIMARY 4 Table_name A 2 NULL NULL BTREE
  14026. NULL mysql tables_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
  14027. NULL mysql time_zone 0 mysql PRIMARY 1 Time_zone_id A 5 NULL NULL BTREE
  14028. NULL mysql time_zone_leap_second 0 mysql PRIMARY 1 Transition_time A 22 NULL NULL BTREE
  14029. NULL mysql time_zone_name 0 mysql PRIMARY 1 Name A 6 NULL NULL BTREE
  14030. NULL mysql time_zone_transition 0 mysql PRIMARY 1 Time_zone_id A NULL NULL NULL BTREE
  14031. NULL mysql time_zone_transition 0 mysql PRIMARY 2 Transition_time A 393 NULL NULL BTREE
  14032. NULL mysql time_zone_transition_type 0 mysql PRIMARY 1 Time_zone_id A NULL NULL NULL BTREE
  14033. NULL mysql time_zone_transition_type 0 mysql PRIMARY 2 Transition_type_id A 31 NULL NULL BTREE
  14034. user_1@localhost test
  14035. SELECT * FROM information_schema.statistics;
  14036. 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
  14037. NULL db_datadict tb_6_401402_1 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
  14038. NULL db_datadict tb_6_401402_1 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
  14039. NULL db_datadict_2 tb_2_1 0 db_datadict_2 PRIMARY 1 f1 A 0 NULL NULL BTREE
  14040. NULL db_datadict_2 tb_2_1 1 db_datadict_2 f2_ind 1 f2 A NULL NULL NULL YES BTREE
  14041. user_2@localhost test
  14042. SELECT * FROM information_schema.statistics;
  14043. 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
  14044. root@localhost db_datadict_2
  14045. USE db_datadict;
  14046. DROP USER 'user_1'@'localhost';
  14047. DROP USER 'user_2'@'localhost';
  14048. DROP TABLE tb_6_401402_1;
  14049. DROP TABLE tb_6_401402_2;
  14050. USE test;
  14051. DROP DATABASE db_datadict;
  14052. Testcase 3.2.15.1:
  14053. --------------------------------------------------------------------------------
  14054. USE information_schema;
  14055. DESC schema_privileges;
  14056. Field Type Null Key Default Extra
  14057. GRANTEE varchar(81) NO
  14058. TABLE_CATALOG varchar(4096) YES NULL
  14059. TABLE_SCHEMA varchar(64) NO
  14060. PRIVILEGE_TYPE varchar(64) NO
  14061. IS_GRANTABLE varchar(3) NO
  14062. SHOW CREATE TABLE schema_privileges;
  14063. Table Create Table
  14064. SCHEMA_PRIVILEGES CREATE TEMPORARY TABLE `SCHEMA_PRIVILEGES` (
  14065. `GRANTEE` varchar(81) NOT NULL DEFAULT '',
  14066. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  14067. `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  14068. `PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
  14069. `IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''
  14070. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  14071. SELECT COUNT(*) FROM information_schema.columns
  14072. WHERE table_schema = 'information_schema'
  14073. AND table_name = 'schema_privileges'
  14074. ORDER BY ordinal_position;
  14075. COUNT(*)
  14076. 5
  14077. SELECT * FROM information_schema.columns
  14078. WHERE table_schema = 'information_schema'
  14079. AND table_name = 'schema_privileges'
  14080. ORDER BY ordinal_position;
  14081. 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
  14082. NULL information_schema SCHEMA_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  14083. NULL information_schema SCHEMA_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  14084. NULL information_schema SCHEMA_PRIVILEGES TABLE_SCHEMA 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14085. NULL information_schema SCHEMA_PRIVILEGES PRIVILEGE_TYPE 4 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14086. NULL information_schema SCHEMA_PRIVILEGES IS_GRANTABLE 5 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  14087. Testcase 3.2.15.2:
  14088. --------------------------------------------------------------------------------
  14089. DROP DATABASE IF EXISTS db_datadict;
  14090. DROP DATABASE IF EXISTS db_datadict_2;
  14091. create database db_datadict;
  14092. create database db_datadict_2;
  14093. CREATE USER 'u_6_401502'@'localhost';
  14094. use db_datadict;
  14095. create table res_6_401502(f1 int, f2 int, f3 int);
  14096. grant insert on db_datadict.* to 'u_6_401502'@'localhost';
  14097. FLUSH PRIVILEGES;
  14098. SELECT * FROM information_schema.schema_privileges;
  14099. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14100. 'u_6_401502'@'localhost' NULL db_datadict INSERT NO
  14101. ''@'%' NULL test SELECT NO
  14102. ''@'%' NULL test INSERT NO
  14103. ''@'%' NULL test UPDATE NO
  14104. ''@'%' NULL test DELETE NO
  14105. ''@'%' NULL test CREATE NO
  14106. ''@'%' NULL test DROP NO
  14107. ''@'%' NULL test REFERENCES NO
  14108. ''@'%' NULL test INDEX NO
  14109. ''@'%' NULL test ALTER NO
  14110. ''@'%' NULL test CREATE TEMPORARY TABLES NO
  14111. ''@'%' NULL test LOCK TABLES NO
  14112. ''@'%' NULL test CREATE VIEW NO
  14113. ''@'%' NULL test SHOW VIEW NO
  14114. ''@'%' NULL test CREATE ROUTINE NO
  14115. ''@'%' NULL test EVENT NO
  14116. ''@'%' NULL test TRIGGER NO
  14117. ''@'%' NULL test\_% SELECT NO
  14118. ''@'%' NULL test\_% INSERT NO
  14119. ''@'%' NULL test\_% UPDATE NO
  14120. ''@'%' NULL test\_% DELETE NO
  14121. ''@'%' NULL test\_% CREATE NO
  14122. ''@'%' NULL test\_% DROP NO
  14123. ''@'%' NULL test\_% REFERENCES NO
  14124. ''@'%' NULL test\_% INDEX NO
  14125. ''@'%' NULL test\_% ALTER NO
  14126. ''@'%' NULL test\_% CREATE TEMPORARY TABLES NO
  14127. ''@'%' NULL test\_% LOCK TABLES NO
  14128. ''@'%' NULL test\_% CREATE VIEW NO
  14129. ''@'%' NULL test\_% SHOW VIEW NO
  14130. ''@'%' NULL test\_% CREATE ROUTINE NO
  14131. ''@'%' NULL test\_% EVENT NO
  14132. ''@'%' NULL test\_% TRIGGER NO
  14133. connect(localhost,u_6_401502,,test,MYSQL_PORT,MYSQL_SOCK);
  14134. SELECT * FROM information_schema.schema_privileges;
  14135. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14136. 'u_6_401502'@'localhost' NULL db_datadict INSERT NO
  14137. use db_datadict;
  14138. root@localhost db_datadict
  14139. DROP USER 'u_6_401502'@'localhost';
  14140. drop table res_6_401502;
  14141. use test;
  14142. drop database db_datadict;
  14143. drop database db_datadict_2;
  14144. Testcase 3.2.15.3 + 3.2.15.4:
  14145. --------------------------------------------------------------------------------
  14146. DROP DATABASE IF EXISTS db_datadict;
  14147. DROP DATABASE IF EXISTS db_datadict_2;
  14148. create database db_datadict;
  14149. create database db_datadict_2;
  14150. CREATE USER 'u_6_401503_1'@'localhost';
  14151. CREATE USER 'u_6_401503_2'@'localhost';
  14152. CREATE USER 'u_6_401503_3'@'localhost';
  14153. use db_datadict;
  14154. create table res_6_401503_1(f1 int, f2 int, f3 int);
  14155. use db_datadict_2;
  14156. create table res_6_401503_2(f1 int, f2 int, f3 int);
  14157. grant update on db_datadict.* to 'u_6_401503_1'@'localhost';
  14158. grant delete on db_datadict_2.* to 'u_6_401503_2'@'localhost';
  14159. FLUSH PRIVILEGES;
  14160. SELECT * FROM information_schema.schema_privileges;
  14161. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14162. 'u_6_401503_1'@'localhost' NULL db_datadict UPDATE NO
  14163. 'u_6_401503_2'@'localhost' NULL db_datadict_2 DELETE NO
  14164. ''@'%' NULL test SELECT NO
  14165. ''@'%' NULL test INSERT NO
  14166. ''@'%' NULL test UPDATE NO
  14167. ''@'%' NULL test DELETE NO
  14168. ''@'%' NULL test CREATE NO
  14169. ''@'%' NULL test DROP NO
  14170. ''@'%' NULL test REFERENCES NO
  14171. ''@'%' NULL test INDEX NO
  14172. ''@'%' NULL test ALTER NO
  14173. ''@'%' NULL test CREATE TEMPORARY TABLES NO
  14174. ''@'%' NULL test LOCK TABLES NO
  14175. ''@'%' NULL test CREATE VIEW NO
  14176. ''@'%' NULL test SHOW VIEW NO
  14177. ''@'%' NULL test CREATE ROUTINE NO
  14178. ''@'%' NULL test EVENT NO
  14179. ''@'%' NULL test TRIGGER NO
  14180. ''@'%' NULL test\_% SELECT NO
  14181. ''@'%' NULL test\_% INSERT NO
  14182. ''@'%' NULL test\_% UPDATE NO
  14183. ''@'%' NULL test\_% DELETE NO
  14184. ''@'%' NULL test\_% CREATE NO
  14185. ''@'%' NULL test\_% DROP NO
  14186. ''@'%' NULL test\_% REFERENCES NO
  14187. ''@'%' NULL test\_% INDEX NO
  14188. ''@'%' NULL test\_% ALTER NO
  14189. ''@'%' NULL test\_% CREATE TEMPORARY TABLES NO
  14190. ''@'%' NULL test\_% LOCK TABLES NO
  14191. ''@'%' NULL test\_% CREATE VIEW NO
  14192. ''@'%' NULL test\_% SHOW VIEW NO
  14193. ''@'%' NULL test\_% CREATE ROUTINE NO
  14194. ''@'%' NULL test\_% EVENT NO
  14195. ''@'%' NULL test\_% TRIGGER NO
  14196. connect(localhost,u_6_401503_1,,test,MYSQL_PORT,MYSQL_SOCK);
  14197. SELECT * FROM information_schema.schema_privileges;
  14198. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14199. 'u_6_401503_1'@'localhost' NULL db_datadict UPDATE NO
  14200. connect(localhost,u_6_401503_2,,test,MYSQL_PORT,MYSQL_SOCK);
  14201. SELECT * FROM information_schema.schema_privileges;
  14202. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14203. 'u_6_401503_2'@'localhost' NULL db_datadict_2 DELETE NO
  14204. connect(localhost,u_6_401503_3,,test,MYSQL_PORT,MYSQL_SOCK);
  14205. SELECT * FROM information_schema.schema_privileges;
  14206. GRANTEE TABLE_CATALOG TABLE_SCHEMA PRIVILEGE_TYPE IS_GRANTABLE
  14207. root@localhost db_datadict_2
  14208. use db_datadict;
  14209. DROP USER 'u_6_401503_1'@'localhost';
  14210. DROP USER 'u_6_401503_2'@'localhost';
  14211. DROP USER 'u_6_401503_3'@'localhost';
  14212. drop table res_6_401503_1;
  14213. use db_datadict_2;
  14214. drop table res_6_401503_2;
  14215. use test;
  14216. drop database db_datadict;
  14217. drop database db_datadict_2;
  14218. Testcase 3.2.16.1:
  14219. --------------------------------------------------------------------------------
  14220. USE information_schema;
  14221. DESC user_privileges;
  14222. Field Type Null Key Default Extra
  14223. GRANTEE varchar(81) NO
  14224. TABLE_CATALOG varchar(4096) YES NULL
  14225. PRIVILEGE_TYPE varchar(64) NO
  14226. IS_GRANTABLE varchar(3) NO
  14227. SHOW CREATE TABLE user_privileges;
  14228. Table Create Table
  14229. USER_PRIVILEGES CREATE TEMPORARY TABLE `USER_PRIVILEGES` (
  14230. `GRANTEE` varchar(81) NOT NULL DEFAULT '',
  14231. `TABLE_CATALOG` varchar(4096) DEFAULT NULL,
  14232. `PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
  14233. `IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''
  14234. ) ENGINE=MEMORY DEFAULT CHARSET=utf8
  14235. SELECT COUNT(*) FROM information_schema.columns
  14236. WHERE table_schema = 'information_schema'
  14237. AND table_name = 'user_privileges'
  14238. ORDER BY ordinal_position;
  14239. COUNT(*)
  14240. 4
  14241. SELECT * FROM information_schema.columns
  14242. WHERE table_schema = 'information_schema'
  14243. AND table_name = 'user_privileges'
  14244. ORDER BY ordinal_position;
  14245. 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
  14246. NULL information_schema USER_PRIVILEGES GRANTEE 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
  14247. NULL information_schema USER_PRIVILEGES TABLE_CATALOG 2 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  14248. NULL information_schema USER_PRIVILEGES PRIVILEGE_TYPE 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14249. NULL information_schema USER_PRIVILEGES IS_GRANTABLE 4 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  14250. Testcase 3.2.16.2 + 3.2.16.3 + 3.2.16.4:
  14251. --------------------------------------------------------------------------------
  14252. DROP DATABASE IF EXISTS db_datadict;
  14253. CREATE DATABASE db_datadict;
  14254. CREATE USER 'user_1'@'localhost';
  14255. CREATE USER 'user_2'@'localhost';
  14256. CREATE USER 'user_3'@'localhost';
  14257. GRANT SELECT ON db_datadict.* TO 'user_1'@'localhost';
  14258. GRANT SELECT ON mysql.user TO 'user_1'@'localhost';
  14259. GRANT INSERT ON *.* TO 'user_2'@'localhost';
  14260. GRANT UPDATE ON *.* TO 'user_2'@'localhost';
  14261. FLUSH PRIVILEGES;
  14262. FIXME (see Bug 12269) Here we expect more than only <USAGE> for user_1
  14263. ----------------------------------------------------------------------
  14264. SELECT * FROM information_schema.user_privileges
  14265. WHERE grantee LIKE "%user%"
  14266. ORDER BY grantee, table_catalog, privilege_type;
  14267. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14268. 'user_1'@'localhost' NULL USAGE NO
  14269. 'user_2'@'localhost' NULL INSERT NO
  14270. 'user_2'@'localhost' NULL UPDATE NO
  14271. 'user_3'@'localhost' NULL USAGE NO
  14272. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14273. 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
  14274. 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
  14275. 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
  14276. 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
  14277. SHOW GRANTS;
  14278. Grants for root@localhost
  14279. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14280. add GRANT OPTION db_datadict.* to user_1
  14281. ----------------------------------------
  14282. GRANT UPDATE ON db_datadict.* TO 'user_1'@'localhost' WITH GRANT OPTION;
  14283. FIXME (see Bug 12269) Here the <YES> is missing for the GRANT OPTION for user_1
  14284. -------------------------------------------------------------------------------
  14285. SELECT * FROM information_schema.user_privileges
  14286. WHERE grantee LIKE "%user%"
  14287. ORDER BY grantee, table_catalog, privilege_type;
  14288. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14289. 'user_1'@'localhost' NULL USAGE NO
  14290. 'user_2'@'localhost' NULL INSERT NO
  14291. 'user_2'@'localhost' NULL UPDATE NO
  14292. 'user_3'@'localhost' NULL USAGE NO
  14293. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14294. 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
  14295. 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
  14296. 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
  14297. 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
  14298. SHOW GRANTS;
  14299. Grants for root@localhost
  14300. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14301. FLUSH PRIVILEGES;
  14302. connect(localhost,user_1,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  14303. SELECT * FROM information_schema.user_privileges
  14304. WHERE grantee LIKE "%user%"
  14305. ORDER BY grantee, table_catalog, privilege_type;
  14306. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14307. 'user_1'@'localhost' NULL USAGE NO
  14308. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14309. 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
  14310. 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
  14311. 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
  14312. 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
  14313. SHOW GRANTS;
  14314. Grants for user_1@localhost
  14315. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14316. GRANT SELECT, UPDATE ON `db_datadict`.* TO 'user_1'@'localhost' WITH GRANT OPTION
  14317. GRANT SELECT ON `mysql`.`user` TO 'user_1'@'localhost'
  14318. Now add SELECT on *.* to user_1
  14319. -------------------------------
  14320. root@localhost information_schema
  14321. GRANT SELECT ON *.* TO 'user_1'@'localhost';
  14322. Here <SELECT NO> is shown correctly for user_1
  14323. ----------------------------------------------
  14324. SELECT * FROM information_schema.user_privileges
  14325. WHERE grantee LIKE "%user%"
  14326. ORDER BY grantee, table_catalog, privilege_type;
  14327. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14328. 'user_1'@'localhost' NULL SELECT NO
  14329. 'user_2'@'localhost' NULL INSERT NO
  14330. 'user_2'@'localhost' NULL UPDATE NO
  14331. 'user_3'@'localhost' NULL USAGE NO
  14332. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14333. 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
  14334. 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
  14335. 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
  14336. 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
  14337. SHOW GRANTS;
  14338. Grants for root@localhost
  14339. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14340. GRANT SELECT ON *.* TO 'user_1'@'localhost' WITH GRANT OPTION;
  14341. Here <SELECT YES> is shown correctly for user_1
  14342. -----------------------------------------------
  14343. SELECT * FROM information_schema.user_privileges
  14344. WHERE grantee LIKE "%user%"
  14345. ORDER BY grantee, table_catalog, privilege_type;
  14346. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14347. 'user_1'@'localhost' NULL SELECT YES
  14348. 'user_2'@'localhost' NULL INSERT NO
  14349. 'user_2'@'localhost' NULL UPDATE NO
  14350. 'user_3'@'localhost' NULL USAGE NO
  14351. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14352. 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
  14353. 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
  14354. 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
  14355. 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
  14356. SHOW GRANTS;
  14357. Grants for root@localhost
  14358. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14359. FLUSH PRIVILEGES;
  14360. SELECT * FROM information_schema.user_privileges
  14361. WHERE grantee LIKE "%user%"
  14362. ORDER BY grantee, table_catalog, privilege_type;
  14363. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14364. 'user_1'@'localhost' NULL SELECT YES
  14365. 'user_2'@'localhost' NULL INSERT NO
  14366. 'user_2'@'localhost' NULL UPDATE NO
  14367. 'user_3'@'localhost' NULL USAGE NO
  14368. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14369. 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
  14370. 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
  14371. 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
  14372. 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
  14373. SHOW GRANTS;
  14374. Grants for root@localhost
  14375. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14376. user_1@localhost db_datadict
  14377. SELECT * FROM information_schema.user_privileges
  14378. WHERE grantee LIKE "%user%"
  14379. ORDER BY grantee, table_catalog, privilege_type;
  14380. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14381. 'user_1'@'localhost' NULL SELECT YES
  14382. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14383. 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
  14384. 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
  14385. 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
  14386. 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
  14387. SHOW GRANTS;
  14388. Grants for user_1@localhost
  14389. GRANT SELECT ON *.* TO 'user_1'@'localhost' WITH GRANT OPTION
  14390. GRANT SELECT, UPDATE ON `db_datadict`.* TO 'user_1'@'localhost' WITH GRANT OPTION
  14391. GRANT SELECT ON `mysql`.`user` TO 'user_1'@'localhost'
  14392. connect(localhost,user_2,,db_datadict,MYSQL_PORT,MYSQL_SOCK);
  14393. SELECT * FROM information_schema.user_privileges
  14394. WHERE grantee LIKE "%user%"
  14395. ORDER BY grantee, table_catalog, privilege_type;
  14396. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14397. 'user_2'@'localhost' NULL INSERT NO
  14398. 'user_2'@'localhost' NULL UPDATE NO
  14399. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14400. ERROR 42000: SELECT command denied to user 'user_2'@'localhost' for table 'user'
  14401. SHOW GRANTS;
  14402. Grants for user_2@localhost
  14403. GRANT INSERT, UPDATE ON *.* TO 'user_2'@'localhost'
  14404. connect(localhost,user_3,,test,MYSQL_PORT,MYSQL_SOCK);
  14405. SELECT * FROM information_schema.user_privileges
  14406. WHERE grantee LIKE "%user%"
  14407. ORDER BY grantee, table_catalog, privilege_type;
  14408. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14409. 'user_3'@'localhost' NULL USAGE NO
  14410. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14411. ERROR 42000: SELECT command denied to user 'user_3'@'localhost' for table 'user'
  14412. SHOW GRANTS;
  14413. Grants for user_3@localhost
  14414. GRANT USAGE ON *.* TO 'user_3'@'localhost'
  14415. revoke privileges from user_1
  14416. -----------------------------
  14417. root@localhost information_schema
  14418. REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'user_1'@'localhost';
  14419. SELECT * FROM information_schema.user_privileges
  14420. WHERE grantee LIKE "%user%"
  14421. ORDER BY grantee, table_catalog, privilege_type;
  14422. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14423. 'user_1'@'localhost' NULL USAGE NO
  14424. 'user_2'@'localhost' NULL INSERT NO
  14425. 'user_2'@'localhost' NULL UPDATE NO
  14426. 'user_3'@'localhost' NULL USAGE NO
  14427. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14428. 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
  14429. 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
  14430. 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
  14431. 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
  14432. SHOW GRANTS;
  14433. Grants for root@localhost
  14434. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14435. user_1@localhost db_datadict
  14436. SELECT * FROM information_schema.user_privileges
  14437. WHERE grantee LIKE "%user%"
  14438. ORDER BY grantee, table_catalog, privilege_type;
  14439. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14440. 'user_1'@'localhost' NULL USAGE NO
  14441. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14442. ERROR 42000: SELECT command denied to user 'user_1'@'localhost' for table 'user'
  14443. SHOW GRANTS;
  14444. Grants for user_1@localhost
  14445. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14446. user_1@localhost db_datadict
  14447. CREATE TABLE db_datadict.tb_55 ( c1 TEXT );
  14448. ERROR 42000: CREATE command denied to user 'user_1'@'localhost' for table 'tb_55'
  14449. user_1@localhost db_datadict
  14450. SELECT * FROM information_schema.user_privileges
  14451. WHERE grantee LIKE "%user%"
  14452. ORDER BY grantee, table_catalog, privilege_type;
  14453. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14454. 'user_1'@'localhost' NULL USAGE NO
  14455. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14456. ERROR 42000: SELECT command denied to user 'user_1'@'localhost' for table 'user'
  14457. SHOW GRANTS;
  14458. Grants for user_1@localhost
  14459. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14460. CREATE TABLE db_datadict.tb_66 ( c1 TEXT );
  14461. ERROR 42000: CREATE command denied to user 'user_1'@'localhost' for table 'tb_66'
  14462. add ALL on db_datadict.* (and select on mysql.user) to user_1
  14463. -------------------------------------------------------------
  14464. root@localhost information_schema
  14465. GRANT ALL ON db_datadict.* TO 'user_1'@'localhost' WITH GRANT OPTION;
  14466. GRANT SELECT ON mysql.user TO 'user_1'@'localhost';
  14467. SELECT * FROM information_schema.user_privileges
  14468. WHERE grantee LIKE "%user%"
  14469. ORDER BY grantee, table_catalog, privilege_type;
  14470. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14471. 'user_1'@'localhost' NULL USAGE NO
  14472. 'user_2'@'localhost' NULL INSERT NO
  14473. 'user_2'@'localhost' NULL UPDATE NO
  14474. 'user_3'@'localhost' NULL USAGE NO
  14475. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14476. 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
  14477. 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
  14478. 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
  14479. 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
  14480. SHOW GRANTS;
  14481. Grants for root@localhost
  14482. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14483. user_1@localhost db_datadict
  14484. SELECT * FROM information_schema.user_privileges
  14485. WHERE grantee LIKE "%user%"
  14486. ORDER BY grantee, table_catalog, privilege_type;
  14487. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14488. 'user_1'@'localhost' NULL USAGE NO
  14489. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14490. 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
  14491. 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
  14492. 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
  14493. 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
  14494. SHOW GRANTS;
  14495. Grants for user_1@localhost
  14496. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14497. GRANT ALL PRIVILEGES ON `db_datadict`.* TO 'user_1'@'localhost' WITH GRANT OPTION
  14498. GRANT SELECT ON `mysql`.`user` TO 'user_1'@'localhost'
  14499. CREATE TABLE db_datadict.tb_56 ( c1 TEXT );
  14500. ERROR 42000: CREATE command denied to user 'user_1'@'localhost' for table 'tb_56'
  14501. USE db_datadict;
  14502. user_1@localhost db_datadict
  14503. SELECT * FROM information_schema.user_privileges
  14504. WHERE grantee LIKE "%user%"
  14505. ORDER BY grantee, table_catalog, privilege_type;
  14506. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14507. 'user_1'@'localhost' NULL USAGE NO
  14508. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14509. 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
  14510. 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
  14511. 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
  14512. 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
  14513. SHOW GRANTS;
  14514. Grants for user_1@localhost
  14515. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14516. GRANT ALL PRIVILEGES ON `db_datadict`.* TO 'user_1'@'localhost' WITH GRANT OPTION
  14517. GRANT SELECT ON `mysql`.`user` TO 'user_1'@'localhost'
  14518. CREATE TABLE tb_57 ( c1 TEXT );
  14519. revoke privileges from user_1
  14520. -----------------------------
  14521. root@localhost information_schema
  14522. REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'user_1'@'localhost';
  14523. FLUSH PRIVILEGES;
  14524. SELECT * FROM information_schema.user_privileges
  14525. WHERE grantee LIKE "%user%"
  14526. ORDER BY grantee, table_catalog, privilege_type;
  14527. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14528. 'user_1'@'localhost' NULL USAGE NO
  14529. 'user_2'@'localhost' NULL INSERT NO
  14530. 'user_2'@'localhost' NULL UPDATE NO
  14531. 'user_3'@'localhost' NULL USAGE NO
  14532. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14533. 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
  14534. 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
  14535. 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
  14536. 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
  14537. SHOW GRANTS;
  14538. Grants for root@localhost
  14539. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
  14540. user_1@localhost db_datadict
  14541. SELECT * FROM information_schema.user_privileges
  14542. WHERE grantee LIKE "%user%"
  14543. ORDER BY grantee, table_catalog, privilege_type;
  14544. GRANTEE TABLE_CATALOG PRIVILEGE_TYPE IS_GRANTABLE
  14545. 'user_1'@'localhost' NULL USAGE NO
  14546. SELECT * FROM mysql.user WHERE user LIKE "%user%" ORDER BY host, user;
  14547. ERROR 42000: SELECT command denied to user 'user_1'@'localhost' for table 'user'
  14548. SHOW GRANTS;
  14549. Grants for user_1@localhost
  14550. GRANT USAGE ON *.* TO 'user_1'@'localhost'
  14551. CREATE TABLE db_datadict.tb_58 ( c1 TEXT );
  14552. USE db_datadict;
  14553. ERROR 42000: Access denied for user 'user_1'@'localhost' to database 'db_datadict'
  14554. CREATE TABLE db_datadict.tb_59 ( c1 TEXT );
  14555. root@localhost information_schema
  14556. DROP USER 'user_1'@'localhost';
  14557. DROP USER 'user_2'@'localhost';
  14558. DROP USER 'user_3'@'localhost';
  14559. DROP DATABASE IF EXISTS db_datadict;
  14560. Testcase 3.2.17: Checks on Performance - not here in this script!
  14561. --------------------------------------------------------------------------------
  14562. Testcase 3.2.18.1:
  14563. --------------------------------------------------------------------------------
  14564. USE information_schema;
  14565. DESC triggers;
  14566. Field Type Null Key Default Extra
  14567. TRIGGER_CATALOG varchar(4096) YES NULL
  14568. TRIGGER_SCHEMA varchar(64) NO
  14569. TRIGGER_NAME varchar(64) NO
  14570. EVENT_MANIPULATION varchar(6) NO
  14571. EVENT_OBJECT_CATALOG varchar(4096) YES NULL
  14572. EVENT_OBJECT_SCHEMA varchar(64) NO
  14573. EVENT_OBJECT_TABLE varchar(64) NO
  14574. ACTION_ORDER bigint(4) NO 0
  14575. ACTION_CONDITION longtext YES NULL
  14576. ACTION_STATEMENT longtext NO
  14577. ACTION_ORIENTATION varchar(9) NO
  14578. ACTION_TIMING varchar(6) NO
  14579. ACTION_REFERENCE_OLD_TABLE varchar(64) YES NULL
  14580. ACTION_REFERENCE_NEW_TABLE varchar(64) YES NULL
  14581. ACTION_REFERENCE_OLD_ROW varchar(3) NO
  14582. ACTION_REFERENCE_NEW_ROW varchar(3) NO
  14583. CREATED datetime YES NULL
  14584. SQL_MODE longtext NO
  14585. DEFINER longtext NO
  14586. SHOW CREATE TABLE triggers;
  14587. Table Create Table
  14588. TRIGGERS CREATE TEMPORARY TABLE `TRIGGERS` (
  14589. `TRIGGER_CATALOG` varchar(4096) DEFAULT NULL,
  14590. `TRIGGER_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  14591. `TRIGGER_NAME` varchar(64) NOT NULL DEFAULT '',
  14592. `EVENT_MANIPULATION` varchar(6) NOT NULL DEFAULT '',
  14593. `EVENT_OBJECT_CATALOG` varchar(4096) DEFAULT NULL,
  14594. `EVENT_OBJECT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  14595. `EVENT_OBJECT_TABLE` varchar(64) NOT NULL DEFAULT '',
  14596. `ACTION_ORDER` bigint(4) NOT NULL DEFAULT '0',
  14597. `ACTION_CONDITION` longtext,
  14598. `ACTION_STATEMENT` longtext NOT NULL,
  14599. `ACTION_ORIENTATION` varchar(9) NOT NULL DEFAULT '',
  14600. `ACTION_TIMING` varchar(6) NOT NULL DEFAULT '',
  14601. `ACTION_REFERENCE_OLD_TABLE` varchar(64) DEFAULT NULL,
  14602. `ACTION_REFERENCE_NEW_TABLE` varchar(64) DEFAULT NULL,
  14603. `ACTION_REFERENCE_OLD_ROW` varchar(3) NOT NULL DEFAULT '',
  14604. `ACTION_REFERENCE_NEW_ROW` varchar(3) NOT NULL DEFAULT '',
  14605. `CREATED` datetime DEFAULT NULL,
  14606. `SQL_MODE` longtext NOT NULL,
  14607. `DEFINER` longtext NOT NULL
  14608. ) ENGINE=MyISAM DEFAULT CHARSET=utf8
  14609. SELECT COUNT(*) FROM information_schema.columns
  14610. WHERE table_schema = 'information_schema'
  14611. AND table_name = 'triggers'
  14612. ORDER BY ordinal_position;
  14613. COUNT(*)
  14614. 19
  14615. SELECT * FROM information_schema.columns
  14616. WHERE table_schema = 'information_schema'
  14617. AND table_name = 'triggers'
  14618. ORDER BY ordinal_position;
  14619. 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
  14620. NULL information_schema TRIGGERS TRIGGER_CATALOG 1 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  14621. NULL information_schema TRIGGERS TRIGGER_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14622. NULL information_schema TRIGGERS TRIGGER_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14623. NULL information_schema TRIGGERS EVENT_MANIPULATION 4 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  14624. NULL information_schema TRIGGERS EVENT_OBJECT_CATALOG 5 NULL YES varchar 4096 12288 NULL NULL utf8 utf8_general_ci varchar(4096) select
  14625. NULL information_schema TRIGGERS EVENT_OBJECT_SCHEMA 6 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14626. NULL information_schema TRIGGERS EVENT_OBJECT_TABLE 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14627. NULL information_schema TRIGGERS ACTION_ORDER 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(4) select
  14628. NULL information_schema TRIGGERS ACTION_CONDITION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  14629. NULL information_schema TRIGGERS ACTION_STATEMENT 10 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  14630. NULL information_schema TRIGGERS ACTION_ORIENTATION 11 NO varchar 9 27 NULL NULL utf8 utf8_general_ci varchar(9) select
  14631. NULL information_schema TRIGGERS ACTION_TIMING 12 NO varchar 6 18 NULL NULL utf8 utf8_general_ci varchar(6) select
  14632. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_TABLE 13 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14633. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_TABLE 14 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
  14634. NULL information_schema TRIGGERS ACTION_REFERENCE_OLD_ROW 15 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  14635. NULL information_schema TRIGGERS ACTION_REFERENCE_NEW_ROW 16 NO varchar 3 9 NULL NULL utf8 utf8_general_ci varchar(3) select
  14636. NULL information_schema TRIGGERS CREATED 17 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
  14637. NULL information_schema TRIGGERS SQL_MODE 18 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  14638. NULL information_schema TRIGGERS DEFINER 19 NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
  14639. Testcase 3.2.18.2 + 3.2.18.3:
  14640. --------------------------------------------------------------------------------
  14641. Testcase 3.2.19.1:
  14642. --------------------------------------------------------------------------------
  14643. checking a table that will be implemented later
  14644. -----------------------------------------------
  14645. DESC parameters;
  14646. ERROR 42S02: Unknown table 'parameters' in information_schema
  14647. Testcase 3.2.20.1:
  14648. --------------------------------------------------------------------------------
  14649. checking a table that will be implemented later
  14650. -----------------------------------------------
  14651. DESC referential_constraints;
  14652. Field Type Null Key Default Extra
  14653. CONSTRAINT_CATALOG varchar(512) YES NULL
  14654. CONSTRAINT_SCHEMA varchar(64) NO
  14655. CONSTRAINT_NAME varchar(64) NO
  14656. UNIQUE_CONSTRAINT_CATALOG varchar(512) YES NULL
  14657. UNIQUE_CONSTRAINT_SCHEMA varchar(64) NO
  14658. UNIQUE_CONSTRAINT_NAME varchar(64) NO
  14659. MATCH_OPTION varchar(64) NO
  14660. UPDATE_RULE varchar(64) NO
  14661. DELETE_RULE varchar(64) NO
  14662. TABLE_NAME varchar(64) NO
  14663. REFERENCED_TABLE_NAME varchar(64) NO
  14664. *** End of Data Dictionary Tests ***
  14665. --------------------------------------------------------------------------------
  14666. DROP TABLE IF EXISTS test.tb1;
  14667. DROP TABLE IF EXISTS test.tb2;
  14668. DROP TABLE IF EXISTS test.tb3;
  14669. DROP TABLE IF EXISTS test.tb4;
  14670. DROP TABLE IF EXISTS test.t1;
  14671. DROP TABLE IF EXISTS test.t2;
  14672. DROP TABLE IF EXISTS test.t3;
  14673. DROP TABLE IF EXISTS test.t4;
  14674. DROP TABLE IF EXISTS test.t7;
  14675. DROP TABLE IF EXISTS test.t8;
  14676. DROP TABLE IF EXISTS test.t9;
  14677. DROP TABLE IF EXISTS test.t10;
  14678. DROP TABLE IF EXISTS test.t11;
  14679. DROP DATABASE IF EXISTS test1;
  14680. DROP DATABASE IF EXISTS test4;
  14681. DROP DATABASE IF EXISTS db_datadict;
  14682. DROP DATABASE IF EXISTS db_datadict_1;
  14683. DROP DATABASE IF EXISTS db_datadict_2;