0% found this document useful (0 votes)
95 views

Unauthorized Access Generated.

This document contains SQL code that is dumping data for the CHARACTER_SETS and COLLATIONS tables in the information_schema database. It lists over 60 character sets and collations with details like character set name, description, maximum length, whether it is the default collation, and more. The code provides the structure of the temporary tables and inserts data into them.

Uploaded by

Taikwan Ballard
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
95 views

Unauthorized Access Generated.

This document contains SQL code that is dumping data for the CHARACTER_SETS and COLLATIONS tables in the information_schema database. It lists over 60 character sets and collations with details like character set name, description, maximum length, whether it is the default collation, and more. The code provides the structure of the temporary tables and inserts data into them.

Uploaded by

Taikwan Ballard
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 96

-- phpMyAdmin SQL Dump

-- version 3.5.7
-- http://www.phpmyadmin.net
--- Host: db4free.net:3306
-- Generation Time: Mar 29, 2013 at 06:14 PM
-- Server version: 5.6.10
-- PHP Version: 5.3.10-1ubuntu3.6
--Unauthorized access attempt -- Username/Password not entered
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--- Database: `information_schema`
-CREATE DATABASE `information_schema` DEFAULT CHARACTER SET utf8 COLLATE utf8_gen
eral_ci;
USE `information_schema`;
-- ---------------------------------------------------------- Table structure for table `CHARACTER_SETS`
-CREATE TEMPORARY TABLE `CHARACTER_SETS` (
`CHARACTER_SET_NAME` varchar(32) NOT NULL DEFAULT '',
`DEFAULT_COLLATE_NAME` varchar(32) NOT NULL DEFAULT '',
`DESCRIPTION` varchar(60) NOT NULL DEFAULT '',
`MAXLEN` bigint(3) NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--- Dumping data for table `CHARACTER_SETS`
-INSERT INTO `CHARACTER_SETS` (`CHARACTER_SET_NAME`, `DEFAULT_COLLATE_NAME`, `DES
CRIPTION`, `MAXLEN`) VALUES
('big5', 'big5_chinese_ci', 'Big5 Traditional Chinese', 2),
('dec8', 'dec8_swedish_ci', 'DEC West European', 1),
('cp850', 'cp850_general_ci', 'DOS West European', 1),
('hp8', 'hp8_english_ci', 'HP West European', 1),
('koi8r', 'koi8r_general_ci', 'KOI8-R Relcom Russian', 1),
('latin1', 'latin1_swedish_ci', 'cp1252 West European', 1),
('latin2', 'latin2_general_ci', 'ISO 8859-2 Central European', 1),
('swe7', 'swe7_swedish_ci', '7bit Swedish', 1),
('ascii', 'ascii_general_ci', 'US ASCII', 1),
('ujis', 'ujis_japanese_ci', 'EUC-JP Japanese', 3),
('sjis', 'sjis_japanese_ci', 'Shift-JIS Japanese', 2),
('hebrew', 'hebrew_general_ci', 'ISO 8859-8 Hebrew', 1),
('tis620', 'tis620_thai_ci', 'TIS620 Thai', 1),
('euckr', 'euckr_korean_ci', 'EUC-KR Korean', 2),
('koi8u', 'koi8u_general_ci', 'KOI8-U Ukrainian', 1),
('gb2312', 'gb2312_chinese_ci', 'GB2312 Simplified Chinese', 2),
('greek', 'greek_general_ci', 'ISO 8859-7 Greek', 1),
('cp1250', 'cp1250_general_ci', 'Windows Central European', 1),
('gbk', 'gbk_chinese_ci', 'GBK Simplified Chinese', 2),
('latin5', 'latin5_turkish_ci', 'ISO 8859-9 Turkish', 1),
('armscii8', 'armscii8_general_ci', 'ARMSCII-8 Armenian', 1),

('utf8', 'utf8_general_ci', 'UTF-8 Unicode', 3),


('ucs2', 'ucs2_general_ci', 'UCS-2 Unicode', 2),
('cp866', 'cp866_general_ci', 'DOS Russian', 1),
('keybcs2', 'keybcs2_general_ci', 'DOS Kamenicky Czech-Slovak', 1),
('macce', 'macce_general_ci', 'Mac Central European', 1),
('macroman', 'macroman_general_ci', 'Mac West European', 1),
('cp852', 'cp852_general_ci', 'DOS Central European', 1),
('latin7', 'latin7_general_ci', 'ISO 8859-13 Baltic', 1),
('utf8mb4', 'utf8mb4_general_ci', 'UTF-8 Unicode', 4),
('cp1251', 'cp1251_general_ci', 'Windows Cyrillic', 1),
('utf16', 'utf16_general_ci', 'UTF-16 Unicode', 4),
('utf16le', 'utf16le_general_ci', 'UTF-16LE Unicode', 4),
('cp1256', 'cp1256_general_ci', 'Windows Arabic', 1),
('cp1257', 'cp1257_general_ci', 'Windows Baltic', 1),
('utf32', 'utf32_general_ci', 'UTF-32 Unicode', 4),
('binary', 'binary', 'Binary pseudo charset', 1),
('geostd8', 'geostd8_general_ci', 'GEOSTD8 Georgian', 1),
('cp932', 'cp932_japanese_ci', 'SJIS for Windows Japanese', 2),
('eucjpms', 'eucjpms_japanese_ci', 'UJIS for Windows Japanese', 3);
-- ---------------------------------------------------------- Table structure for table `COLLATIONS`
-CREATE TEMPORARY TABLE `COLLATIONS` (
`COLLATION_NAME` varchar(32) NOT NULL DEFAULT '',
`CHARACTER_SET_NAME` varchar(32) NOT NULL DEFAULT '',
`ID` bigint(11) NOT NULL DEFAULT '0',
`IS_DEFAULT` varchar(3) NOT NULL DEFAULT '',
`IS_COMPILED` varchar(3) NOT NULL DEFAULT '',
`SORTLEN` bigint(3) NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--- Dumping data for table `COLLATIONS`
-INSERT INTO `COLLATIONS` (`COLLATION_NAME`, `CHARACTER_SET_NAME`, `ID`, `IS_DEFA
ULT`, `IS_COMPILED`, `SORTLEN`) VALUES
('big5_chinese_ci', 'big5', 1, 'Yes', 'Yes', 1),
('big5_bin', 'big5', 84, '', 'Yes', 1),
('dec8_swedish_ci', 'dec8', 3, 'Yes', 'Yes', 1),
('dec8_bin', 'dec8', 69, '', 'Yes', 1),
('cp850_general_ci', 'cp850', 4, 'Yes', 'Yes', 1),
('cp850_bin', 'cp850', 80, '', 'Yes', 1),
('hp8_english_ci', 'hp8', 6, 'Yes', 'Yes', 1),
('hp8_bin', 'hp8', 72, '', 'Yes', 1),
('koi8r_general_ci', 'koi8r', 7, 'Yes', 'Yes', 1),
('koi8r_bin', 'koi8r', 74, '', 'Yes', 1),
('latin1_german1_ci', 'latin1', 5, '', 'Yes', 1),
('latin1_swedish_ci', 'latin1', 8, 'Yes', 'Yes', 1),
('latin1_danish_ci', 'latin1', 15, '', 'Yes', 1),
('latin1_german2_ci', 'latin1', 31, '', 'Yes', 2),
('latin1_bin', 'latin1', 47, '', 'Yes', 1),
('latin1_general_ci', 'latin1', 48, '', 'Yes', 1),
('latin1_general_cs', 'latin1', 49, '', 'Yes', 1),
('latin1_spanish_ci', 'latin1', 94, '', 'Yes', 1),
('latin2_czech_cs', 'latin2', 2, '', 'Yes', 4),

('latin2_general_ci', 'latin2', 9, 'Yes', 'Yes', 1),


('latin2_hungarian_ci', 'latin2', 21, '', 'Yes', 1),
('latin2_croatian_ci', 'latin2', 27, '', 'Yes', 1),
('latin2_bin', 'latin2', 77, '', 'Yes', 1),
('swe7_swedish_ci', 'swe7', 10, 'Yes', 'Yes', 1),
('swe7_bin', 'swe7', 82, '', 'Yes', 1),
('ascii_general_ci', 'ascii', 11, 'Yes', 'Yes', 1),
('ascii_bin', 'ascii', 65, '', 'Yes', 1),
('ujis_japanese_ci', 'ujis', 12, 'Yes', 'Yes', 1),
('ujis_bin', 'ujis', 91, '', 'Yes', 1),
('sjis_japanese_ci', 'sjis', 13, 'Yes', 'Yes', 1),
('sjis_bin', 'sjis', 88, '', 'Yes', 1),
('hebrew_general_ci', 'hebrew', 16, 'Yes', 'Yes', 1),
('hebrew_bin', 'hebrew', 71, '', 'Yes', 1),
('tis620_thai_ci', 'tis620', 18, 'Yes', 'Yes', 4),
('tis620_bin', 'tis620', 89, '', 'Yes', 1),
('euckr_korean_ci', 'euckr', 19, 'Yes', 'Yes', 1),
('euckr_bin', 'euckr', 85, '', 'Yes', 1),
('koi8u_general_ci', 'koi8u', 22, 'Yes', 'Yes', 1),
('koi8u_bin', 'koi8u', 75, '', 'Yes', 1),
('gb2312_chinese_ci', 'gb2312', 24, 'Yes', 'Yes', 1),
('gb2312_bin', 'gb2312', 86, '', 'Yes', 1),
('greek_general_ci', 'greek', 25, 'Yes', 'Yes', 1),
('greek_bin', 'greek', 70, '', 'Yes', 1),
('cp1250_general_ci', 'cp1250', 26, 'Yes', 'Yes', 1),
('cp1250_czech_cs', 'cp1250', 34, '', 'Yes', 2),
('cp1250_croatian_ci', 'cp1250', 44, '', 'Yes', 1),
('cp1250_bin', 'cp1250', 66, '', 'Yes', 1),
('cp1250_polish_ci', 'cp1250', 99, '', 'Yes', 1),
('gbk_chinese_ci', 'gbk', 28, 'Yes', 'Yes', 1),
('gbk_bin', 'gbk', 87, '', 'Yes', 1),
('latin5_turkish_ci', 'latin5', 30, 'Yes', 'Yes', 1),
('latin5_bin', 'latin5', 78, '', 'Yes', 1),
('armscii8_general_ci', 'armscii8', 32, 'Yes', 'Yes', 1),
('armscii8_bin', 'armscii8', 64, '', 'Yes', 1),
('utf8_general_ci', 'utf8', 33, 'Yes', 'Yes', 1),
('utf8_bin', 'utf8', 83, '', 'Yes', 1),
('utf8_unicode_ci', 'utf8', 192, '', 'Yes', 8),
('utf8_icelandic_ci', 'utf8', 193, '', 'Yes', 8),
('utf8_latvian_ci', 'utf8', 194, '', 'Yes', 8),
('utf8_romanian_ci', 'utf8', 195, '', 'Yes', 8),
('utf8_slovenian_ci', 'utf8', 196, '', 'Yes', 8),
('utf8_polish_ci', 'utf8', 197, '', 'Yes', 8),
('utf8_estonian_ci', 'utf8', 198, '', 'Yes', 8),
('utf8_spanish_ci', 'utf8', 199, '', 'Yes', 8),
('utf8_swedish_ci', 'utf8', 200, '', 'Yes', 8),
('utf8_turkish_ci', 'utf8', 201, '', 'Yes', 8),
('utf8_czech_ci', 'utf8', 202, '', 'Yes', 8),
('utf8_danish_ci', 'utf8', 203, '', 'Yes', 8),
('utf8_lithuanian_ci', 'utf8', 204, '', 'Yes', 8),
('utf8_slovak_ci', 'utf8', 205, '', 'Yes', 8),
('utf8_spanish2_ci', 'utf8', 206, '', 'Yes', 8),
('utf8_roman_ci', 'utf8', 207, '', 'Yes', 8),
('utf8_persian_ci', 'utf8', 208, '', 'Yes', 8),
('utf8_esperanto_ci', 'utf8', 209, '', 'Yes', 8),
('utf8_hungarian_ci', 'utf8', 210, '', 'Yes', 8),
('utf8_sinhala_ci', 'utf8', 211, '', 'Yes', 8),
('utf8_german2_ci', 'utf8', 212, '', 'Yes', 8),
('utf8_croatian_ci', 'utf8', 213, '', 'Yes', 8),
('utf8_unicode_520_ci', 'utf8', 214, '', 'Yes', 8),

('utf8_vietnamese_ci', 'utf8', 215, '', 'Yes', 8),


('utf8_general_mysql500_ci', 'utf8', 223, '', 'Yes', 1),
('ucs2_general_ci', 'ucs2', 35, 'Yes', 'Yes', 1),
('ucs2_bin', 'ucs2', 90, '', 'Yes', 1),
('ucs2_unicode_ci', 'ucs2', 128, '', 'Yes', 8),
('ucs2_icelandic_ci', 'ucs2', 129, '', 'Yes', 8),
('ucs2_latvian_ci', 'ucs2', 130, '', 'Yes', 8),
('ucs2_romanian_ci', 'ucs2', 131, '', 'Yes', 8),
('ucs2_slovenian_ci', 'ucs2', 132, '', 'Yes', 8),
('ucs2_polish_ci', 'ucs2', 133, '', 'Yes', 8),
('ucs2_estonian_ci', 'ucs2', 134, '', 'Yes', 8),
('ucs2_spanish_ci', 'ucs2', 135, '', 'Yes', 8),
('ucs2_swedish_ci', 'ucs2', 136, '', 'Yes', 8),
('ucs2_turkish_ci', 'ucs2', 137, '', 'Yes', 8),
('ucs2_czech_ci', 'ucs2', 138, '', 'Yes', 8),
('ucs2_danish_ci', 'ucs2', 139, '', 'Yes', 8),
('ucs2_lithuanian_ci', 'ucs2', 140, '', 'Yes', 8),
('ucs2_slovak_ci', 'ucs2', 141, '', 'Yes', 8),
('ucs2_spanish2_ci', 'ucs2', 142, '', 'Yes', 8),
('ucs2_roman_ci', 'ucs2', 143, '', 'Yes', 8),
('ucs2_persian_ci', 'ucs2', 144, '', 'Yes', 8),
('ucs2_esperanto_ci', 'ucs2', 145, '', 'Yes', 8),
('ucs2_hungarian_ci', 'ucs2', 146, '', 'Yes', 8),
('ucs2_sinhala_ci', 'ucs2', 147, '', 'Yes', 8),
('ucs2_german2_ci', 'ucs2', 148, '', 'Yes', 8),
('ucs2_croatian_ci', 'ucs2', 149, '', 'Yes', 8),
('ucs2_unicode_520_ci', 'ucs2', 150, '', 'Yes', 8),
('ucs2_vietnamese_ci', 'ucs2', 151, '', 'Yes', 8),
('ucs2_general_mysql500_ci', 'ucs2', 159, '', 'Yes', 1),
('cp866_general_ci', 'cp866', 36, 'Yes', 'Yes', 1),
('cp866_bin', 'cp866', 68, '', 'Yes', 1),
('keybcs2_general_ci', 'keybcs2', 37, 'Yes', 'Yes', 1),
('keybcs2_bin', 'keybcs2', 73, '', 'Yes', 1),
('macce_general_ci', 'macce', 38, 'Yes', 'Yes', 1),
('macce_bin', 'macce', 43, '', 'Yes', 1),
('macroman_general_ci', 'macroman', 39, 'Yes', 'Yes', 1),
('macroman_bin', 'macroman', 53, '', 'Yes', 1),
('cp852_general_ci', 'cp852', 40, 'Yes', 'Yes', 1),
('cp852_bin', 'cp852', 81, '', 'Yes', 1),
('latin7_estonian_cs', 'latin7', 20, '', 'Yes', 1),
('latin7_general_ci', 'latin7', 41, 'Yes', 'Yes', 1),
('latin7_general_cs', 'latin7', 42, '', 'Yes', 1),
('latin7_bin', 'latin7', 79, '', 'Yes', 1),
('utf8mb4_general_ci', 'utf8mb4', 45, 'Yes', 'Yes', 1),
('utf8mb4_bin', 'utf8mb4', 46, '', 'Yes', 1),
('utf8mb4_unicode_ci', 'utf8mb4', 224, '', 'Yes', 8),
('utf8mb4_icelandic_ci', 'utf8mb4', 225, '', 'Yes', 8),
('utf8mb4_latvian_ci', 'utf8mb4', 226, '', 'Yes', 8),
('utf8mb4_romanian_ci', 'utf8mb4', 227, '', 'Yes', 8),
('utf8mb4_slovenian_ci', 'utf8mb4', 228, '', 'Yes', 8),
('utf8mb4_polish_ci', 'utf8mb4', 229, '', 'Yes', 8),
('utf8mb4_estonian_ci', 'utf8mb4', 230, '', 'Yes', 8),
('utf8mb4_spanish_ci', 'utf8mb4', 231, '', 'Yes', 8),
('utf8mb4_swedish_ci', 'utf8mb4', 232, '', 'Yes', 8),
('utf8mb4_turkish_ci', 'utf8mb4', 233, '', 'Yes', 8),
('utf8mb4_czech_ci', 'utf8mb4', 234, '', 'Yes', 8),
('utf8mb4_danish_ci', 'utf8mb4', 235, '', 'Yes', 8),
('utf8mb4_lithuanian_ci', 'utf8mb4', 236, '', 'Yes', 8),
('utf8mb4_slovak_ci', 'utf8mb4', 237, '', 'Yes', 8),
('utf8mb4_spanish2_ci', 'utf8mb4', 238, '', 'Yes', 8),

('utf8mb4_roman_ci', 'utf8mb4', 239, '', 'Yes', 8),


('utf8mb4_persian_ci', 'utf8mb4', 240, '', 'Yes', 8),
('utf8mb4_esperanto_ci', 'utf8mb4', 241, '', 'Yes', 8),
('utf8mb4_hungarian_ci', 'utf8mb4', 242, '', 'Yes', 8),
('utf8mb4_sinhala_ci', 'utf8mb4', 243, '', 'Yes', 8),
('utf8mb4_german2_ci', 'utf8mb4', 244, '', 'Yes', 8),
('utf8mb4_croatian_ci', 'utf8mb4', 245, '', 'Yes', 8),
('utf8mb4_unicode_520_ci', 'utf8mb4', 246, '', 'Yes', 8),
('utf8mb4_vietnamese_ci', 'utf8mb4', 247, '', 'Yes', 8),
('cp1251_bulgarian_ci', 'cp1251', 14, '', 'Yes', 1),
('cp1251_ukrainian_ci', 'cp1251', 23, '', 'Yes', 1),
('cp1251_bin', 'cp1251', 50, '', 'Yes', 1),
('cp1251_general_ci', 'cp1251', 51, 'Yes', 'Yes', 1),
('cp1251_general_cs', 'cp1251', 52, '', 'Yes', 1),
('utf16_general_ci', 'utf16', 54, 'Yes', 'Yes', 1),
('utf16_bin', 'utf16', 55, '', 'Yes', 1),
('utf16_unicode_ci', 'utf16', 101, '', 'Yes', 8),
('utf16_icelandic_ci', 'utf16', 102, '', 'Yes', 8),
('utf16_latvian_ci', 'utf16', 103, '', 'Yes', 8),
('utf16_romanian_ci', 'utf16', 104, '', 'Yes', 8),
('utf16_slovenian_ci', 'utf16', 105, '', 'Yes', 8),
('utf16_polish_ci', 'utf16', 106, '', 'Yes', 8),
('utf16_estonian_ci', 'utf16', 107, '', 'Yes', 8),
('utf16_spanish_ci', 'utf16', 108, '', 'Yes', 8),
('utf16_swedish_ci', 'utf16', 109, '', 'Yes', 8),
('utf16_turkish_ci', 'utf16', 110, '', 'Yes', 8),
('utf16_czech_ci', 'utf16', 111, '', 'Yes', 8),
('utf16_danish_ci', 'utf16', 112, '', 'Yes', 8),
('utf16_lithuanian_ci', 'utf16', 113, '', 'Yes', 8),
('utf16_slovak_ci', 'utf16', 114, '', 'Yes', 8),
('utf16_spanish2_ci', 'utf16', 115, '', 'Yes', 8),
('utf16_roman_ci', 'utf16', 116, '', 'Yes', 8),
('utf16_persian_ci', 'utf16', 117, '', 'Yes', 8),
('utf16_esperanto_ci', 'utf16', 118, '', 'Yes', 8),
('utf16_hungarian_ci', 'utf16', 119, '', 'Yes', 8),
('utf16_sinhala_ci', 'utf16', 120, '', 'Yes', 8),
('utf16_german2_ci', 'utf16', 121, '', 'Yes', 8),
('utf16_croatian_ci', 'utf16', 122, '', 'Yes', 8),
('utf16_unicode_520_ci', 'utf16', 123, '', 'Yes', 8),
('utf16_vietnamese_ci', 'utf16', 124, '', 'Yes', 8),
('utf16le_general_ci', 'utf16le', 56, 'Yes', 'Yes', 1),
('utf16le_bin', 'utf16le', 62, '', 'Yes', 1),
('cp1256_general_ci', 'cp1256', 57, 'Yes', 'Yes', 1),
('cp1256_bin', 'cp1256', 67, '', 'Yes', 1),
('cp1257_lithuanian_ci', 'cp1257', 29, '', 'Yes', 1),
('cp1257_bin', 'cp1257', 58, '', 'Yes', 1),
('cp1257_general_ci', 'cp1257', 59, 'Yes', 'Yes', 1),
('utf32_general_ci', 'utf32', 60, 'Yes', 'Yes', 1),
('utf32_bin', 'utf32', 61, '', 'Yes', 1),
('utf32_unicode_ci', 'utf32', 160, '', 'Yes', 8),
('utf32_icelandic_ci', 'utf32', 161, '', 'Yes', 8),
('utf32_latvian_ci', 'utf32', 162, '', 'Yes', 8),
('utf32_romanian_ci', 'utf32', 163, '', 'Yes', 8),
('utf32_slovenian_ci', 'utf32', 164, '', 'Yes', 8),
('utf32_polish_ci', 'utf32', 165, '', 'Yes', 8),
('utf32_estonian_ci', 'utf32', 166, '', 'Yes', 8),
('utf32_spanish_ci', 'utf32', 167, '', 'Yes', 8),
('utf32_swedish_ci', 'utf32', 168, '', 'Yes', 8),
('utf32_turkish_ci', 'utf32', 169, '', 'Yes', 8),
('utf32_czech_ci', 'utf32', 170, '', 'Yes', 8),

('utf32_danish_ci', 'utf32', 171, '', 'Yes', 8),


('utf32_lithuanian_ci', 'utf32', 172, '', 'Yes', 8),
('utf32_slovak_ci', 'utf32', 173, '', 'Yes', 8),
('utf32_spanish2_ci', 'utf32', 174, '', 'Yes', 8),
('utf32_roman_ci', 'utf32', 175, '', 'Yes', 8),
('utf32_persian_ci', 'utf32', 176, '', 'Yes', 8),
('utf32_esperanto_ci', 'utf32', 177, '', 'Yes', 8),
('utf32_hungarian_ci', 'utf32', 178, '', 'Yes', 8),
('utf32_sinhala_ci', 'utf32', 179, '', 'Yes', 8),
('utf32_german2_ci', 'utf32', 180, '', 'Yes', 8),
('utf32_croatian_ci', 'utf32', 181, '', 'Yes', 8),
('utf32_unicode_520_ci', 'utf32', 182, '', 'Yes', 8),
('utf32_vietnamese_ci', 'utf32', 183, '', 'Yes', 8),
('binary', 'binary', 63, 'Yes', 'Yes', 1),
('geostd8_general_ci', 'geostd8', 92, 'Yes', 'Yes', 1),
('geostd8_bin', 'geostd8', 93, '', 'Yes', 1),
('cp932_japanese_ci', 'cp932', 95, 'Yes', 'Yes', 1),
('cp932_bin', 'cp932', 96, '', 'Yes', 1),
('eucjpms_japanese_ci', 'eucjpms', 97, 'Yes', 'Yes', 1),
('eucjpms_bin', 'eucjpms', 98, '', 'Yes', 1);
-- ---------------------------------------------------------- Table structure for table `COLLATION_CHARACTER_SET_APPLICABILITY`
-CREATE TEMPORARY TABLE `COLLATION_CHARACTER_SET_APPLICABILITY` (
`COLLATION_NAME` varchar(32) NOT NULL DEFAULT '',
`CHARACTER_SET_NAME` varchar(32) NOT NULL DEFAULT ''
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--- Dumping data for table `COLLATION_CHARACTER_SET_APPLICABILITY`
-INSERT INTO `COLLATION_CHARACTER_SET_APPLICABILITY` (`COLLATION_NAME`, `CHARACTE
R_SET_NAME`) VALUES
('big5_chinese_ci', 'big5'),
('big5_bin', 'big5'),
('dec8_swedish_ci', 'dec8'),
('dec8_bin', 'dec8'),
('cp850_general_ci', 'cp850'),
('cp850_bin', 'cp850'),
('hp8_english_ci', 'hp8'),
('hp8_bin', 'hp8'),
('koi8r_general_ci', 'koi8r'),
('koi8r_bin', 'koi8r'),
('latin1_german1_ci', 'latin1'),
('latin1_swedish_ci', 'latin1'),
('latin1_danish_ci', 'latin1'),
('latin1_german2_ci', 'latin1'),
('latin1_bin', 'latin1'),
('latin1_general_ci', 'latin1'),
('latin1_general_cs', 'latin1'),
('latin1_spanish_ci', 'latin1'),
('latin2_czech_cs', 'latin2'),
('latin2_general_ci', 'latin2'),
('latin2_hungarian_ci', 'latin2'),
('latin2_croatian_ci', 'latin2'),

('latin2_bin', 'latin2'),
('swe7_swedish_ci', 'swe7'),
('swe7_bin', 'swe7'),
('ascii_general_ci', 'ascii'),
('ascii_bin', 'ascii'),
('ujis_japanese_ci', 'ujis'),
('ujis_bin', 'ujis'),
('sjis_japanese_ci', 'sjis'),
('sjis_bin', 'sjis'),
('hebrew_general_ci', 'hebrew'),
('hebrew_bin', 'hebrew'),
('tis620_thai_ci', 'tis620'),
('tis620_bin', 'tis620'),
('euckr_korean_ci', 'euckr'),
('euckr_bin', 'euckr'),
('koi8u_general_ci', 'koi8u'),
('koi8u_bin', 'koi8u'),
('gb2312_chinese_ci', 'gb2312'),
('gb2312_bin', 'gb2312'),
('greek_general_ci', 'greek'),
('greek_bin', 'greek'),
('cp1250_general_ci', 'cp1250'),
('cp1250_czech_cs', 'cp1250'),
('cp1250_croatian_ci', 'cp1250'),
('cp1250_bin', 'cp1250'),
('cp1250_polish_ci', 'cp1250'),
('gbk_chinese_ci', 'gbk'),
('gbk_bin', 'gbk'),
('latin5_turkish_ci', 'latin5'),
('latin5_bin', 'latin5'),
('armscii8_general_ci', 'armscii8'),
('armscii8_bin', 'armscii8'),
('utf8_general_ci', 'utf8'),
('utf8_bin', 'utf8'),
('utf8_unicode_ci', 'utf8'),
('utf8_icelandic_ci', 'utf8'),
('utf8_latvian_ci', 'utf8'),
('utf8_romanian_ci', 'utf8'),
('utf8_slovenian_ci', 'utf8'),
('utf8_polish_ci', 'utf8'),
('utf8_estonian_ci', 'utf8'),
('utf8_spanish_ci', 'utf8'),
('utf8_swedish_ci', 'utf8'),
('utf8_turkish_ci', 'utf8'),
('utf8_czech_ci', 'utf8'),
('utf8_danish_ci', 'utf8'),
('utf8_lithuanian_ci', 'utf8'),
('utf8_slovak_ci', 'utf8'),
('utf8_spanish2_ci', 'utf8'),
('utf8_roman_ci', 'utf8'),
('utf8_persian_ci', 'utf8'),
('utf8_esperanto_ci', 'utf8'),
('utf8_hungarian_ci', 'utf8'),
('utf8_sinhala_ci', 'utf8'),
('utf8_german2_ci', 'utf8'),
('utf8_croatian_ci', 'utf8'),
('utf8_unicode_520_ci', 'utf8'),
('utf8_vietnamese_ci', 'utf8'),
('utf8_general_mysql500_ci', 'utf8'),
('ucs2_general_ci', 'ucs2'),

('ucs2_bin', 'ucs2'),
('ucs2_unicode_ci', 'ucs2'),
('ucs2_icelandic_ci', 'ucs2'),
('ucs2_latvian_ci', 'ucs2'),
('ucs2_romanian_ci', 'ucs2'),
('ucs2_slovenian_ci', 'ucs2'),
('ucs2_polish_ci', 'ucs2'),
('ucs2_estonian_ci', 'ucs2'),
('ucs2_spanish_ci', 'ucs2'),
('ucs2_swedish_ci', 'ucs2'),
('ucs2_turkish_ci', 'ucs2'),
('ucs2_czech_ci', 'ucs2'),
('ucs2_danish_ci', 'ucs2'),
('ucs2_lithuanian_ci', 'ucs2'),
('ucs2_slovak_ci', 'ucs2'),
('ucs2_spanish2_ci', 'ucs2'),
('ucs2_roman_ci', 'ucs2'),
('ucs2_persian_ci', 'ucs2'),
('ucs2_esperanto_ci', 'ucs2'),
('ucs2_hungarian_ci', 'ucs2'),
('ucs2_sinhala_ci', 'ucs2'),
('ucs2_german2_ci', 'ucs2'),
('ucs2_croatian_ci', 'ucs2'),
('ucs2_unicode_520_ci', 'ucs2'),
('ucs2_vietnamese_ci', 'ucs2'),
('ucs2_general_mysql500_ci', 'ucs2'),
('cp866_general_ci', 'cp866'),
('cp866_bin', 'cp866'),
('keybcs2_general_ci', 'keybcs2'),
('keybcs2_bin', 'keybcs2'),
('macce_general_ci', 'macce'),
('macce_bin', 'macce'),
('macroman_general_ci', 'macroman'),
('macroman_bin', 'macroman'),
('cp852_general_ci', 'cp852'),
('cp852_bin', 'cp852'),
('latin7_estonian_cs', 'latin7'),
('latin7_general_ci', 'latin7'),
('latin7_general_cs', 'latin7'),
('latin7_bin', 'latin7'),
('utf8mb4_general_ci', 'utf8mb4'),
('utf8mb4_bin', 'utf8mb4'),
('utf8mb4_unicode_ci', 'utf8mb4'),
('utf8mb4_icelandic_ci', 'utf8mb4'),
('utf8mb4_latvian_ci', 'utf8mb4'),
('utf8mb4_romanian_ci', 'utf8mb4'),
('utf8mb4_slovenian_ci', 'utf8mb4'),
('utf8mb4_polish_ci', 'utf8mb4'),
('utf8mb4_estonian_ci', 'utf8mb4'),
('utf8mb4_spanish_ci', 'utf8mb4'),
('utf8mb4_swedish_ci', 'utf8mb4'),
('utf8mb4_turkish_ci', 'utf8mb4'),
('utf8mb4_czech_ci', 'utf8mb4'),
('utf8mb4_danish_ci', 'utf8mb4'),
('utf8mb4_lithuanian_ci', 'utf8mb4'),
('utf8mb4_slovak_ci', 'utf8mb4'),
('utf8mb4_spanish2_ci', 'utf8mb4'),
('utf8mb4_roman_ci', 'utf8mb4'),
('utf8mb4_persian_ci', 'utf8mb4'),
('utf8mb4_esperanto_ci', 'utf8mb4'),

('utf8mb4_hungarian_ci', 'utf8mb4'),
('utf8mb4_sinhala_ci', 'utf8mb4'),
('utf8mb4_german2_ci', 'utf8mb4'),
('utf8mb4_croatian_ci', 'utf8mb4'),
('utf8mb4_unicode_520_ci', 'utf8mb4'),
('utf8mb4_vietnamese_ci', 'utf8mb4'),
('cp1251_bulgarian_ci', 'cp1251'),
('cp1251_ukrainian_ci', 'cp1251'),
('cp1251_bin', 'cp1251'),
('cp1251_general_ci', 'cp1251'),
('cp1251_general_cs', 'cp1251'),
('utf16_general_ci', 'utf16'),
('utf16_bin', 'utf16'),
('utf16_unicode_ci', 'utf16'),
('utf16_icelandic_ci', 'utf16'),
('utf16_latvian_ci', 'utf16'),
('utf16_romanian_ci', 'utf16'),
('utf16_slovenian_ci', 'utf16'),
('utf16_polish_ci', 'utf16'),
('utf16_estonian_ci', 'utf16'),
('utf16_spanish_ci', 'utf16'),
('utf16_swedish_ci', 'utf16'),
('utf16_turkish_ci', 'utf16'),
('utf16_czech_ci', 'utf16'),
('utf16_danish_ci', 'utf16'),
('utf16_lithuanian_ci', 'utf16'),
('utf16_slovak_ci', 'utf16'),
('utf16_spanish2_ci', 'utf16'),
('utf16_roman_ci', 'utf16'),
('utf16_persian_ci', 'utf16'),
('utf16_esperanto_ci', 'utf16'),
('utf16_hungarian_ci', 'utf16'),
('utf16_sinhala_ci', 'utf16'),
('utf16_german2_ci', 'utf16'),
('utf16_croatian_ci', 'utf16'),
('utf16_unicode_520_ci', 'utf16'),
('utf16_vietnamese_ci', 'utf16'),
('utf16le_general_ci', 'utf16le'),
('utf16le_bin', 'utf16le'),
('cp1256_general_ci', 'cp1256'),
('cp1256_bin', 'cp1256'),
('cp1257_lithuanian_ci', 'cp1257'),
('cp1257_bin', 'cp1257'),
('cp1257_general_ci', 'cp1257'),
('utf32_general_ci', 'utf32'),
('utf32_bin', 'utf32'),
('utf32_unicode_ci', 'utf32'),
('utf32_icelandic_ci', 'utf32'),
('utf32_latvian_ci', 'utf32'),
('utf32_romanian_ci', 'utf32'),
('utf32_slovenian_ci', 'utf32'),
('utf32_polish_ci', 'utf32'),
('utf32_estonian_ci', 'utf32'),
('utf32_spanish_ci', 'utf32'),
('utf32_swedish_ci', 'utf32'),
('utf32_turkish_ci', 'utf32'),
('utf32_czech_ci', 'utf32'),
('utf32_danish_ci', 'utf32'),
('utf32_lithuanian_ci', 'utf32'),
('utf32_slovak_ci', 'utf32'),

('utf32_spanish2_ci', 'utf32'),
('utf32_roman_ci', 'utf32'),
('utf32_persian_ci', 'utf32'),
('utf32_esperanto_ci', 'utf32'),
('utf32_hungarian_ci', 'utf32'),
('utf32_sinhala_ci', 'utf32'),
('utf32_german2_ci', 'utf32'),
('utf32_croatian_ci', 'utf32'),
('utf32_unicode_520_ci', 'utf32'),
('utf32_vietnamese_ci', 'utf32'),
('binary', 'binary'),
('geostd8_general_ci', 'geostd8'),
('geostd8_bin', 'geostd8'),
('cp932_japanese_ci', 'cp932'),
('cp932_bin', 'cp932'),
('eucjpms_japanese_ci', 'eucjpms'),
('eucjpms_bin', 'eucjpms');
-- ---------------------------------------------------------- Table structure for table `COLUMNS`
-CREATE TEMPORARY TABLE `COLUMNS` (
`TABLE_CATALOG` varchar(512) NOT NULL DEFAULT '',
`TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
`COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
`ORDINAL_POSITION` bigint(21) unsigned NOT NULL DEFAULT '0',
`COLUMN_DEFAULT` longtext,
`IS_NULLABLE` varchar(3) NOT NULL DEFAULT '',
`DATA_TYPE` varchar(64) NOT NULL DEFAULT '',
`CHARACTER_MAXIMUM_LENGTH` bigint(21) unsigned DEFAULT NULL,
`CHARACTER_OCTET_LENGTH` bigint(21) unsigned DEFAULT NULL,
`NUMERIC_PRECISION` bigint(21) unsigned DEFAULT NULL,
`NUMERIC_SCALE` bigint(21) unsigned DEFAULT NULL,
`DATETIME_PRECISION` bigint(21) unsigned DEFAULT NULL,
`CHARACTER_SET_NAME` varchar(32) DEFAULT NULL,
`COLLATION_NAME` varchar(32) DEFAULT NULL,
`COLUMN_TYPE` longtext NOT NULL,
`COLUMN_KEY` varchar(3) NOT NULL DEFAULT '',
`EXTRA` varchar(30) NOT NULL DEFAULT '',
`PRIVILEGES` varchar(80) NOT NULL DEFAULT '',
`COLUMN_COMMENT` varchar(1024) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--- Dumping data for table `COLUMNS`
-INSERT INTO `COLUMNS` (`TABLE_CATALOG`, `TABLE_SCHEMA`, `TABLE_NAME`, `COLUMN_NA
ME`, `ORDINAL_POSITION`, `COLUMN_DEFAULT`, `IS_NULLABLE`, `DATA_TYPE`, `CHARACTE
R_MAXIMUM_LENGTH`, `CHARACTER_OCTET_LENGTH`, `NUMERIC_PRECISION`, `NUMERIC_SCALE
`, `DATETIME_PRECISION`, `CHARACTER_SET_NAME`, `COLLATION_NAME`, `COLUMN_TYPE`,
`COLUMN_KEY`, `EXTRA`, `PRIVILEGES`, `COLUMN_COMMENT`) VALUES
('def', 'information_schema', 'CHARACTER_SETS', 'CHARACTER_SET_NAME', 1, '', 'NO
', 'varchar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)'
, '', '', 'select', ''),
('def', 'information_schema', 'CHARACTER_SETS', 'DEFAULT_COLLATE_NAME', 2, '', '

NO', 'varchar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32
)', '', '', 'select', ''),
('def', 'information_schema', 'CHARACTER_SETS', 'DESCRIPTION', 3, '', 'NO', 'var
char', 60, 180, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(60)', '',
'', 'select', ''),
('def', 'information_schema', 'CHARACTER_SETS', 'MAXLEN', 4, '0', 'NO', 'bigint'
, NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(3)', '', '', 'select', ''),
('def', 'information_schema', 'COLLATIONS', 'COLLATION_NAME', 1, '', 'NO', 'varc
har', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '', ''
, 'select', ''),
('def', 'information_schema', 'COLLATIONS', 'CHARACTER_SET_NAME', 2, '', 'NO', '
varchar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', ''
, '', 'select', ''),
('def', 'information_schema', 'COLLATIONS', 'ID', 3, '0', 'NO', 'bigint', NULL,
NULL, 19, 0, NULL, NULL, NULL, 'bigint(11)', '', '', 'select', ''),
('def', 'information_schema', 'COLLATIONS', 'IS_DEFAULT', 4, '', 'NO', 'varchar'
, 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '', '', 'sele
ct', ''),
('def', 'information_schema', 'COLLATIONS', 'IS_COMPILED', 5, '', 'NO', 'varchar
', 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '', '', 'sel
ect', ''),
('def', 'information_schema', 'COLLATIONS', 'SORTLEN', 6, '0', 'NO', 'bigint', N
ULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(3)', '', '', 'select', ''),
('def', 'information_schema', 'COLLATION_CHARACTER_SET_APPLICABILITY', 'COLLATIO
N_NAME', 1, '', 'NO', 'varchar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general
_ci', 'varchar(32)', '', '', 'select', ''),
('def', 'information_schema', 'COLLATION_CHARACTER_SET_APPLICABILITY', 'CHARACTE
R_SET_NAME', 2, '', 'NO', 'varchar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_gen
eral_ci', 'varchar(32)', '', '', 'select', ''),
('def', 'information_schema', 'COLUMNS', 'TABLE_CATALOG', 1, '', 'NO', 'varchar'
, 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512)', '', ''
, 'select', ''),
('def', 'information_schema', 'COLUMNS', 'TABLE_SCHEMA', 2, '', 'NO', 'varchar',
64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 's
elect', ''),
('def', 'information_schema', 'COLUMNS', 'TABLE_NAME', 3, '', 'NO', 'varchar', 6
4, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'sel
ect', ''),
('def', 'information_schema', 'COLUMNS', 'COLUMN_NAME', 4, '', 'NO', 'varchar',
64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'se
lect', ''),
('def', 'information_schema', 'COLUMNS', 'ORDINAL_POSITION', 5, '0', 'NO', 'bigi
nt', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select
', ''),
('def', 'information_schema', 'COLUMNS', 'COLUMN_DEFAULT', 6, NULL, 'YES', 'long
text', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'lon
gtext', '', '', 'select', ''),
('def', 'information_schema', 'COLUMNS', 'IS_NULLABLE', 7, '', 'NO', 'varchar',
3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '', '', 'select
', ''),
('def', 'information_schema', 'COLUMNS', 'DATA_TYPE', 8, '', 'NO', 'varchar', 64
, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'sele
ct', ''),
('def', 'information_schema', 'COLUMNS', 'CHARACTER_MAXIMUM_LENGTH', 9, NULL, 'Y
ES', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '
', 'select', ''),
('def', 'information_schema', 'COLUMNS', 'CHARACTER_OCTET_LENGTH', 10, NULL, 'YE
S', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', ''
, 'select', ''),
('def', 'information_schema', 'COLUMNS', 'NUMERIC_PRECISION', 11, NULL, 'YES', '

bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'se
lect', ''),
('def', 'information_schema', 'COLUMNS', 'NUMERIC_SCALE', 12, NULL, 'YES', 'bigi
nt', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select
', ''),
('def', 'information_schema', 'COLUMNS', 'DATETIME_PRECISION', 13, NULL, 'YES',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 's
elect', ''),
('def', 'information_schema', 'COLUMNS', 'CHARACTER_SET_NAME', 14, NULL, 'YES',
'varchar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '
', '', 'select', ''),
('def', 'information_schema', 'COLUMNS', 'COLLATION_NAME', 15, NULL, 'YES', 'var
char', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '', '
', 'select', ''),
('def', 'information_schema', 'COLUMNS', 'COLUMN_TYPE', 16, NULL, 'NO', 'longtex
t', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'longte
xt', '', '', 'select', ''),
('def', 'information_schema', 'COLUMNS', 'COLUMN_KEY', 17, '', 'NO', 'varchar',
3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '', '', 'select
', ''),
('def', 'information_schema', 'COLUMNS', 'EXTRA', 18, '', 'NO', 'varchar', 30, 9
0, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(30)', '', '', 'select',
''),
('def', 'information_schema', 'COLUMNS', 'PRIVILEGES', 19, '', 'NO', 'varchar',
80, 240, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(80)', '', '', 'se
lect', ''),
('def', 'information_schema', 'COLUMNS', 'COLUMN_COMMENT', 20, '', 'NO', 'varcha
r', 1024, 3072, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(1024)', ''
, '', 'select', ''),
('def', 'information_schema', 'COLUMN_PRIVILEGES', 'GRANTEE', 1, '', 'NO', 'varc
har', 81, 243, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(81)', '', '
', 'select', ''),
('def', 'information_schema', 'COLUMN_PRIVILEGES', 'TABLE_CATALOG', 2, '', 'NO',
'varchar', 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512
)', '', '', 'select', ''),
('def', 'information_schema', 'COLUMN_PRIVILEGES', 'TABLE_SCHEMA', 3, '', 'NO',
'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)',
'', '', 'select', ''),
('def', 'information_schema', 'COLUMN_PRIVILEGES', 'TABLE_NAME', 4, '', 'NO', 'v
archar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', ''
, '', 'select', ''),
('def', 'information_schema', 'COLUMN_PRIVILEGES', 'COLUMN_NAME', 5, '', 'NO', '
varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '
', '', 'select', ''),
('def', 'information_schema', 'COLUMN_PRIVILEGES', 'PRIVILEGE_TYPE', 6, '', 'NO'
, 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)'
, '', '', 'select', ''),
('def', 'information_schema', 'COLUMN_PRIVILEGES', 'IS_GRANTABLE', 7, '', 'NO',
'varchar', 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '',
'', 'select', ''),
('def', 'information_schema', 'ENGINES', 'ENGINE', 1, '', 'NO', 'varchar', 64, 1
92, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'select'
, ''),
('def', 'information_schema', 'ENGINES', 'SUPPORT', 2, '', 'NO', 'varchar', 8, 2
4, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(8)', '', '', 'select',
''),
('def', 'information_schema', 'ENGINES', 'COMMENT', 3, '', 'NO', 'varchar', 80,
240, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(80)', '', '', 'select
', ''),
('def', 'information_schema', 'ENGINES', 'TRANSACTIONS', 4, NULL, 'YES', 'varcha

r', 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '', '', 'se
lect', ''),
('def', 'information_schema', 'ENGINES', 'XA', 5, NULL, 'YES', 'varchar', 3, 9,
NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '', '', 'select', '')
,
('def', 'information_schema', 'ENGINES', 'SAVEPOINTS', 6, NULL, 'YES', 'varchar'
, 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '', '', 'sele
ct', ''),
('def', 'information_schema', 'EVENTS', 'EVENT_CATALOG', 1, '', 'NO', 'varchar',
64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 's
elect', ''),
('def', 'information_schema', 'EVENTS', 'EVENT_SCHEMA', 2, '', 'NO', 'varchar',
64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'se
lect', ''),
('def', 'information_schema', 'EVENTS', 'EVENT_NAME', 3, '', 'NO', 'varchar', 64
, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'sele
ct', ''),
('def', 'information_schema', 'EVENTS', 'DEFINER', 4, '', 'NO', 'varchar', 77, 2
31, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(77)', '', '', 'select'
, ''),
('def', 'information_schema', 'EVENTS', 'TIME_ZONE', 5, '', 'NO', 'varchar', 64,
192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'selec
t', ''),
('def', 'information_schema', 'EVENTS', 'EVENT_BODY', 6, '', 'NO', 'varchar', 8,
24, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(8)', '', '', 'select'
, ''),
('def', 'information_schema', 'EVENTS', 'EVENT_DEFINITION', 7, NULL, 'NO', 'long
text', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'lon
gtext', '', '', 'select', ''),
('def', 'information_schema', 'EVENTS', 'EVENT_TYPE', 8, '', 'NO', 'varchar', 9,
27, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(9)', '', '', 'select'
, ''),
('def', 'information_schema', 'EVENTS', 'EXECUTE_AT', 9, NULL, 'YES', 'datetime'
, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', ''),
('def', 'information_schema', 'EVENTS', 'INTERVAL_VALUE', 10, NULL, 'YES', 'varc
har', 256, 768, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(256)', '',
'', 'select', ''),
('def', 'information_schema', 'EVENTS', 'INTERVAL_FIELD', 11, NULL, 'YES', 'varc
har', 18, 54, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(18)', '', ''
, 'select', ''),
('def', 'information_schema', 'EVENTS', 'SQL_MODE', 12, '', 'NO', 'varchar', 819
2, 24576, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(8192)', '', '',
'select', ''),
('def', 'information_schema', 'EVENTS', 'STARTS', 13, NULL, 'YES', 'datetime', N
ULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', ''),
('def', 'information_schema', 'EVENTS', 'ENDS', 14, NULL, 'YES', 'datetime', NUL
L, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', ''),
('def', 'information_schema', 'EVENTS', 'STATUS', 15, '', 'NO', 'varchar', 18, 5
4, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(18)', '', '', 'select',
''),
('def', 'information_schema', 'EVENTS', 'ON_COMPLETION', 16, '', 'NO', 'varchar'
, 12, 36, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(12)', '', '', 's
elect', ''),
('def', 'information_schema', 'EVENTS', 'CREATED', 17, '0000-00-00 00:00:00', 'N
O', 'datetime', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'sele
ct', ''),
('def', 'information_schema', 'EVENTS', 'LAST_ALTERED', 18, '0000-00-00 00:00:00
', 'NO', 'datetime', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '',
'select', ''),
('def', 'information_schema', 'EVENTS', 'LAST_EXECUTED', 19, NULL, 'YES', 'datet

ime', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', ''),
('def', 'information_schema', 'EVENTS', 'EVENT_COMMENT', 20, '', 'NO', 'varchar'
, 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', '
select', ''),
('def', 'information_schema', 'EVENTS', 'ORIGINATOR', 21, '0', 'NO', 'bigint', N
ULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(10)', '', '', 'select', ''),
('def', 'information_schema', 'EVENTS', 'CHARACTER_SET_CLIENT', 22, '', 'NO', 'v
archar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '',
'', 'select', ''),
('def', 'information_schema', 'EVENTS', 'COLLATION_CONNECTION', 23, '', 'NO', 'v
archar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '',
'', 'select', ''),
('def', 'information_schema', 'EVENTS', 'DATABASE_COLLATION', 24, '', 'NO', 'var
char', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '', '
', 'select', ''),
('def', 'information_schema', 'FILES', 'FILE_ID', 1, '0', 'NO', 'bigint', NULL,
NULL, 19, 0, NULL, NULL, NULL, 'bigint(4)', '', '', 'select', ''),
('def', 'information_schema', 'FILES', 'FILE_NAME', 2, NULL, 'YES', 'varchar', 6
4, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'sel
ect', ''),
('def', 'information_schema', 'FILES', 'FILE_TYPE', 3, '', 'NO', 'varchar', 20,
60, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(20)', '', '', 'select'
, ''),
('def', 'information_schema', 'FILES', 'TABLESPACE_NAME', 4, NULL, 'YES', 'varch
ar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', ''
, 'select', ''),
('def', 'information_schema', 'FILES', 'TABLE_CATALOG', 5, '', 'NO', 'varchar',
64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'se
lect', ''),
('def', 'information_schema', 'FILES', 'TABLE_SCHEMA', 6, NULL, 'YES', 'varchar'
, 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', '
select', ''),
('def', 'information_schema', 'FILES', 'TABLE_NAME', 7, NULL, 'YES', 'varchar',
64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'se
lect', ''),
('def', 'information_schema', 'FILES', 'LOGFILE_GROUP_NAME', 8, NULL, 'YES', 'va
rchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '',
'', 'select', ''),
('def', 'information_schema', 'FILES', 'LOGFILE_GROUP_NUMBER', 9, NULL, 'YES', '
bigint', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(4)', '', '', 'select', '')
,
('def', 'information_schema', 'FILES', 'ENGINE', 10, '', 'NO', 'varchar', 64, 19
2, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'select',
''),
('def', 'information_schema', 'FILES', 'FULLTEXT_KEYS', 11, NULL, 'YES', 'varcha
r', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '',
'select', ''),
('def', 'information_schema', 'FILES', 'DELETED_ROWS', 12, NULL, 'YES', 'bigint'
, NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(4)', '', '', 'select', ''),
('def', 'information_schema', 'FILES', 'UPDATE_COUNT', 13, NULL, 'YES', 'bigint'
, NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(4)', '', '', 'select', ''),
('def', 'information_schema', 'FILES', 'FREE_EXTENTS', 14, NULL, 'YES', 'bigint'
, NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(4)', '', '', 'select', ''),
('def', 'information_schema', 'FILES', 'TOTAL_EXTENTS', 15, NULL, 'YES', 'bigint
', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(4)', '', '', 'select', ''),
('def', 'information_schema', 'FILES', 'EXTENT_SIZE', 16, '0', 'NO', 'bigint', N
ULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(4)', '', '', 'select', ''),
('def', 'information_schema', 'FILES', 'INITIAL_SIZE', 17, NULL, 'YES', 'bigint'
, NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select',
''),

('def', 'information_schema', 'FILES', 'MAXIMUM_SIZE', 18, NULL, 'YES', 'bigint'


, NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select',
''),
('def', 'information_schema', 'FILES', 'AUTOEXTEND_SIZE', 19, NULL, 'YES', 'bigi
nt', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select
', ''),
('def', 'information_schema', 'FILES', 'CREATION_TIME', 20, NULL, 'YES', 'dateti
me', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', ''),
('def', 'information_schema', 'FILES', 'LAST_UPDATE_TIME', 21, NULL, 'YES', 'dat
etime', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', '')
,
('def', 'information_schema', 'FILES', 'LAST_ACCESS_TIME', 22, NULL, 'YES', 'dat
etime', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', '')
,
('def', 'information_schema', 'FILES', 'RECOVER_TIME', 23, NULL, 'YES', 'bigint'
, NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(4)', '', '', 'select', ''),
('def', 'information_schema', 'FILES', 'TRANSACTION_COUNTER', 24, NULL, 'YES', '
bigint', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(4)', '', '', 'select', '')
,
('def', 'information_schema', 'FILES', 'VERSION', 25, NULL, 'YES', 'bigint', NUL
L, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select', ''),
('def', 'information_schema', 'FILES', 'ROW_FORMAT', 26, NULL, 'YES', 'varchar',
10, 30, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(10)', '', '', 'se
lect', ''),
('def', 'information_schema', 'FILES', 'TABLE_ROWS', 27, NULL, 'YES', 'bigint',
NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select', ''
),
('def', 'information_schema', 'FILES', 'AVG_ROW_LENGTH', 28, NULL, 'YES', 'bigin
t', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select'
, ''),
('def', 'information_schema', 'FILES', 'DATA_LENGTH', 29, NULL, 'YES', 'bigint',
NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select', '
'),
('def', 'information_schema', 'FILES', 'MAX_DATA_LENGTH', 30, NULL, 'YES', 'bigi
nt', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select
', ''),
('def', 'information_schema', 'FILES', 'INDEX_LENGTH', 31, NULL, 'YES', 'bigint'
, NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select',
''),
('def', 'information_schema', 'FILES', 'DATA_FREE', 32, NULL, 'YES', 'bigint', N
ULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select', '')
,
('def', 'information_schema', 'FILES', 'CREATE_TIME', 33, NULL, 'YES', 'datetime
', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', ''),
('def', 'information_schema', 'FILES', 'UPDATE_TIME', 34, NULL, 'YES', 'datetime
', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', ''),
('def', 'information_schema', 'FILES', 'CHECK_TIME', 35, NULL, 'YES', 'datetime'
, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', ''),
('def', 'information_schema', 'FILES', 'CHECKSUM', 36, NULL, 'YES', 'bigint', NU
LL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select', ''),
('def', 'information_schema', 'FILES', 'STATUS', 37, '', 'NO', 'varchar', 20, 60
, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(20)', '', '', 'select',
''),
('def', 'information_schema', 'FILES', 'EXTRA', 38, NULL, 'YES', 'varchar', 255,
765, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(255)', '', '', 'sele
ct', ''),
('def', 'information_schema', 'GLOBAL_STATUS', 'VARIABLE_NAME', 1, '', 'NO', 'va
rchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '',
'', 'select', ''),
('def', 'information_schema', 'GLOBAL_STATUS', 'VARIABLE_VALUE', 2, NULL, 'YES',

'varchar', 1024, 3072, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(10


24)', '', '', 'select', ''),
('def', 'information_schema', 'GLOBAL_VARIABLES', 'VARIABLE_NAME', 1, '', 'NO',
'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)',
'', '', 'select', ''),
('def', 'information_schema', 'GLOBAL_VARIABLES', 'VARIABLE_VALUE', 2, NULL, 'YE
S', 'varchar', 1024, 3072, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar
(1024)', '', '', 'select', ''),
('def', 'information_schema', 'KEY_COLUMN_USAGE', 'CONSTRAINT_CATALOG', 1, '', '
NO', 'varchar', 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar
(512)', '', '', 'select', ''),
('def', 'information_schema', 'KEY_COLUMN_USAGE', 'CONSTRAINT_SCHEMA', 2, '', 'N
O', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64
)', '', '', 'select', ''),
('def', 'information_schema', 'KEY_COLUMN_USAGE', 'CONSTRAINT_NAME', 3, '', 'NO'
, 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)'
, '', '', 'select', ''),
('def', 'information_schema', 'KEY_COLUMN_USAGE', 'TABLE_CATALOG', 4, '', 'NO',
'varchar', 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512)
', '', '', 'select', ''),
('def', 'information_schema', 'KEY_COLUMN_USAGE', 'TABLE_SCHEMA', 5, '', 'NO', '
varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '
', '', 'select', ''),
('def', 'information_schema', 'KEY_COLUMN_USAGE', 'TABLE_NAME', 6, '', 'NO', 'va
rchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '',
'', 'select', ''),
('def', 'information_schema', 'KEY_COLUMN_USAGE', 'COLUMN_NAME', 7, '', 'NO', 'v
archar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', ''
, '', 'select', ''),
('def', 'information_schema', 'KEY_COLUMN_USAGE', 'ORDINAL_POSITION', 8, '0', 'N
O', 'bigint', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(10)', '', '', 'select
', ''),
('def', 'information_schema', 'KEY_COLUMN_USAGE', 'POSITION_IN_UNIQUE_CONSTRAINT
', 9, NULL, 'YES', 'bigint', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(10)',
'', '', 'select', ''),
('def', 'information_schema', 'KEY_COLUMN_USAGE', 'REFERENCED_TABLE_SCHEMA', 10,
NULL, 'YES', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', '
varchar(64)', '', '', 'select', ''),
('def', 'information_schema', 'KEY_COLUMN_USAGE', 'REFERENCED_TABLE_NAME', 11, N
ULL, 'YES', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'va
rchar(64)', '', '', 'select', ''),
('def', 'information_schema', 'KEY_COLUMN_USAGE', 'REFERENCED_COLUMN_NAME', 12,
NULL, 'YES', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'v
archar(64)', '', '', 'select', ''),
('def', 'information_schema', 'OPTIMIZER_TRACE', 'QUERY', 1, NULL, 'NO', 'longte
xt', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'longt
ext', '', '', 'select', ''),
('def', 'information_schema', 'OPTIMIZER_TRACE', 'TRACE', 2, NULL, 'NO', 'longte
xt', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'longt
ext', '', '', 'select', ''),
('def', 'information_schema', 'OPTIMIZER_TRACE', 'MISSING_BYTES_BEYOND_MAX_MEM_S
IZE', 3, '0', 'NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(20)', '', '
', 'select', ''),
('def', 'information_schema', 'OPTIMIZER_TRACE', 'INSUFFICIENT_PRIVILEGES', 4, '
0', 'NO', 'tinyint', NULL, NULL, 3, 0, NULL, NULL, NULL, 'tinyint(1)', '', '', '
select', ''),
('def', 'information_schema', 'PARAMETERS', 'SPECIFIC_CATALOG', 1, '', 'NO', 'va
rchar', 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512)',
'', '', 'select', ''),
('def', 'information_schema', 'PARAMETERS', 'SPECIFIC_SCHEMA', 2, '', 'NO', 'var

char', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '',
'', 'select', ''),
('def', 'information_schema', 'PARAMETERS', 'SPECIFIC_NAME', 3, '', 'NO', 'varch
ar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', ''
, 'select', ''),
('def', 'information_schema', 'PARAMETERS', 'ORDINAL_POSITION', 4, '0', 'NO', 'i
nt', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(21)', '', '', 'select', ''),
('def', 'information_schema', 'PARAMETERS', 'PARAMETER_MODE', 5, NULL, 'YES', 'v
archar', 5, 15, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(5)', '', '
', 'select', ''),
('def', 'information_schema', 'PARAMETERS', 'PARAMETER_NAME', 6, NULL, 'YES', 'v
archar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', ''
, '', 'select', ''),
('def', 'information_schema', 'PARAMETERS', 'DATA_TYPE', 7, '', 'NO', 'varchar',
64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 's
elect', ''),
('def', 'information_schema', 'PARAMETERS', 'CHARACTER_MAXIMUM_LENGTH', 8, NULL,
'YES', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(21)', '', '', 'select',
''),
('def', 'information_schema', 'PARAMETERS', 'CHARACTER_OCTET_LENGTH', 9, NULL, '
YES', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(21)', '', '', 'select', '
'),
('def', 'information_schema', 'PARAMETERS', 'NUMERIC_PRECISION', 10, NULL, 'YES'
, 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '',
'select', ''),
('def', 'information_schema', 'PARAMETERS', 'NUMERIC_SCALE', 11, NULL, 'YES', 'i
nt', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(21)', '', '', 'select', ''),
('def', 'information_schema', 'PARAMETERS', 'DATETIME_PRECISION', 12, NULL, 'YES
', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '',
'select', ''),
('def', 'information_schema', 'PARAMETERS', 'CHARACTER_SET_NAME', 13, NULL, 'YES
', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)
', '', '', 'select', ''),
('def', 'information_schema', 'PARAMETERS', 'COLLATION_NAME', 14, NULL, 'YES', '
varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '
', '', 'select', ''),
('def', 'information_schema', 'PARAMETERS', 'DTD_IDENTIFIER', 15, NULL, 'NO', 'l
ongtext', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', '
longtext', '', '', 'select', ''),
('def', 'information_schema', 'PARAMETERS', 'ROUTINE_TYPE', 16, '', 'NO', 'varch
ar', 9, 27, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(9)', '', '', '
select', ''),
('def', 'information_schema', 'PARTITIONS', 'TABLE_CATALOG', 1, '', 'NO', 'varch
ar', 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512)', '',
'', 'select', ''),
('def', 'information_schema', 'PARTITIONS', 'TABLE_SCHEMA', 2, '', 'NO', 'varcha
r', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '',
'select', ''),
('def', 'information_schema', 'PARTITIONS', 'TABLE_NAME', 3, '', 'NO', 'varchar'
, 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', '
select', ''),
('def', 'information_schema', 'PARTITIONS', 'PARTITION_NAME', 4, NULL, 'YES', 'v
archar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', ''
, '', 'select', ''),
('def', 'information_schema', 'PARTITIONS', 'SUBPARTITION_NAME', 5, NULL, 'YES',
'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)',
'', '', 'select', ''),
('def', 'information_schema', 'PARTITIONS', 'PARTITION_ORDINAL_POSITION', 6, NUL
L, 'YES', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned',
'', '', 'select', ''),

('def', 'information_schema', 'PARTITIONS', 'SUBPARTITION_ORDINAL_POSITION', 7,


NULL, 'YES', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned
', '', '', 'select', ''),
('def', 'information_schema', 'PARTITIONS', 'PARTITION_METHOD', 8, NULL, 'YES',
'varchar', 18, 54, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(18)', '
', '', 'select', ''),
('def', 'information_schema', 'PARTITIONS', 'SUBPARTITION_METHOD', 9, NULL, 'YES
', 'varchar', 12, 36, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(12)'
, '', '', 'select', ''),
('def', 'information_schema', 'PARTITIONS', 'PARTITION_EXPRESSION', 10, NULL, 'Y
ES', 'longtext', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_general
_ci', 'longtext', '', '', 'select', ''),
('def', 'information_schema', 'PARTITIONS', 'SUBPARTITION_EXPRESSION', 11, NULL,
'YES', 'longtext', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_gene
ral_ci', 'longtext', '', '', 'select', ''),
('def', 'information_schema', 'PARTITIONS', 'PARTITION_DESCRIPTION', 12, NULL, '
YES', 'longtext', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_genera
l_ci', 'longtext', '', '', 'select', ''),
('def', 'information_schema', 'PARTITIONS', 'TABLE_ROWS', 13, '0', 'NO', 'bigint
', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select',
''),
('def', 'information_schema', 'PARTITIONS', 'AVG_ROW_LENGTH', 14, '0', 'NO', 'bi
gint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'sele
ct', ''),
('def', 'information_schema', 'PARTITIONS', 'DATA_LENGTH', 15, '0', 'NO', 'bigin
t', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select'
, ''),
('def', 'information_schema', 'PARTITIONS', 'MAX_DATA_LENGTH', 16, NULL, 'YES',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 's
elect', ''),
('def', 'information_schema', 'PARTITIONS', 'INDEX_LENGTH', 17, '0', 'NO', 'bigi
nt', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select
', ''),
('def', 'information_schema', 'PARTITIONS', 'DATA_FREE', 18, '0', 'NO', 'bigint'
, NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select',
''),
('def', 'information_schema', 'PARTITIONS', 'CREATE_TIME', 19, NULL, 'YES', 'dat
etime', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', '')
,
('def', 'information_schema', 'PARTITIONS', 'UPDATE_TIME', 20, NULL, 'YES', 'dat
etime', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', '')
,
('def', 'information_schema', 'PARTITIONS', 'CHECK_TIME', 21, NULL, 'YES', 'date
time', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', ''),
('def', 'information_schema', 'PARTITIONS', 'CHECKSUM', 22, NULL, 'YES', 'bigint
', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select',
''),
('def', 'information_schema', 'PARTITIONS', 'PARTITION_COMMENT', 23, '', 'NO', '
varchar', 80, 240, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(80)', '
', '', 'select', ''),
('def', 'information_schema', 'PARTITIONS', 'NODEGROUP', 24, '', 'NO', 'varchar'
, 12, 36, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(12)', '', '', 's
elect', ''),
('def', 'information_schema', 'PARTITIONS', 'TABLESPACE_NAME', 25, NULL, 'YES',
'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)',
'', '', 'select', ''),
('def', 'information_schema', 'PLUGINS', 'PLUGIN_NAME', 1, '', 'NO', 'varchar',
64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'se
lect', ''),
('def', 'information_schema', 'PLUGINS', 'PLUGIN_VERSION', 2, '', 'NO', 'varchar

', 20, 60, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(20)', '', '', '
select', ''),
('def', 'information_schema', 'PLUGINS', 'PLUGIN_STATUS', 3, '', 'NO', 'varchar'
, 10, 30, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(10)', '', '', 's
elect', ''),
('def', 'information_schema', 'PLUGINS', 'PLUGIN_TYPE', 4, '', 'NO', 'varchar',
80, 240, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(80)', '', '', 'se
lect', ''),
('def', 'information_schema', 'PLUGINS', 'PLUGIN_TYPE_VERSION', 5, '', 'NO', 'va
rchar', 20, 60, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(20)', '',
'', 'select', ''),
('def', 'information_schema', 'PLUGINS', 'PLUGIN_LIBRARY', 6, NULL, 'YES', 'varc
har', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '
', 'select', ''),
('def', 'information_schema', 'PLUGINS', 'PLUGIN_LIBRARY_VERSION', 7, NULL, 'YES
', 'varchar', 20, 60, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(20)'
, '', '', 'select', ''),
('def', 'information_schema', 'PLUGINS', 'PLUGIN_AUTHOR', 8, NULL, 'YES', 'varch
ar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', ''
, 'select', ''),
('def', 'information_schema', 'PLUGINS', 'PLUGIN_DESCRIPTION', 9, NULL, 'YES', '
longtext', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_general_ci',
'longtext', '', '', 'select', ''),
('def', 'information_schema', 'PLUGINS', 'PLUGIN_LICENSE', 10, NULL, 'YES', 'var
char', 80, 240, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(80)', '',
'', 'select', ''),
('def', 'information_schema', 'PLUGINS', 'LOAD_OPTION', 11, '', 'NO', 'varchar',
64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 's
elect', ''),
('def', 'information_schema', 'PROCESSLIST', 'ID', 1, '0', 'NO', 'bigint', NULL,
NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select', ''),
('def', 'information_schema', 'PROCESSLIST', 'USER', 2, '', 'NO', 'varchar', 16,
48, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(16)', '', '', 'select
', ''),
('def', 'information_schema', 'PROCESSLIST', 'HOST', 3, '', 'NO', 'varchar', 64,
192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'selec
t', ''),
('def', 'information_schema', 'PROCESSLIST', 'DB', 4, NULL, 'YES', 'varchar', 64
, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'sele
ct', ''),
('def', 'information_schema', 'PROCESSLIST', 'COMMAND', 5, '', 'NO', 'varchar',
16, 48, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(16)', '', '', 'sel
ect', ''),
('def', 'information_schema', 'PROCESSLIST', 'TIME', 6, '0', 'NO', 'int', NULL,
NULL, 10, 0, NULL, NULL, NULL, 'int(7)', '', '', 'select', ''),
('def', 'information_schema', 'PROCESSLIST', 'STATE', 7, NULL, 'YES', 'varchar',
64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 's
elect', ''),
('def', 'information_schema', 'PROCESSLIST', 'INFO', 8, NULL, 'YES', 'longtext',
4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'longtext'
, '', '', 'select', ''),
('def', 'information_schema', 'PROFILING', 'QUERY_ID', 1, '0', 'NO', 'int', NULL
, NULL, 10, 0, NULL, NULL, NULL, 'int(20)', '', '', 'select', ''),
('def', 'information_schema', 'PROFILING', 'SEQ', 2, '0', 'NO', 'int', NULL, NUL
L, 10, 0, NULL, NULL, NULL, 'int(20)', '', '', 'select', ''),
('def', 'information_schema', 'PROFILING', 'STATE', 3, '', 'NO', 'varchar', 30,
90, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(30)', '', '', 'select'
, ''),
('def', 'information_schema', 'PROFILING', 'DURATION', 4, '0.000000', 'NO', 'dec
imal', NULL, NULL, 9, 6, NULL, NULL, NULL, 'decimal(9,6)', '', '', 'select', '')

,
('def', 'information_schema', 'PROFILING', 'CPU_USER', 5, NULL, 'YES', 'decimal'
, NULL, NULL, 9, 6, NULL, NULL, NULL, 'decimal(9,6)', '', '', 'select', ''),
('def', 'information_schema', 'PROFILING', 'CPU_SYSTEM', 6, NULL, 'YES', 'decima
l', NULL, NULL, 9, 6, NULL, NULL, NULL, 'decimal(9,6)', '', '', 'select', ''),
('def', 'information_schema', 'PROFILING', 'CONTEXT_VOLUNTARY', 7, NULL, 'YES',
'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(20)', '', '', 'select', ''),
('def', 'information_schema', 'PROFILING', 'CONTEXT_INVOLUNTARY', 8, NULL, 'YES'
, 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(20)', '', '', 'select', ''),
('def', 'information_schema', 'PROFILING', 'BLOCK_OPS_IN', 9, NULL, 'YES', 'int'
, NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(20)', '', '', 'select', ''),
('def', 'information_schema', 'PROFILING', 'BLOCK_OPS_OUT', 10, NULL, 'YES', 'in
t', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(20)', '', '', 'select', ''),
('def', 'information_schema', 'PROFILING', 'MESSAGES_SENT', 11, NULL, 'YES', 'in
t', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(20)', '', '', 'select', ''),
('def', 'information_schema', 'PROFILING', 'MESSAGES_RECEIVED', 12, NULL, 'YES',
'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(20)', '', '', 'select', ''),
('def', 'information_schema', 'PROFILING', 'PAGE_FAULTS_MAJOR', 13, NULL, 'YES',
'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(20)', '', '', 'select', ''),
('def', 'information_schema', 'PROFILING', 'PAGE_FAULTS_MINOR', 14, NULL, 'YES',
'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(20)', '', '', 'select', ''),
('def', 'information_schema', 'PROFILING', 'SWAPS', 15, NULL, 'YES', 'int', NULL
, NULL, 10, 0, NULL, NULL, NULL, 'int(20)', '', '', 'select', ''),
('def', 'information_schema', 'PROFILING', 'SOURCE_FUNCTION', 16, NULL, 'YES', '
varchar', 30, 90, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(30)', ''
, '', 'select', ''),
('def', 'information_schema', 'PROFILING', 'SOURCE_FILE', 17, NULL, 'YES', 'varc
har', 20, 60, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(20)', '', ''
, 'select', ''),
('def', 'information_schema', 'PROFILING', 'SOURCE_LINE', 18, NULL, 'YES', 'int'
, NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(20)', '', '', 'select', ''),
('def', 'information_schema', 'REFERENTIAL_CONSTRAINTS', 'CONSTRAINT_CATALOG', 1
, '', 'NO', 'varchar', 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', '
varchar(512)', '', '', 'select', ''),
('def', 'information_schema', 'REFERENTIAL_CONSTRAINTS', 'CONSTRAINT_SCHEMA', 2,
'', 'NO', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'var
char(64)', '', '', 'select', ''),
('def', 'information_schema', 'REFERENTIAL_CONSTRAINTS', 'CONSTRAINT_NAME', 3, '
', 'NO', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varch
ar(64)', '', '', 'select', ''),
('def', 'information_schema', 'REFERENTIAL_CONSTRAINTS', 'UNIQUE_CONSTRAINT_CATA
LOG', 4, '', 'NO', 'varchar', 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general
_ci', 'varchar(512)', '', '', 'select', ''),
('def', 'information_schema', 'REFERENTIAL_CONSTRAINTS', 'UNIQUE_CONSTRAINT_SCHE
MA', 5, '', 'NO', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci
', 'varchar(64)', '', '', 'select', ''),
('def', 'information_schema', 'REFERENTIAL_CONSTRAINTS', 'UNIQUE_CONSTRAINT_NAME
', 6, NULL, 'YES', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_c
i', 'varchar(64)', '', '', 'select', ''),
('def', 'information_schema', 'REFERENTIAL_CONSTRAINTS', 'MATCH_OPTION', 7, '',
'NO', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(
64)', '', '', 'select', ''),
('def', 'information_schema', 'REFERENTIAL_CONSTRAINTS', 'UPDATE_RULE', 8, '', '
NO', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(6
4)', '', '', 'select', ''),
('def', 'information_schema', 'REFERENTIAL_CONSTRAINTS', 'DELETE_RULE', 9, '', '
NO', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(6
4)', '', '', 'select', ''),
('def', 'information_schema', 'REFERENTIAL_CONSTRAINTS', 'TABLE_NAME', 10, '', '
NO', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(6

4)', '', '', 'select', ''),


('def', 'information_schema', 'REFERENTIAL_CONSTRAINTS', 'REFERENCED_TABLE_NAME'
, 11, '', 'NO', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci',
'varchar(64)', '', '', 'select', ''),
('def', 'information_schema', 'ROUTINES', 'SPECIFIC_NAME', 1, '', 'NO', 'varchar
', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '',
'select', ''),
('def', 'information_schema', 'ROUTINES', 'ROUTINE_CATALOG', 2, '', 'NO', 'varch
ar', 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512)', '',
'', 'select', ''),
('def', 'information_schema', 'ROUTINES', 'ROUTINE_SCHEMA', 3, '', 'NO', 'varcha
r', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '',
'select', ''),
('def', 'information_schema', 'ROUTINES', 'ROUTINE_NAME', 4, '', 'NO', 'varchar'
, 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', '
select', ''),
('def', 'information_schema', 'ROUTINES', 'ROUTINE_TYPE', 5, '', 'NO', 'varchar'
, 9, 27, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(9)', '', '', 'sel
ect', ''),
('def', 'information_schema', 'ROUTINES', 'DATA_TYPE', 6, '', 'NO', 'varchar', 6
4, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'sel
ect', ''),
('def', 'information_schema', 'ROUTINES', 'CHARACTER_MAXIMUM_LENGTH', 7, NULL, '
YES', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(21)', '', '', 'select', '
'),
('def', 'information_schema', 'ROUTINES', 'CHARACTER_OCTET_LENGTH', 8, NULL, 'YE
S', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(21)', '', '', 'select', '')
,
('def', 'information_schema', 'ROUTINES', 'NUMERIC_PRECISION', 9, NULL, 'YES', '
bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'se
lect', ''),
('def', 'information_schema', 'ROUTINES', 'NUMERIC_SCALE', 10, NULL, 'YES', 'int
', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(21)', '', '', 'select', ''),
('def', 'information_schema', 'ROUTINES', 'DATETIME_PRECISION', 11, NULL, 'YES',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', '
select', ''),
('def', 'information_schema', 'ROUTINES', 'CHARACTER_SET_NAME', 12, NULL, 'YES',
'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)',
'', '', 'select', ''),
('def', 'information_schema', 'ROUTINES', 'COLLATION_NAME', 13, NULL, 'YES', 'va
rchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '',
'', 'select', ''),
('def', 'information_schema', 'ROUTINES', 'DTD_IDENTIFIER', 14, NULL, 'YES', 'lo
ngtext', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'l
ongtext', '', '', 'select', ''),
('def', 'information_schema', 'ROUTINES', 'ROUTINE_BODY', 15, '', 'NO', 'varchar
', 8, 24, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(8)', '', '', 'se
lect', ''),
('def', 'information_schema', 'ROUTINES', 'ROUTINE_DEFINITION', 16, NULL, 'YES',
'longtext', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_general_ci'
, 'longtext', '', '', 'select', ''),
('def', 'information_schema', 'ROUTINES', 'EXTERNAL_NAME', 17, NULL, 'YES', 'var
char', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '',
'', 'select', ''),
('def', 'information_schema', 'ROUTINES', 'EXTERNAL_LANGUAGE', 18, NULL, 'YES',
'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)',
'', '', 'select', ''),
('def', 'information_schema', 'ROUTINES', 'PARAMETER_STYLE', 19, '', 'NO', 'varc
har', 8, 24, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(8)', '', '',
'select', ''),

('def', 'information_schema', 'ROUTINES', 'IS_DETERMINISTIC', 20, '', 'NO', 'var


char', 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '', '',
'select', ''),
('def', 'information_schema', 'ROUTINES', 'SQL_DATA_ACCESS', 21, '', 'NO', 'varc
har', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '
', 'select', ''),
('def', 'information_schema', 'ROUTINES', 'SQL_PATH', 22, NULL, 'YES', 'varchar'
, 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', '
select', ''),
('def', 'information_schema', 'ROUTINES', 'SECURITY_TYPE', 23, '', 'NO', 'varcha
r', 7, 21, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(7)', '', '', 's
elect', ''),
('def', 'information_schema', 'ROUTINES', 'CREATED', 24, '0000-00-00 00:00:00',
'NO', 'datetime', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'se
lect', ''),
('def', 'information_schema', 'ROUTINES', 'LAST_ALTERED', 25, '0000-00-00 00:00:
00', 'NO', 'datetime', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', ''
, 'select', ''),
('def', 'information_schema', 'ROUTINES', 'SQL_MODE', 26, '', 'NO', 'varchar', 8
192, 24576, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(8192)', '', ''
, 'select', ''),
('def', 'information_schema', 'ROUTINES', 'ROUTINE_COMMENT', 27, NULL, 'NO', 'lo
ngtext', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'l
ongtext', '', '', 'select', ''),
('def', 'information_schema', 'ROUTINES', 'DEFINER', 28, '', 'NO', 'varchar', 77
, 231, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(77)', '', '', 'sele
ct', ''),
('def', 'information_schema', 'ROUTINES', 'CHARACTER_SET_CLIENT', 29, '', 'NO',
'varchar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '
', '', 'select', ''),
('def', 'information_schema', 'ROUTINES', 'COLLATION_CONNECTION', 30, '', 'NO',
'varchar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '
', '', 'select', ''),
('def', 'information_schema', 'ROUTINES', 'DATABASE_COLLATION', 31, '', 'NO', 'v
archar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '',
'', 'select', ''),
('def', 'information_schema', 'SCHEMATA', 'CATALOG_NAME', 1, '', 'NO', 'varchar'
, 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512)', '', ''
, 'select', ''),
('def', 'information_schema', 'SCHEMATA', 'SCHEMA_NAME', 2, '', 'NO', 'varchar',
64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 's
elect', ''),
('def', 'information_schema', 'SCHEMATA', 'DEFAULT_CHARACTER_SET_NAME', 3, '', '
NO', 'varchar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32
)', '', '', 'select', ''),
('def', 'information_schema', 'SCHEMATA', 'DEFAULT_COLLATION_NAME', 4, '', 'NO',
'varchar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)',
'', '', 'select', ''),
('def', 'information_schema', 'SCHEMATA', 'SQL_PATH', 5, NULL, 'YES', 'varchar',
512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512)', '', '',
'select', ''),
('def', 'information_schema', 'SCHEMA_PRIVILEGES', 'GRANTEE', 1, '', 'NO', 'varc
har', 81, 243, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(81)', '', '
', 'select', ''),
('def', 'information_schema', 'SCHEMA_PRIVILEGES', 'TABLE_CATALOG', 2, '', 'NO',
'varchar', 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512
)', '', '', 'select', ''),
('def', 'information_schema', 'SCHEMA_PRIVILEGES', 'TABLE_SCHEMA', 3, '', 'NO',
'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)',
'', '', 'select', ''),

('def', 'information_schema', 'SCHEMA_PRIVILEGES', 'PRIVILEGE_TYPE', 4, '', 'NO'


, 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)'
, '', '', 'select', ''),
('def', 'information_schema', 'SCHEMA_PRIVILEGES', 'IS_GRANTABLE', 5, '', 'NO',
'varchar', 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '',
'', 'select', ''),
('def', 'information_schema', 'SESSION_STATUS', 'VARIABLE_NAME', 1, '', 'NO', 'v
archar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', ''
, '', 'select', ''),
('def', 'information_schema', 'SESSION_STATUS', 'VARIABLE_VALUE', 2, NULL, 'YES'
, 'varchar', 1024, 3072, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(1
024)', '', '', 'select', ''),
('def', 'information_schema', 'SESSION_VARIABLES', 'VARIABLE_NAME', 1, '', 'NO',
'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)',
'', '', 'select', ''),
('def', 'information_schema', 'SESSION_VARIABLES', 'VARIABLE_VALUE', 2, NULL, 'Y
ES', 'varchar', 1024, 3072, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varcha
r(1024)', '', '', 'select', ''),
('def', 'information_schema', 'STATISTICS', 'TABLE_CATALOG', 1, '', 'NO', 'varch
ar', 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512)', '',
'', 'select', ''),
('def', 'information_schema', 'STATISTICS', 'TABLE_SCHEMA', 2, '', 'NO', 'varcha
r', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '',
'select', ''),
('def', 'information_schema', 'STATISTICS', 'TABLE_NAME', 3, '', 'NO', 'varchar'
, 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', '
select', ''),
('def', 'information_schema', 'STATISTICS', 'NON_UNIQUE', 4, '0', 'NO', 'bigint'
, NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(1)', '', '', 'select', ''),
('def', 'information_schema', 'STATISTICS', 'INDEX_SCHEMA', 5, '', 'NO', 'varcha
r', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '',
'select', ''),
('def', 'information_schema', 'STATISTICS', 'INDEX_NAME', 6, '', 'NO', 'varchar'
, 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', '
select', ''),
('def', 'information_schema', 'STATISTICS', 'SEQ_IN_INDEX', 7, '0', 'NO', 'bigin
t', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(2)', '', '', 'select', ''),
('def', 'information_schema', 'STATISTICS', 'COLUMN_NAME', 8, '', 'NO', 'varchar
', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '',
'select', ''),
('def', 'information_schema', 'STATISTICS', 'COLLATION', 9, NULL, 'YES', 'varcha
r', 1, 3, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(1)', '', '', 'se
lect', ''),
('def', 'information_schema', 'STATISTICS', 'CARDINALITY', 10, NULL, 'YES', 'big
int', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(21)', '', '', 'select', ''),
('def', 'information_schema', 'STATISTICS', 'SUB_PART', 11, NULL, 'YES', 'bigint
', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(3)', '', '', 'select', ''),
('def', 'information_schema', 'STATISTICS', 'PACKED', 12, NULL, 'YES', 'varchar'
, 10, 30, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(10)', '', '', 's
elect', ''),
('def', 'information_schema', 'STATISTICS', 'NULLABLE', 13, '', 'NO', 'varchar',
3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '', '', 'selec
t', ''),
('def', 'information_schema', 'STATISTICS', 'INDEX_TYPE', 14, '', 'NO', 'varchar
', 16, 48, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(16)', '', '', '
select', ''),
('def', 'information_schema', 'STATISTICS', 'COMMENT', 15, NULL, 'YES', 'varchar
', 16, 48, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(16)', '', '', '
select', ''),
('def', 'information_schema', 'STATISTICS', 'INDEX_COMMENT', 16, '', 'NO', 'varc

har', 1024, 3072, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(1024)',


'', '', 'select', ''),
('def', 'information_schema', 'TABLES', 'TABLE_CATALOG', 1, '', 'NO', 'varchar',
512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512)', '', '',
'select', ''),
('def', 'information_schema', 'TABLES', 'TABLE_SCHEMA', 2, '', 'NO', 'varchar',
64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'se
lect', ''),
('def', 'information_schema', 'TABLES', 'TABLE_NAME', 3, '', 'NO', 'varchar', 64
, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'sele
ct', ''),
('def', 'information_schema', 'TABLES', 'TABLE_TYPE', 4, '', 'NO', 'varchar', 64
, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'sele
ct', ''),
('def', 'information_schema', 'TABLES', 'ENGINE', 5, NULL, 'YES', 'varchar', 64,
192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'selec
t', ''),
('def', 'information_schema', 'TABLES', 'VERSION', 6, NULL, 'YES', 'bigint', NUL
L, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select', ''),
('def', 'information_schema', 'TABLES', 'ROW_FORMAT', 7, NULL, 'YES', 'varchar',
10, 30, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(10)', '', '', 'se
lect', ''),
('def', 'information_schema', 'TABLES', 'TABLE_ROWS', 8, NULL, 'YES', 'bigint',
NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select', ''
),
('def', 'information_schema', 'TABLES', 'AVG_ROW_LENGTH', 9, NULL, 'YES', 'bigin
t', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select'
, ''),
('def', 'information_schema', 'TABLES', 'DATA_LENGTH', 10, NULL, 'YES', 'bigint'
, NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select',
''),
('def', 'information_schema', 'TABLES', 'MAX_DATA_LENGTH', 11, NULL, 'YES', 'big
int', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'selec
t', ''),
('def', 'information_schema', 'TABLES', 'INDEX_LENGTH', 12, NULL, 'YES', 'bigint
', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select',
'');
INSERT INTO `COLUMNS` (`TABLE_CATALOG`, `TABLE_SCHEMA`, `TABLE_NAME`, `COLUMN_NA
ME`, `ORDINAL_POSITION`, `COLUMN_DEFAULT`, `IS_NULLABLE`, `DATA_TYPE`, `CHARACTE
R_MAXIMUM_LENGTH`, `CHARACTER_OCTET_LENGTH`, `NUMERIC_PRECISION`, `NUMERIC_SCALE
`, `DATETIME_PRECISION`, `CHARACTER_SET_NAME`, `COLLATION_NAME`, `COLUMN_TYPE`,
`COLUMN_KEY`, `EXTRA`, `PRIVILEGES`, `COLUMN_COMMENT`) VALUES
('def', 'information_schema', 'TABLES', 'DATA_FREE', 13, NULL, 'YES', 'bigint',
NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select', ''
),
('def', 'information_schema', 'TABLES', 'AUTO_INCREMENT', 14, NULL, 'YES', 'bigi
nt', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select
', ''),
('def', 'information_schema', 'TABLES', 'CREATE_TIME', 15, NULL, 'YES', 'datetim
e', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', ''),
('def', 'information_schema', 'TABLES', 'UPDATE_TIME', 16, NULL, 'YES', 'datetim
e', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', ''),
('def', 'information_schema', 'TABLES', 'CHECK_TIME', 17, NULL, 'YES', 'datetime
', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', ''),
('def', 'information_schema', 'TABLES', 'TABLE_COLLATION', 18, NULL, 'YES', 'var
char', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '', '
', 'select', ''),
('def', 'information_schema', 'TABLES', 'CHECKSUM', 19, NULL, 'YES', 'bigint', N
ULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select', '')
,

('def', 'information_schema', 'TABLES', 'CREATE_OPTIONS', 20, NULL, 'YES', 'varc


har', 255, 765, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(255)', '',
'', 'select', ''),
('def', 'information_schema', 'TABLES', 'TABLE_COMMENT', 21, '', 'NO', 'varchar'
, 2048, 6144, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(2048)', '',
'', 'select', ''),
('def', 'information_schema', 'TABLESPACES', 'TABLESPACE_NAME', 1, '', 'NO', 'va
rchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '',
'', 'select', ''),
('def', 'information_schema', 'TABLESPACES', 'ENGINE', 2, '', 'NO', 'varchar', 6
4, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'sel
ect', ''),
('def', 'information_schema', 'TABLESPACES', 'TABLESPACE_TYPE', 3, NULL, 'YES',
'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)',
'', '', 'select', ''),
('def', 'information_schema', 'TABLESPACES', 'LOGFILE_GROUP_NAME', 4, NULL, 'YES
', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)
', '', '', 'select', ''),
('def', 'information_schema', 'TABLESPACES', 'EXTENT_SIZE', 5, NULL, 'YES', 'big
int', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'selec
t', ''),
('def', 'information_schema', 'TABLESPACES', 'AUTOEXTEND_SIZE', 6, NULL, 'YES',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 's
elect', ''),
('def', 'information_schema', 'TABLESPACES', 'MAXIMUM_SIZE', 7, NULL, 'YES', 'bi
gint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'sele
ct', ''),
('def', 'information_schema', 'TABLESPACES', 'NODEGROUP_ID', 8, NULL, 'YES', 'bi
gint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'sele
ct', ''),
('def', 'information_schema', 'TABLESPACES', 'TABLESPACE_COMMENT', 9, NULL, 'YES
', 'varchar', 2048, 6144, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(
2048)', '', '', 'select', ''),
('def', 'information_schema', 'TABLE_CONSTRAINTS', 'CONSTRAINT_CATALOG', 1, '',
'NO', 'varchar', 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varcha
r(512)', '', '', 'select', ''),
('def', 'information_schema', 'TABLE_CONSTRAINTS', 'CONSTRAINT_SCHEMA', 2, '', '
NO', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(6
4)', '', '', 'select', ''),
('def', 'information_schema', 'TABLE_CONSTRAINTS', 'CONSTRAINT_NAME', 3, '', 'NO
', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)
', '', '', 'select', ''),
('def', 'information_schema', 'TABLE_CONSTRAINTS', 'TABLE_SCHEMA', 4, '', 'NO',
'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)',
'', '', 'select', ''),
('def', 'information_schema', 'TABLE_CONSTRAINTS', 'TABLE_NAME', 5, '', 'NO', 'v
archar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', ''
, '', 'select', ''),
('def', 'information_schema', 'TABLE_CONSTRAINTS', 'CONSTRAINT_TYPE', 6, '', 'NO
', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)
', '', '', 'select', ''),
('def', 'information_schema', 'TABLE_PRIVILEGES', 'GRANTEE', 1, '', 'NO', 'varch
ar', 81, 243, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(81)', '', ''
, 'select', ''),
('def', 'information_schema', 'TABLE_PRIVILEGES', 'TABLE_CATALOG', 2, '', 'NO',
'varchar', 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512)
', '', '', 'select', ''),
('def', 'information_schema', 'TABLE_PRIVILEGES', 'TABLE_SCHEMA', 3, '', 'NO', '
varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '
', '', 'select', ''),

('def', 'information_schema', 'TABLE_PRIVILEGES', 'TABLE_NAME', 4, '', 'NO', 'va


rchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '',
'', 'select', ''),
('def', 'information_schema', 'TABLE_PRIVILEGES', 'PRIVILEGE_TYPE', 5, '', 'NO',
'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)',
'', '', 'select', ''),
('def', 'information_schema', 'TABLE_PRIVILEGES', 'IS_GRANTABLE', 6, '', 'NO', '
varchar', 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '', '
', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'TRIGGER_CATALOG', 1, '', 'NO', 'varch
ar', 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512)', '',
'', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'TRIGGER_SCHEMA', 2, '', 'NO', 'varcha
r', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '',
'select', ''),
('def', 'information_schema', 'TRIGGERS', 'TRIGGER_NAME', 3, '', 'NO', 'varchar'
, 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', '
select', ''),
('def', 'information_schema', 'TRIGGERS', 'EVENT_MANIPULATION', 4, '', 'NO', 'va
rchar', 6, 18, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(6)', '', ''
, 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'EVENT_OBJECT_CATALOG', 5, '', 'NO', '
varchar', 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512)'
, '', '', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'EVENT_OBJECT_SCHEMA', 6, '', 'NO', 'v
archar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', ''
, '', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'EVENT_OBJECT_TABLE', 7, '', 'NO', 'va
rchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '',
'', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'ACTION_ORDER', 8, '0', 'NO', 'bigint'
, NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(4)', '', '', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'ACTION_CONDITION', 9, NULL, 'YES', 'l
ongtext', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', '
longtext', '', '', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'ACTION_STATEMENT', 10, NULL, 'NO', 'l
ongtext', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', '
longtext', '', '', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'ACTION_ORIENTATION', 11, '', 'NO', 'v
archar', 9, 27, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(9)', '', '
', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'ACTION_TIMING', 12, '', 'NO', 'varcha
r', 6, 18, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(6)', '', '', 's
elect', ''),
('def', 'information_schema', 'TRIGGERS', 'ACTION_REFERENCE_OLD_TABLE', 13, NULL
, 'YES', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varch
ar(64)', '', '', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'ACTION_REFERENCE_NEW_TABLE', 14, NULL
, 'YES', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varch
ar(64)', '', '', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'ACTION_REFERENCE_OLD_ROW', 15, '', 'N
O', 'varchar', 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)',
'', '', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'ACTION_REFERENCE_NEW_ROW', 16, '', 'N
O', 'varchar', 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)',
'', '', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'CREATED', 17, NULL, 'YES', 'datetime'
, NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'SQL_MODE', 18, '', 'NO', 'varchar', 8
192, 24576, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(8192)', '', ''

, 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'DEFINER', 19, '', 'NO', 'varchar', 77
, 231, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(77)', '', '', 'sele
ct', ''),
('def', 'information_schema', 'TRIGGERS', 'CHARACTER_SET_CLIENT', 20, '', 'NO',
'varchar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '
', '', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'COLLATION_CONNECTION', 21, '', 'NO',
'varchar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '
', '', 'select', ''),
('def', 'information_schema', 'TRIGGERS', 'DATABASE_COLLATION', 22, '', 'NO', 'v
archar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '',
'', 'select', ''),
('def', 'information_schema', 'USER_PRIVILEGES', 'GRANTEE', 1, '', 'NO', 'varcha
r', 81, 243, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(81)', '', '',
'select', ''),
('def', 'information_schema', 'USER_PRIVILEGES', 'TABLE_CATALOG', 2, '', 'NO', '
varchar', 512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512)'
, '', '', 'select', ''),
('def', 'information_schema', 'USER_PRIVILEGES', 'PRIVILEGE_TYPE', 3, '', 'NO',
'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)',
'', '', 'select', ''),
('def', 'information_schema', 'USER_PRIVILEGES', 'IS_GRANTABLE', 4, '', 'NO', 'v
archar', 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '', ''
, 'select', ''),
('def', 'information_schema', 'VIEWS', 'TABLE_CATALOG', 1, '', 'NO', 'varchar',
512, 1536, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(512)', '', '',
'select', ''),
('def', 'information_schema', 'VIEWS', 'TABLE_SCHEMA', 2, '', 'NO', 'varchar', 6
4, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'sel
ect', ''),
('def', 'information_schema', 'VIEWS', 'TABLE_NAME', 3, '', 'NO', 'varchar', 64,
192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '', '', 'selec
t', ''),
('def', 'information_schema', 'VIEWS', 'VIEW_DEFINITION', 4, NULL, 'NO', 'longte
xt', 4294967295, 4294967295, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'longt
ext', '', '', 'select', ''),
('def', 'information_schema', 'VIEWS', 'CHECK_OPTION', 5, '', 'NO', 'varchar', 8
, 24, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(8)', '', '', 'select
', ''),
('def', 'information_schema', 'VIEWS', 'IS_UPDATABLE', 6, '', 'NO', 'varchar', 3
, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '', '', 'select'
, ''),
('def', 'information_schema', 'VIEWS', 'DEFINER', 7, '', 'NO', 'varchar', 77, 23
1, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(77)', '', '', 'select',
''),
('def', 'information_schema', 'VIEWS', 'SECURITY_TYPE', 8, '', 'NO', 'varchar',
7, 21, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(7)', '', '', 'selec
t', ''),
('def', 'information_schema', 'VIEWS', 'CHARACTER_SET_CLIENT', 9, '', 'NO', 'var
char', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '', '
', 'select', ''),
('def', 'information_schema', 'VIEWS', 'COLLATION_CONNECTION', 10, '', 'NO', 'va
rchar', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '',
'', 'select', ''),
('def', 'information_schema', 'INNODB_LOCKS', 'lock_id', 1, '', 'NO', 'varchar',
81, 243, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(81)', '', '', 's
elect', ''),
('def', 'information_schema', 'INNODB_LOCKS', 'lock_trx_id', 2, '', 'NO', 'varch
ar', 18, 54, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(18)', '', '',

'select', ''),
('def', 'information_schema', 'INNODB_LOCKS', 'lock_mode', 3, '', 'NO', 'varchar
', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '', '', '
select', ''),
('def', 'information_schema', 'INNODB_LOCKS', 'lock_type', 4, '', 'NO', 'varchar
', 32, 96, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(32)', '', '', '
select', ''),
('def', 'information_schema', 'INNODB_LOCKS', 'lock_table', 5, '', 'NO', 'varcha
r', 1024, 3072, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(1024)', ''
, '', 'select', ''),
('def', 'information_schema', 'INNODB_LOCKS', 'lock_index', 6, NULL, 'YES', 'var
char', 1024, 3072, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(1024)',
'', '', 'select', ''),
('def', 'information_schema', 'INNODB_LOCKS', 'lock_space', 7, NULL, 'YES', 'big
int', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'selec
t', ''),
('def', 'information_schema', 'INNODB_LOCKS', 'lock_page', 8, NULL, 'YES', 'bigi
nt', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select
', ''),
('def', 'information_schema', 'INNODB_LOCKS', 'lock_rec', 9, NULL, 'YES', 'bigin
t', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select'
, ''),
('def', 'information_schema', 'INNODB_LOCKS', 'lock_data', 10, NULL, 'YES', 'var
char', 8192, 24576, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(8192)'
, '', '', 'select', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_id', 1, '', 'NO', 'varchar', 18
, 54, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(18)', '', '', 'selec
t', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_state', 2, '', 'NO', 'varchar',
13, 39, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(13)', '', '', 'se
lect', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_started', 3, '0000-00-00 00:00:
00', 'NO', 'datetime', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', ''
, 'select', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_requested_lock_id', 4, NULL, 'Y
ES', 'varchar', 81, 243, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(8
1)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_wait_started', 5, NULL, 'YES',
'datetime', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select',
''),
('def', 'information_schema', 'INNODB_TRX', 'trx_weight', 6, '0', 'NO', 'bigint'
, NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select',
''),
('def', 'information_schema', 'INNODB_TRX', 'trx_mysql_thread_id', 7, '0', 'NO',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', '
select', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_query', 8, NULL, 'YES', 'varcha
r', 1024, 3072, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(1024)', ''
, '', 'select', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_operation_state', 9, NULL, 'YES
', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)
', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_tables_in_use', 10, '0', 'NO',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 's
elect', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_tables_locked', 11, '0', 'NO',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 's
elect', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_lock_structs', 12, '0', 'NO', '
bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'se

lect', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_lock_memory_bytes', 13, '0', 'N
O', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', ''
, 'select', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_rows_locked', 14, '0', 'NO', 'b
igint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'sel
ect', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_rows_modified', 15, '0', 'NO',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 's
elect', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_concurrency_tickets', 16, '0',
'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '',
'', 'select', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_isolation_level', 17, '', 'NO',
'varchar', 16, 48, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(16)',
'', '', 'select', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_unique_checks', 18, '0', 'NO',
'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(1)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_foreign_key_checks', 19, '0', '
NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(1)', '', '', 'select', '')
,
('def', 'information_schema', 'INNODB_TRX', 'trx_last_foreign_key_error', 20, NU
LL, 'YES', 'varchar', 256, 768, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'va
rchar(256)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_adaptive_hash_latched', 21, '0'
, 'NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(1)', '', '', 'select',
''),
('def', 'information_schema', 'INNODB_TRX', 'trx_adaptive_hash_timeout', 22, '0'
, 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', ''
, '', 'select', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_is_read_only', 23, '0', 'NO', '
int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(1)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_TRX', 'trx_autocommit_non_locking', 24, '0
', 'NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(1)', '', '', 'select',
''),
('def', 'information_schema', 'INNODB_SYS_DATAFILES', 'SPACE', 1, '0', 'NO', 'in
t', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11) unsigned', '', '', 'select', '
'),
('def', 'information_schema', 'INNODB_SYS_DATAFILES', 'PATH', 2, '', 'NO', 'varc
har', 4000, 12000, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(4000)',
'', '', 'select', ''),
('def', 'information_schema', 'INNODB_LOCK_WAITS', 'requesting_trx_id', 1, '', '
NO', 'varchar', 18, 54, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(18
)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_LOCK_WAITS', 'requested_lock_id', 2, '', '
NO', 'varchar', 81, 243, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(8
1)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_LOCK_WAITS', 'blocking_trx_id', 3, '', 'NO
', 'varchar', 18, 54, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(18)'
, '', '', 'select', ''),
('def', 'information_schema', 'INNODB_LOCK_WAITS', 'blocking_lock_id', 4, '', 'N
O', 'varchar', 81, 243, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(81
)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESTATS', 'TABLE_ID', 1, '0', 'NO',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', '
select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESTATS', 'NAME', 2, '', 'NO', 'var
char', 193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(193)', ''
, '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESTATS', 'STATS_INITIALIZED', 3, '

', 'NO', 'varchar', 193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varc
har(193)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESTATS', 'NUM_ROWS', 4, '0', 'NO',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', '
select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESTATS', 'CLUST_INDEX_SIZE', 5, '0
', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '
', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESTATS', 'OTHER_INDEX_SIZE', 6, '0
', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '
', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESTATS', 'MODIFIED_COUNTER', 7, '0
', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '
', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESTATS', 'AUTOINC', 8, '0', 'NO',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 's
elect', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESTATS', 'REF_COUNT', 9, '0', 'NO'
, 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP', 'page_size', 1, '0', 'NO', 'int', NU
LL, NULL, 10, 0, NULL, NULL, NULL, 'int(5)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP', 'compress_ops', 2, '0', 'NO', 'int',
NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP', 'compress_ops_ok', 3, '0', 'NO', 'in
t', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP', 'compress_time', 4, '0', 'NO', 'int'
, NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP', 'uncompress_ops', 5, '0', 'NO', 'int
', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP', 'uncompress_time', 6, '0', 'NO', 'in
t', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_FT_BEING_DELETED', 'DOC_ID', 1, '0', 'NO',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', '
select', ''),
('def', 'information_schema', 'INNODB_CMP_RESET', 'page_size', 1, '0', 'NO', 'in
t', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(5)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP_RESET', 'compress_ops', 2, '0', 'NO',
'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP_RESET', 'compress_ops_ok', 3, '0', 'NO
', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP_RESET', 'compress_time', 4, '0', 'NO',
'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP_RESET', 'uncompress_ops', 5, '0', 'NO'
, 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP_RESET', 'uncompress_time', 6, '0', 'NO
', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX', 'database_name', 1, '', 'N
O', 'varchar', 192, 576, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(1
92)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX', 'table_name', 2, '', 'NO',
'varchar', 192, 576, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(192)
', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX', 'index_name', 3, '', 'NO',
'varchar', 192, 576, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(192)
', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX', 'compress_ops', 4, '0', 'N
O', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', '')
,
('def', 'information_schema', 'INNODB_CMP_PER_INDEX', 'compress_ops_ok', 5, '0',
'NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select',

''),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX', 'compress_time', 6, '0', '
NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''
),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX', 'uncompress_ops', 7, '0',
'NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', '
'),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX', 'uncompress_time', 8, '0',
'NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select',
''),
('def', 'information_schema', 'INNODB_CMPMEM_RESET', 'page_size', 1, '0', 'NO',
'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(5)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMPMEM_RESET', 'buffer_pool_instance', 2,
'0', 'NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'selec
t', ''),
('def', 'information_schema', 'INNODB_CMPMEM_RESET', 'pages_used', 3, '0', 'NO',
'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMPMEM_RESET', 'pages_free', 4, '0', 'NO',
'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMPMEM_RESET', 'relocation_ops', 5, '0', '
NO', 'bigint', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(21)', '', '', 'selec
t', ''),
('def', 'information_schema', 'INNODB_CMPMEM_RESET', 'relocation_time', 6, '0',
'NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', '
'),
('def', 'information_schema', 'INNODB_FT_DELETED', 'DOC_ID', 1, '0', 'NO', 'bigi
nt', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select
', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'POOL_ID', 1, '0', 'NO',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', '
select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'LRU_POSITION', 2, '0',
'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '',
'', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'SPACE', 3, '0', 'NO', '
bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'se
lect', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'PAGE_NUMBER', 4, '0', '
NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '
', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'PAGE_TYPE', 5, NULL, 'Y
ES', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(6
4)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'FLUSH_TYPE', 6, '0', 'N
O', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', ''
, 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'FIX_COUNT', 7, '0', 'NO
', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '',
'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'IS_HASHED', 8, NULL, 'Y
ES', 'varchar', 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)',
'', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'NEWEST_MODIFICATION', 9
, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned
', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'OLDEST_MODIFICATION', 1
0, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigne
d', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'ACCESS_TIME', 11, '0',
'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '',

'', 'select', ''),


('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'TABLE_NAME', 12, NULL,
'YES', 'varchar', 1024, 3072, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varc
har(1024)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'INDEX_NAME', 13, NULL,
'YES', 'varchar', 1024, 3072, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varc
har(1024)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'NUMBER_RECORDS', 14, '0
', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '
', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'DATA_SIZE', 15, '0', 'N
O', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', ''
, 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'COMPRESSED_SIZE', 16, '
0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned',
'', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'COMPRESSED', 17, NULL,
'YES', 'varchar', 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)
', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'IO_FIX', 18, NULL, 'YES
', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)
', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'IS_OLD', 19, NULL, 'YES
', 'varchar', 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '
', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'FREE_PAGE_CLOCK', 20, '
0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned',
'', '', 'select', ''),
('def', 'information_schema', 'INNODB_FT_INSERTED', 'DOC_ID', 1, '0', 'NO', 'big
int', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'selec
t', ''),
('def', 'information_schema', 'INNODB_CMPMEM', 'page_size', 1, '0', 'NO', 'int',
NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(5)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMPMEM', 'buffer_pool_instance', 2, '0', '
NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''
),
('def', 'information_schema', 'INNODB_CMPMEM', 'pages_used', 3, '0', 'NO', 'int'
, NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMPMEM', 'pages_free', 4, '0', 'NO', 'int'
, NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMPMEM', 'relocation_ops', 5, '0', 'NO', '
bigint', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(21)', '', '', 'select', ''
),
('def', 'information_schema', 'INNODB_CMPMEM', 'relocation_time', 6, '0', 'NO',
'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_INDEXES', 'INDEX_ID', 1, '0', 'NO', 'b
igint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'sel
ect', ''),
('def', 'information_schema', 'INNODB_SYS_INDEXES', 'NAME', 2, '', 'NO', 'varcha
r', 193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(193)', '', '
', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_INDEXES', 'TABLE_ID', 3, '0', 'NO', 'b
igint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'sel
ect', ''),
('def', 'information_schema', 'INNODB_SYS_INDEXES', 'TYPE', 4, '0', 'NO', 'int',
NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_INDEXES', 'N_FIELDS', 5, '0', 'NO', 'i
nt', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_INDEXES', 'PAGE_NO', 6, '0', 'NO', 'in
t', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),

('def', 'information_schema', 'INNODB_SYS_INDEXES', 'SPACE', 7, '0', 'NO', 'int'


, NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLES', 'TABLE_ID', 1, '0', 'NO', 'bi
gint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'sele
ct', ''),
('def', 'information_schema', 'INNODB_SYS_TABLES', 'NAME', 2, '', 'NO', 'varchar
', 655, 1965, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(655)', '', '
', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLES', 'FLAG', 3, '0', 'NO', 'int',
NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLES', 'N_COLS', 4, '0', 'NO', 'int'
, NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLES', 'SPACE', 5, '0', 'NO', 'int',
NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLES', 'FILE_FORMAT', 6, NULL, 'YES'
, 'varchar', 10, 30, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(10)',
'', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLES', 'ROW_FORMAT', 7, NULL, 'YES',
'varchar', 12, 36, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(12)',
'', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLES', 'ZIP_PAGE_SIZE', 8, '0', 'NO'
, 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11) unsigned', '', '', 'selec
t', ''),
('def', 'information_schema', 'INNODB_SYS_FIELDS', 'INDEX_ID', 1, '0', 'NO', 'bi
gint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'sele
ct', ''),
('def', 'information_schema', 'INNODB_SYS_FIELDS', 'NAME', 2, '', 'NO', 'varchar
', 193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(193)', '', ''
, 'select', ''),
('def', 'information_schema', 'INNODB_SYS_FIELDS', 'POS', 3, '0', 'NO', 'int', N
ULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11) unsigned', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX_RESET', 'database_name', 1,
'', 'NO', 'varchar', 192, 576, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'var
char(192)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX_RESET', 'table_name', 2, '',
'NO', 'varchar', 192, 576, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varcha
r(192)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX_RESET', 'index_name', 3, '',
'NO', 'varchar', 192, 576, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varcha
r(192)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX_RESET', 'compress_ops', 4, '
0', 'NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select
', ''),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX_RESET', 'compress_ops_ok', 5
, '0', 'NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'sel
ect', ''),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX_RESET', 'compress_time', 6,
'0', 'NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'selec
t', ''),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX_RESET', 'uncompress_ops', 7,
'0', 'NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'sele
ct', ''),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX_RESET', 'uncompress_time', 8
, '0', 'NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'sel
ect', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'POOL_ID', 1, '0', 'NO', 'bi
gint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'sele
ct', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'BLOCK_ID', 2, '0', 'NO', 'b
igint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'sel

ect', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'SPACE', 3, '0', 'NO', 'bigi
nt', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select
', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'PAGE_NUMBER', 4, '0', 'NO',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', '
select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'PAGE_TYPE', 5, NULL, 'YES',
'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)',
'', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'FLUSH_TYPE', 6, '0', 'NO',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 's
elect', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'FIX_COUNT', 7, '0', 'NO', '
bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'se
lect', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'IS_HASHED', 8, NULL, 'YES',
'varchar', 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '',
'', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'NEWEST_MODIFICATION', 9, '0
', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '
', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'OLDEST_MODIFICATION', 10, '
0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned',
'', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'ACCESS_TIME', 11, '0', 'NO'
, 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '',
'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'TABLE_NAME', 12, NULL, 'YES
', 'varchar', 1024, 3072, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(
1024)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'INDEX_NAME', 13, NULL, 'YES
', 'varchar', 1024, 3072, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(
1024)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'NUMBER_RECORDS', 14, '0', '
NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '
', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'DATA_SIZE', 15, '0', 'NO',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 's
elect', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'COMPRESSED_SIZE', 16, '0',
'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '',
'', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'PAGE_STATE', 17, NULL, 'YES
', 'varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)
', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'IO_FIX', 18, NULL, 'YES', '
varchar', 64, 192, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(64)', '
', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'IS_OLD', 19, NULL, 'YES', '
varchar', 3, 9, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(3)', '', '
', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'FREE_PAGE_CLOCK', 20, '0',
'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '',
'', 'select', ''),
('def', 'information_schema', 'INNODB_FT_DEFAULT_STOPWORD', 'value', 1, '', 'NO'
, 'varchar', 18, 54, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(18)',
'', '', 'select', ''),
('def', 'information_schema', 'INNODB_FT_INDEX_TABLE', 'WORD', 1, '', 'NO', 'var
char', 253, 759, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(253)', ''

, '', 'select', ''),


('def', 'information_schema', 'INNODB_FT_INDEX_TABLE', 'FIRST_DOC_ID', 2, '0', '
NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '
', 'select', ''),
('def', 'information_schema', 'INNODB_FT_INDEX_TABLE', 'LAST_DOC_ID', 3, '0', 'N
O', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', ''
, 'select', ''),
('def', 'information_schema', 'INNODB_FT_INDEX_TABLE', 'DOC_COUNT', 4, '0', 'NO'
, 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '',
'select', ''),
('def', 'information_schema', 'INNODB_FT_INDEX_TABLE', 'DOC_ID', 5, '0', 'NO', '
bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'se
lect', ''),
('def', 'information_schema', 'INNODB_FT_INDEX_TABLE', 'POSITION', 6, '0', 'NO',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', '
select', ''),
('def', 'information_schema', 'INNODB_FT_INDEX_CACHE', 'WORD', 1, '', 'NO', 'var
char', 253, 759, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(253)', ''
, '', 'select', ''),
('def', 'information_schema', 'INNODB_FT_INDEX_CACHE', 'FIRST_DOC_ID', 2, '0', '
NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '
', 'select', ''),
('def', 'information_schema', 'INNODB_FT_INDEX_CACHE', 'LAST_DOC_ID', 3, '0', 'N
O', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', ''
, 'select', ''),
('def', 'information_schema', 'INNODB_FT_INDEX_CACHE', 'DOC_COUNT', 4, '0', 'NO'
, 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '',
'select', ''),
('def', 'information_schema', 'INNODB_FT_INDEX_CACHE', 'DOC_ID', 5, '0', 'NO', '
bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'se
lect', ''),
('def', 'information_schema', 'INNODB_FT_INDEX_CACHE', 'POSITION', 6, '0', 'NO',
'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', '
select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESPACES', 'SPACE', 1, '0', 'NO', '
int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11) unsigned', '', '', 'select',
''),
('def', 'information_schema', 'INNODB_SYS_TABLESPACES', 'NAME', 2, '', 'NO', 'va
rchar', 655, 1965, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(655)',
'', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESPACES', 'FLAG', 3, '0', 'NO', 'i
nt', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11) unsigned', '', '', 'select',
''),
('def', 'information_schema', 'INNODB_SYS_TABLESPACES', 'FILE_FORMAT', 4, NULL,
'YES', 'varchar', 10, 30, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(
10)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESPACES', 'ROW_FORMAT', 5, NULL, '
YES', 'varchar', 22, 66, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(2
2)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESPACES', 'PAGE_SIZE', 6, '0', 'NO
', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11) unsigned', '', '', 'sele
ct', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESPACES', 'ZIP_PAGE_SIZE', 7, '0',
'NO', 'int', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11) unsigned', '', '', '
select', ''),
('def', 'information_schema', 'INNODB_METRICS', 'NAME', 1, '', 'NO', 'varchar',
193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(193)', '', '', '
select', ''),
('def', 'information_schema', 'INNODB_METRICS', 'SUBSYSTEM', 2, '', 'NO', 'varch
ar', 193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(193)', '',

'', 'select', ''),


('def', 'information_schema', 'INNODB_METRICS', 'COUNT', 3, '0', 'NO', 'bigint',
NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(21)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_METRICS', 'MAX_COUNT', 4, NULL, 'YES', 'bi
gint', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(21)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_METRICS', 'MIN_COUNT', 5, NULL, 'YES', 'bi
gint', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(21)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_METRICS', 'AVG_COUNT', 6, NULL, 'YES', 'do
uble', NULL, NULL, 12, NULL, NULL, NULL, NULL, 'double', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_METRICS', 'COUNT_RESET', 7, '0', 'NO', 'bi
gint', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(21)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_METRICS', 'MAX_COUNT_RESET', 8, NULL, 'YES
', 'bigint', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(21)', '', '', 'select'
, ''),
('def', 'information_schema', 'INNODB_METRICS', 'MIN_COUNT_RESET', 9, NULL, 'YES
', 'bigint', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(21)', '', '', 'select'
, ''),
('def', 'information_schema', 'INNODB_METRICS', 'AVG_COUNT_RESET', 10, NULL, 'YE
S', 'double', NULL, NULL, 12, NULL, NULL, NULL, NULL, 'double', '', '', 'select'
, ''),
('def', 'information_schema', 'INNODB_METRICS', 'TIME_ENABLED', 11, NULL, 'YES',
'datetime', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select'
, ''),
('def', 'information_schema', 'INNODB_METRICS', 'TIME_DISABLED', 12, NULL, 'YES'
, 'datetime', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select
', ''),
('def', 'information_schema', 'INNODB_METRICS', 'TIME_ELAPSED', 13, NULL, 'YES',
'bigint', NULL, NULL, 19, 0, NULL, NULL, NULL, 'bigint(21)', '', '', 'select',
''),
('def', 'information_schema', 'INNODB_METRICS', 'TIME_RESET', 14, NULL, 'YES', '
datetime', NULL, NULL, NULL, NULL, 0, NULL, NULL, 'datetime', '', '', 'select',
''),
('def', 'information_schema', 'INNODB_METRICS', 'STATUS', 15, '', 'NO', 'varchar
', 193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(193)', '', ''
, 'select', ''),
('def', 'information_schema', 'INNODB_METRICS', 'TYPE', 16, '', 'NO', 'varchar',
193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(193)', '', '',
'select', ''),
('def', 'information_schema', 'INNODB_METRICS', 'COMMENT', 17, '', 'NO', 'varcha
r', 193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(193)', '', '
', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_FOREIGN_COLS', 'ID', 1, '', 'NO', 'var
char', 193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(193)', ''
, '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_FOREIGN_COLS', 'FOR_COL_NAME', 2, '',
'NO', 'varchar', 193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar
(193)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_FOREIGN_COLS', 'REF_COL_NAME', 3, '',
'NO', 'varchar', 193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar
(193)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_FOREIGN_COLS', 'POS', 4, '0', 'NO', 'i
nt', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11) unsigned', '', '', 'select',
''),
('def', 'information_schema', 'INNODB_FT_CONFIG', 'KEY', 1, '', 'NO', 'varchar',
193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(193)', '', '',
'select', ''),
('def', 'information_schema', 'INNODB_FT_CONFIG', 'VALUE', 2, '', 'NO', 'varchar
', 193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(193)', '', ''
, 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'POOL_ID', 1, '0', 'NO

', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '',
'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'POOL_SIZE', 2, '0', '
NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '
', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'FREE_BUFFERS', 3, '0'
, 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', ''
, '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'DATABASE_PAGES', 4, '
0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned',
'', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'OLD_DATABASE_PAGES',
5, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigne
d', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'MODIFIED_DATABASE_PAG
ES', 6, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) un
signed', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'PENDING_DECOMPRESS',
7, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigne
d', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'PENDING_READS', 8, '0
', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '
', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'PENDING_FLUSH_LRU', 9
, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned
', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'PENDING_FLUSH_LIST',
10, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsign
ed', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'PAGES_MADE_YOUNG', 11
, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned
', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'PAGES_NOT_MADE_YOUNG'
, 12, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsi
gned', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'PAGES_MADE_YOUNG_RATE
', 13, '0', 'NO', 'double', NULL, NULL, 12, NULL, NULL, NULL, NULL, 'double', ''
, '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'PAGES_MADE_NOT_YOUNG_
RATE', 14, '0', 'NO', 'double', NULL, NULL, 12, NULL, NULL, NULL, NULL, 'double'
, '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'NUMBER_PAGES_READ', 1
5, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigne
d', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'NUMBER_PAGES_CREATED'
, 16, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsi
gned', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'NUMBER_PAGES_WRITTEN'
, 17, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsi
gned', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'PAGES_READ_RATE', 18,
'0', 'NO', 'double', NULL, NULL, 12, NULL, NULL, NULL, NULL, 'double', '', '',
'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'PAGES_CREATE_RATE', 1
9, '0', 'NO', 'double', NULL, NULL, 12, NULL, NULL, NULL, NULL, 'double', '', ''
, 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'PAGES_WRITTEN_RATE',
20, '0', 'NO', 'double', NULL, NULL, 12, NULL, NULL, NULL, NULL, 'double', '', '
', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'NUMBER_PAGES_GET', 21

, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned
', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'HIT_RATE', 22, '0', '
NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '
', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'YOUNG_MAKE_PER_THOUSA
ND_GETS', 23, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(
21) unsigned', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'NOT_YOUNG_MAKE_PER_TH
OUSAND_GETS', 24, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'big
int(21) unsigned', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'NUMBER_PAGES_READ_AHE
AD', 25, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) u
nsigned', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'NUMBER_READ_AHEAD_EVI
CTED', 26, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21)
unsigned', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'READ_AHEAD_RATE', 27,
'0', 'NO', 'double', NULL, NULL, 12, NULL, NULL, NULL, NULL, 'double', '', '',
'select', '');
INSERT INTO `COLUMNS` (`TABLE_CATALOG`, `TABLE_SCHEMA`, `TABLE_NAME`, `COLUMN_NA
ME`, `ORDINAL_POSITION`, `COLUMN_DEFAULT`, `IS_NULLABLE`, `DATA_TYPE`, `CHARACTE
R_MAXIMUM_LENGTH`, `CHARACTER_OCTET_LENGTH`, `NUMERIC_PRECISION`, `NUMERIC_SCALE
`, `DATETIME_PRECISION`, `CHARACTER_SET_NAME`, `COLLATION_NAME`, `COLUMN_TYPE`,
`COLUMN_KEY`, `EXTRA`, `PRIVILEGES`, `COLUMN_COMMENT`) VALUES
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'READ_AHEAD_EVICTED_RA
TE', 28, '0', 'NO', 'double', NULL, NULL, 12, NULL, NULL, NULL, NULL, 'double',
'', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'LRU_IO_TOTAL', 29, '0
', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '
', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'LRU_IO_CURRENT', 30,
'0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned',
'', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'UNCOMPRESS_TOTAL', 31
, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned
', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'UNCOMPRESS_CURRENT',
32, '0', 'NO', 'bigint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsign
ed', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_COLUMNS', 'TABLE_ID', 1, '0', 'NO', 'b
igint', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'sel
ect', ''),
('def', 'information_schema', 'INNODB_SYS_COLUMNS', 'NAME', 2, '', 'NO', 'varcha
r', 193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(193)', '', '
', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_COLUMNS', 'POS', 3, '0', 'NO', 'bigint
', NULL, NULL, 20, 0, NULL, NULL, NULL, 'bigint(21) unsigned', '', '', 'select',
''),
('def', 'information_schema', 'INNODB_SYS_COLUMNS', 'MTYPE', 4, '0', 'NO', 'int'
, NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_COLUMNS', 'PRTYPE', 5, '0', 'NO', 'int
', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_COLUMNS', 'LEN', 6, '0', 'NO', 'int',
NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11)', '', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_FOREIGN', 'ID', 1, '', 'NO', 'varchar'
, 193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(193)', '', '',
'select', ''),
('def', 'information_schema', 'INNODB_SYS_FOREIGN', 'FOR_NAME', 2, '', 'NO', 'va
rchar', 193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(193)', '

', '', 'select', ''),


('def', 'information_schema', 'INNODB_SYS_FOREIGN', 'REF_NAME', 3, '', 'NO', 'va
rchar', 193, 579, NULL, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(193)', '
', '', 'select', ''),
('def', 'information_schema', 'INNODB_SYS_FOREIGN', 'N_COLS', 4, '0', 'NO', 'int
', NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11) unsigned', '', '', 'select', ''
),
('def', 'information_schema', 'INNODB_SYS_FOREIGN', 'TYPE', 5, '0', 'NO', 'int',
NULL, NULL, 10, 0, NULL, NULL, NULL, 'int(11) unsigned', '', '', 'select', ''),
('def', 'rcpd', 'NewTable', 'ID', 1, NULL, 'NO', 'int', NULL, NULL, 10, 0, NULL,
NULL, NULL, 'int(255)', 'PRI', 'auto_increment', 'select,insert,update,referenc
es', ''),
('def', 'rcpd', 'NewTable', 'Username', 2, NULL, 'NO', 'varchar', 255, 765, NULL
, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(255)', '', '', 'select,insert,
update,references', ''),
('def', 'rcpd', 'NewTable', 'Password', 3, NULL, 'NO', 'varchar', 255, 765, NULL
, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(255)', '', '', 'select,insert,
update,references', ''),
('def', 'rcpd', 'SupTable', 'ID', 1, NULL, 'NO', 'int', NULL, NULL, 10, 0, NULL,
NULL, NULL, 'int(255)', 'PRI', 'auto_increment', 'select,insert,update,referenc
es', ''),
('def', 'rcpd', 'SupTable', 'Username', 2, NULL, 'NO', 'varchar', 255, 765, NULL
, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(255)', '', '', 'select,insert,
update,references', ''),
('def', 'rcpd', 'SupTable', 'Password', 3, NULL, 'NO', 'varchar', 255, 765, NULL
, NULL, NULL, 'utf8', 'utf8_general_ci', 'varchar(255)', '', '', 'select,insert,
update,references', '');
-- ---------------------------------------------------------- Table structure for table `COLUMN_PRIVILEGES`
-CREATE TEMPORARY TABLE `COLUMN_PRIVILEGES` (
`GRANTEE` varchar(81) NOT NULL DEFAULT '',
`TABLE_CATALOG` varchar(512) NOT NULL DEFAULT '',
`TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
`COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
`PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
`IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- ---------------------------------------------------------- Table structure for table `ENGINES`
-CREATE TEMPORARY TABLE `ENGINES` (
`ENGINE` varchar(64) NOT NULL DEFAULT '',
`SUPPORT` varchar(8) NOT NULL DEFAULT '',
`COMMENT` varchar(80) NOT NULL DEFAULT '',
`TRANSACTIONS` varchar(3) DEFAULT NULL,
`XA` varchar(3) DEFAULT NULL,
`SAVEPOINTS` varchar(3) DEFAULT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--

-- Dumping data for table `ENGINES`


-INSERT INTO `ENGINES` (`ENGINE`, `SUPPORT`, `COMMENT`, `TRANSACTIONS`, `XA`, `SA
VEPOINTS`) VALUES
('MRG_MYISAM', 'YES', 'Collection of identical MyISAM tables', 'NO', 'NO', 'NO')
,
('CSV', 'YES', 'CSV storage engine', 'NO', 'NO', 'NO'),
('MyISAM', 'YES', 'MyISAM storage engine', 'NO', 'NO', 'NO'),
('BLACKHOLE', 'YES', '/dev/null storage engine (anything you write to it disappe
ars)', 'NO', 'NO', 'NO'),
('MEMORY', 'YES', 'Hash based, stored in memory, useful for temporary tables', '
NO', 'NO', 'NO'),
('InnoDB', 'DEFAULT', 'Supports transactions, row-level locking, and foreign key
s', 'YES', 'YES', 'YES'),
('ARCHIVE', 'YES', 'Archive storage engine', 'NO', 'NO', 'NO'),
('PERFORMANCE_SCHEMA', 'YES', 'Performance Schema', 'NO', 'NO', 'NO'),
('FEDERATED', 'YES', 'Federated MySQL storage engine', 'NO', 'NO', 'NO');
-- ---------------------------------------------------------- Table structure for table `EVENTS`
-CREATE TEMPORARY TABLE `EVENTS` (
`EVENT_CATALOG` varchar(64) NOT NULL DEFAULT '',
`EVENT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`EVENT_NAME` varchar(64) NOT NULL DEFAULT '',
`DEFINER` varchar(77) NOT NULL DEFAULT '',
`TIME_ZONE` varchar(64) NOT NULL DEFAULT '',
`EVENT_BODY` varchar(8) NOT NULL DEFAULT '',
`EVENT_DEFINITION` longtext NOT NULL,
`EVENT_TYPE` varchar(9) NOT NULL DEFAULT '',
`EXECUTE_AT` datetime DEFAULT NULL,
`INTERVAL_VALUE` varchar(256) DEFAULT NULL,
`INTERVAL_FIELD` varchar(18) DEFAULT NULL,
`SQL_MODE` varchar(8192) NOT NULL DEFAULT '',
`STARTS` datetime DEFAULT NULL,
`ENDS` datetime DEFAULT NULL,
`STATUS` varchar(18) NOT NULL DEFAULT '',
`ON_COMPLETION` varchar(12) NOT NULL DEFAULT '',
`CREATED` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`LAST_ALTERED` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`LAST_EXECUTED` datetime DEFAULT NULL,
`EVENT_COMMENT` varchar(64) NOT NULL DEFAULT '',
`ORIGINATOR` bigint(10) NOT NULL DEFAULT '0',
`CHARACTER_SET_CLIENT` varchar(32) NOT NULL DEFAULT '',
`COLLATION_CONNECTION` varchar(32) NOT NULL DEFAULT '',
`DATABASE_COLLATION` varchar(32) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ---------------------------------------------------------- Table structure for table `FILES`
-CREATE TEMPORARY TABLE `FILES` (
`FILE_ID` bigint(4) NOT NULL DEFAULT '0',

`FILE_NAME` varchar(64) DEFAULT NULL,


`FILE_TYPE` varchar(20) NOT NULL DEFAULT '',
`TABLESPACE_NAME` varchar(64) DEFAULT NULL,
`TABLE_CATALOG` varchar(64) NOT NULL DEFAULT '',
`TABLE_SCHEMA` varchar(64) DEFAULT NULL,
`TABLE_NAME` varchar(64) DEFAULT NULL,
`LOGFILE_GROUP_NAME` varchar(64) DEFAULT NULL,
`LOGFILE_GROUP_NUMBER` bigint(4) DEFAULT NULL,
`ENGINE` varchar(64) NOT NULL DEFAULT '',
`FULLTEXT_KEYS` varchar(64) DEFAULT NULL,
`DELETED_ROWS` bigint(4) DEFAULT NULL,
`UPDATE_COUNT` bigint(4) DEFAULT NULL,
`FREE_EXTENTS` bigint(4) DEFAULT NULL,
`TOTAL_EXTENTS` bigint(4) DEFAULT NULL,
`EXTENT_SIZE` bigint(4) NOT NULL DEFAULT '0',
`INITIAL_SIZE` bigint(21) unsigned DEFAULT NULL,
`MAXIMUM_SIZE` bigint(21) unsigned DEFAULT NULL,
`AUTOEXTEND_SIZE` bigint(21) unsigned DEFAULT NULL,
`CREATION_TIME` datetime DEFAULT NULL,
`LAST_UPDATE_TIME` datetime DEFAULT NULL,
`LAST_ACCESS_TIME` datetime DEFAULT NULL,
`RECOVER_TIME` bigint(4) DEFAULT NULL,
`TRANSACTION_COUNTER` bigint(4) DEFAULT NULL,
`VERSION` bigint(21) unsigned DEFAULT NULL,
`ROW_FORMAT` varchar(10) DEFAULT NULL,
`TABLE_ROWS` bigint(21) unsigned DEFAULT NULL,
`AVG_ROW_LENGTH` bigint(21) unsigned DEFAULT NULL,
`DATA_LENGTH` bigint(21) unsigned DEFAULT NULL,
`MAX_DATA_LENGTH` bigint(21) unsigned DEFAULT NULL,
`INDEX_LENGTH` bigint(21) unsigned DEFAULT NULL,
`DATA_FREE` bigint(21) unsigned DEFAULT NULL,
`CREATE_TIME` datetime DEFAULT NULL,
`UPDATE_TIME` datetime DEFAULT NULL,
`CHECK_TIME` datetime DEFAULT NULL,
`CHECKSUM` bigint(21) unsigned DEFAULT NULL,
`STATUS` varchar(20) NOT NULL DEFAULT '',
`EXTRA` varchar(255) DEFAULT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- ---------------------------------------------------------- Table structure for table `GLOBAL_STATUS`
-CREATE TEMPORARY TABLE `GLOBAL_STATUS` (
`VARIABLE_NAME` varchar(64) NOT NULL DEFAULT '',
`VARIABLE_VALUE` varchar(1024) DEFAULT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--- Dumping data for table `GLOBAL_STATUS`
-INSERT INTO `GLOBAL_STATUS` (`VARIABLE_NAME`, `VARIABLE_VALUE`) VALUES
('ABORTED_CLIENTS', '79971'),
('ABORTED_CONNECTS', '79056142'),
('BINLOG_CACHE_DISK_USE', '0'),
('BINLOG_CACHE_USE', '0'),
('BINLOG_STMT_CACHE_DISK_USE', '0'),

('BINLOG_STMT_CACHE_USE', '0'),
('BYTES_RECEIVED', '28329018854'),
('BYTES_SENT', '99768086562'),
('COM_ADMIN_COMMANDS', '13778627'),
('COM_ASSIGN_TO_KEYCACHE', '0'),
('COM_ALTER_DB', '103'),
('COM_ALTER_DB_UPGRADE', '0'),
('COM_ALTER_EVENT', '0'),
('COM_ALTER_FUNCTION', '0'),
('COM_ALTER_PROCEDURE', '0'),
('COM_ALTER_SERVER', '0'),
('COM_ALTER_TABLE', '9309'),
('COM_ALTER_TABLESPACE', '0'),
('COM_ALTER_USER', '0'),
('COM_ANALYZE', '142'),
('COM_BEGIN', '1362443'),
('COM_BINLOG', '0'),
('COM_CALL_PROCEDURE', '1967'),
('COM_CHANGE_DB', '2877681'),
('COM_CHANGE_MASTER', '0'),
('COM_CHECK', '103'),
('COM_CHECKSUM', '0'),
('COM_COMMIT', '10644490'),
('COM_CREATE_DB', '2653'),
('COM_CREATE_EVENT', '22'),
('COM_CREATE_FUNCTION', '31'),
('COM_CREATE_INDEX', '1823'),
('COM_CREATE_PROCEDURE', '356'),
('COM_CREATE_SERVER', '0'),
('COM_CREATE_TABLE', '63956'),
('COM_CREATE_TRIGGER', '95'),
('COM_CREATE_UDF', '0'),
('COM_CREATE_USER', '14'),
('COM_CREATE_VIEW', '182'),
('COM_DEALLOC_SQL', '4'),
('COM_DELETE', '1020609'),
('COM_DELETE_MULTI', '95552'),
('COM_DO', '0'),
('COM_DROP_DB', '550'),
('COM_DROP_EVENT', '24'),
('COM_DROP_FUNCTION', '12'),
('COM_DROP_INDEX', '33'),
('COM_DROP_PROCEDURE', '440'),
('COM_DROP_SERVER', '0'),
('COM_DROP_TABLE', '30539'),
('COM_DROP_TRIGGER', '73'),
('COM_DROP_USER', '1'),
('COM_DROP_VIEW', '123'),
('COM_EMPTY_QUERY', '50'),
('COM_EXECUTE_SQL', '14'),
('COM_FLUSH', '1368'),
('COM_GET_DIAGNOSTICS', '0'),
('COM_GRANT', '2539'),
('COM_HA_CLOSE', '0'),
('COM_HA_OPEN', '0'),
('COM_HA_READ', '0'),
('COM_HELP', '17'),
('COM_INSERT', '80124304'),
('COM_INSERT_SELECT', '51586'),
('COM_INSTALL_PLUGIN', '0'),

('COM_KILL', '426'),
('COM_LOAD', '1989'),
('COM_LOCK_TABLES', '899'),
('COM_OPTIMIZE', '609'),
('COM_PRELOAD_KEYS', '0'),
('COM_PREPARE_SQL', '14'),
('COM_PURGE', '0'),
('COM_PURGE_BEFORE_DATE', '0'),
('COM_RELEASE_SAVEPOINT', '6658'),
('COM_RENAME_TABLE', '84'),
('COM_RENAME_USER', '0'),
('COM_REPAIR', '42'),
('COM_REPLACE', '90619'),
('COM_REPLACE_SELECT', '811'),
('COM_RESET', '0'),
('COM_RESIGNAL', '0'),
('COM_REVOKE', '0'),
('COM_REVOKE_ALL', '0'),
('COM_ROLLBACK', '75713'),
('COM_ROLLBACK_TO_SAVEPOINT', '90'),
('COM_SAVEPOINT', '7211'),
('COM_SELECT', '33361902'),
('COM_SET_OPTION', '25427898'),
('COM_SIGNAL', '0'),
('COM_SHOW_BINLOG_EVENTS', '0'),
('COM_SHOW_BINLOGS', '10490'),
('COM_SHOW_CHARSETS', '6336'),
('COM_SHOW_COLLATIONS', '1704739'),
('COM_SHOW_CREATE_DB', '190'),
('COM_SHOW_CREATE_EVENT', '14'),
('COM_SHOW_CREATE_FUNC', '82'),
('COM_SHOW_CREATE_PROC', '743'),
('COM_SHOW_CREATE_TABLE', '65240'),
('COM_SHOW_CREATE_TRIGGER', '0'),
('COM_SHOW_DATABASES', '24571'),
('COM_SHOW_ENGINE_LOGS', '0'),
('COM_SHOW_ENGINE_MUTEX', '0'),
('COM_SHOW_ENGINE_STATUS', '1'),
('COM_SHOW_EVENTS', '592'),
('COM_SHOW_ERRORS', '0'),
('COM_SHOW_FIELDS', '147870'),
('COM_SHOW_FUNCTION_CODE', '0'),
('COM_SHOW_FUNCTION_STATUS', '1678'),
('COM_SHOW_GRANTS', '3973'),
('COM_SHOW_KEYS', '63700'),
('COM_SHOW_MASTER_STATUS', '10600'),
('COM_SHOW_OPEN_TABLES', '143'),
('COM_SHOW_PLUGINS', '3969'),
('COM_SHOW_PRIVILEGES', '2'),
('COM_SHOW_PROCEDURE_CODE', '0'),
('COM_SHOW_PROCEDURE_STATUS', '1668'),
('COM_SHOW_PROCESSLIST', '6415'),
('COM_SHOW_PROFILE', '25'),
('COM_SHOW_PROFILES', '53'),
('COM_SHOW_RELAYLOG_EVENTS', '0'),
('COM_SHOW_SLAVE_HOSTS', '0'),
('COM_SHOW_SLAVE_STATUS', '10598'),
('COM_SHOW_STATUS', '9913'),
('COM_SHOW_STORAGE_ENGINES', '2283'),
('COM_SHOW_TABLE_STATUS', '107145'),

('COM_SHOW_TABLES', '452649'),
('COM_SHOW_TRIGGERS', '5377'),
('COM_SHOW_VARIABLES', '1942167'),
('COM_SHOW_WARNINGS', '4575'),
('COM_SLAVE_START', '0'),
('COM_SLAVE_STOP', '0'),
('COM_STMT_CLOSE', '54966'),
('COM_STMT_EXECUTE', '55266'),
('COM_STMT_FETCH', '8'),
('COM_STMT_PREPARE', '55565'),
('COM_STMT_REPREPARE', '0'),
('COM_STMT_RESET', '9067'),
('COM_STMT_SEND_LONG_DATA', '14'),
('COM_TRUNCATE', '7293'),
('COM_UNINSTALL_PLUGIN', '0'),
('COM_UNLOCK_TABLES', '881'),
('COM_UPDATE', '8364838'),
('COM_UPDATE_MULTI', '4873'),
('COM_XA_COMMIT', '12'),
('COM_XA_END', '12'),
('COM_XA_PREPARE', '12'),
('COM_XA_RECOVER', '0'),
('COM_XA_ROLLBACK', '0'),
('COM_XA_START', '12'),
('COMPRESSION', 'OFF'),
('CONNECTION_ERRORS_ACCEPT', '0'),
('CONNECTION_ERRORS_INTERNAL', '0'),
('CONNECTION_ERRORS_MAX_CONNECTIONS', '0'),
('CONNECTION_ERRORS_PEER_ADDRESS', '748'),
('CONNECTION_ERRORS_SELECT', '0'),
('CONNECTION_ERRORS_TCPWRAP', '0'),
('CONNECTIONS', '85079520'),
('CREATED_TMP_DISK_TABLES', '609232'),
('CREATED_TMP_FILES', '8428'),
('CREATED_TMP_TABLES', '6512850'),
('DELAYED_ERRORS', '0'),
('DELAYED_INSERT_THREADS', '0'),
('DELAYED_WRITES', '565'),
('FLUSH_COMMANDS', '1'),
('HANDLER_COMMIT', '96098732'),
('HANDLER_DELETE', '1374959'),
('HANDLER_DISCOVER', '0'),
('HANDLER_EXTERNAL_LOCK', '250962795'),
('HANDLER_MRR_INIT', '0'),
('HANDLER_PREPARE', '12'),
('HANDLER_READ_FIRST', '18995583'),
('HANDLER_READ_KEY', '191613501'),
('HANDLER_READ_LAST', '325501'),
('HANDLER_READ_NEXT', '904502972'),
('HANDLER_READ_PREV', '1176138720'),
('HANDLER_READ_RND', '36461186'),
('HANDLER_READ_RND_NEXT', '94893177715'),
('HANDLER_ROLLBACK', '416663'),
('HANDLER_SAVEPOINT', '6772'),
('HANDLER_SAVEPOINT_ROLLBACK', '30'),
('HANDLER_UPDATE', '120984222'),
('HANDLER_WRITE', '10417449456'),
('INNODB_BUFFER_POOL_DUMP_STATUS', 'not started'),
('INNODB_BUFFER_POOL_LOAD_STATUS', 'not started'),
('INNODB_BUFFER_POOL_PAGES_DATA', '7049'),

('INNODB_BUFFER_POOL_BYTES_DATA', '115490816'),
('INNODB_BUFFER_POOL_PAGES_DIRTY', '3018'),
('INNODB_BUFFER_POOL_BYTES_DIRTY', '49446912'),
('INNODB_BUFFER_POOL_PAGES_FLUSHED', '6960162'),
('INNODB_BUFFER_POOL_PAGES_FREE', '1023'),
('INNODB_BUFFER_POOL_PAGES_MISC', '119'),
('INNODB_BUFFER_POOL_PAGES_TOTAL', '8191'),
('INNODB_BUFFER_POOL_READ_AHEAD_RND', '0'),
('INNODB_BUFFER_POOL_READ_AHEAD', '302167'),
('INNODB_BUFFER_POOL_READ_AHEAD_EVICTED', '1227'),
('INNODB_BUFFER_POOL_READ_REQUESTS', '4517766299'),
('INNODB_BUFFER_POOL_READS', '2339188'),
('INNODB_BUFFER_POOL_WAIT_FREE', '615'),
('INNODB_BUFFER_POOL_WRITE_REQUESTS', '468002289'),
('INNODB_DATA_FSYNCS', '14468405'),
('INNODB_DATA_PENDING_FSYNCS', '2'),
('INNODB_DATA_PENDING_READS', '0'),
('INNODB_DATA_PENDING_WRITES', '0'),
('INNODB_DATA_READ', '74084028416'),
('INNODB_DATA_READS', '4543331'),
('INNODB_DATA_WRITES', '18731624'),
('INNODB_DATA_WRITTEN', '252324966912'),
('INNODB_DBLWR_PAGES_WRITTEN', '6960794'),
('INNODB_DBLWR_WRITES', '1016218'),
('INNODB_HAVE_ATOMIC_BUILTINS', 'ON'),
('INNODB_LOG_WAITS', '0'),
('INNODB_LOG_WRITE_REQUESTS', '38805098'),
('INNODB_LOG_WRITES', '10516423'),
('INNODB_OS_LOG_FSYNCS', '10716916'),
('INNODB_OS_LOG_PENDING_FSYNCS', '1'),
('INNODB_OS_LOG_PENDING_WRITES', '0'),
('INNODB_OS_LOG_WRITTEN', '24178355200'),
('INNODB_PAGE_SIZE', '16384'),
('INNODB_PAGES_CREATED', '889783'),
('INNODB_PAGES_READ', '4521008'),
('INNODB_PAGES_WRITTEN', '6960777'),
('INNODB_ROW_LOCK_CURRENT_WAITS', '0'),
('INNODB_ROW_LOCK_TIME', '6761787'),
('INNODB_ROW_LOCK_TIME_AVG', '2032'),
('INNODB_ROW_LOCK_TIME_MAX', '51656'),
('INNODB_ROW_LOCK_WAITS', '3327'),
('INNODB_ROWS_DELETED', '364733'),
('INNODB_ROWS_INSERTED', '85814400'),
('INNODB_ROWS_READ', '3734306228'),
('INNODB_ROWS_UPDATED', '5372283'),
('INNODB_NUM_OPEN_FILES', '1024'),
('INNODB_TRUNCATED_STATUS_WRITES', '0'),
('INNODB_AVAILABLE_UNDO_LOGS', '128'),
('KEY_BLOCKS_NOT_FLUSHED', '0'),
('KEY_BLOCKS_UNUSED', '392218'),
('KEY_BLOCKS_USED', '90899'),
('KEY_READ_REQUESTS', '610111833'),
('KEY_READS', '1270744'),
('KEY_WRITE_REQUESTS', '101420867'),
('KEY_WRITES', '21391436'),
('LAST_QUERY_COST', '0.000000'),
('LAST_QUERY_PARTIAL_PLANS', '0'),
('MAX_USED_CONNECTIONS', '3317'),
('NOT_FLUSHED_DELAYED_ROWS', '0'),
('OPEN_FILES', '667'),

('OPEN_STREAMS', '0'),
('OPEN_TABLE_DEFINITIONS', '912'),
('OPEN_TABLES', '1024'),
('OPENED_FILES', '3425654'),
('OPENED_TABLE_DEFINITIONS', '272231'),
('OPENED_TABLES', '397818'),
('PERFORMANCE_SCHEMA_ACCOUNTS_LOST', '4045200'),
('PERFORMANCE_SCHEMA_COND_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_COND_INSTANCES_LOST', '0'),
('PERFORMANCE_SCHEMA_DIGEST_LOST', '0'),
('PERFORMANCE_SCHEMA_FILE_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_FILE_HANDLES_LOST', '0'),
('PERFORMANCE_SCHEMA_FILE_INSTANCES_LOST', '3465931'),
('PERFORMANCE_SCHEMA_HOSTS_LOST', '3876112'),
('PERFORMANCE_SCHEMA_LOCKER_LOST', '0'),
('PERFORMANCE_SCHEMA_MUTEX_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_MUTEX_INSTANCES_LOST', '0'),
('PERFORMANCE_SCHEMA_RWLOCK_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_RWLOCK_INSTANCES_LOST', '0'),
('PERFORMANCE_SCHEMA_SESSION_CONNECT_ATTRS_LOST', '0'),
('PERFORMANCE_SCHEMA_SOCKET_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_SOCKET_INSTANCES_LOST', '0'),
('PERFORMANCE_SCHEMA_STAGE_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_STATEMENT_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_TABLE_HANDLES_LOST', '0'),
('PERFORMANCE_SCHEMA_TABLE_INSTANCES_LOST', '73091'),
('PERFORMANCE_SCHEMA_THREAD_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_THREAD_INSTANCES_LOST', '0'),
('PERFORMANCE_SCHEMA_USERS_LOST', '3880793'),
('PREPARED_STMT_COUNT', '0'),
('QCACHE_FREE_BLOCKS', '1'),
('QCACHE_FREE_MEMORY', '1031368'),
('QCACHE_HITS', '0'),
('QCACHE_INSERTS', '0'),
('QCACHE_LOWMEM_PRUNES', '0'),
('QCACHE_NOT_CACHED', '33203555'),
('QCACHE_QUERIES_IN_CACHE', '0'),
('QCACHE_TOTAL_BLOCKS', '1'),
('QUERIES', '188153095'),
('QUESTIONS', '174097340'),
('SELECT_FULL_JOIN', '116721'),
('SELECT_FULL_RANGE_JOIN', '3658'),
('SELECT_RANGE', '1302018'),
('SELECT_RANGE_CHECK', '12259'),
('SELECT_SCAN', '20513272'),
('SLAVE_HEARTBEAT_PERIOD', ''),
('SLAVE_LAST_HEARTBEAT', ''),
('SLAVE_OPEN_TEMP_TABLES', '0'),
('SLAVE_RECEIVED_HEARTBEATS', ''),
('SLAVE_RETRIED_TRANSACTIONS', ''),
('SLAVE_RUNNING', 'OFF'),
('SLOW_LAUNCH_THREADS', '0'),
('SLOW_QUERIES', '10627'),
('SORT_MERGE_PASSES', '1533'),
('SORT_RANGE', '354026'),
('SORT_ROWS', '300273302'),
('SORT_SCAN', '3434410'),
('SSL_ACCEPT_RENEGOTIATES', '0'),
('SSL_ACCEPTS', '0'),
('SSL_CALLBACK_CACHE_HITS', '0'),

('SSL_CIPHER', ''),
('SSL_CIPHER_LIST', ''),
('SSL_CLIENT_CONNECTS', '0'),
('SSL_CONNECT_RENEGOTIATES', '0'),
('SSL_CTX_VERIFY_DEPTH', '0'),
('SSL_CTX_VERIFY_MODE', '0'),
('SSL_DEFAULT_TIMEOUT', '0'),
('SSL_FINISHED_ACCEPTS', '0'),
('SSL_FINISHED_CONNECTS', '0'),
('SSL_SERVER_NOT_AFTER', ''),
('SSL_SERVER_NOT_BEFORE', ''),
('SSL_SESSION_CACHE_HITS', '0'),
('SSL_SESSION_CACHE_MISSES', '0'),
('SSL_SESSION_CACHE_MODE', 'NONE'),
('SSL_SESSION_CACHE_OVERFLOWS', '0'),
('SSL_SESSION_CACHE_SIZE', '0'),
('SSL_SESSION_CACHE_TIMEOUTS', '0'),
('SSL_SESSIONS_REUSED', '0'),
('SSL_USED_SESSION_CACHE_ENTRIES', '0'),
('SSL_VERIFY_DEPTH', '0'),
('SSL_VERIFY_MODE', '0'),
('SSL_VERSION', ''),
('TABLE_LOCKS_IMMEDIATE', '125096525'),
('TABLE_LOCKS_WAITED', '345249'),
('TABLE_OPEN_CACHE_HITS', '126139403'),
('TABLE_OPEN_CACHE_MISSES', '241134'),
('TABLE_OPEN_CACHE_OVERFLOWS', '206963'),
('TC_LOG_MAX_PAGES_USED', '0'),
('TC_LOG_PAGE_SIZE', '0'),
('TC_LOG_PAGE_WAITS', '0'),
('THREADS_CACHED', '15'),
('THREADS_CONNECTED', '756'),
('THREADS_CREATED', '97060'),
('THREADS_RUNNING', '5'),
('UPTIME', '929703'),
('UPTIME_SINCE_FLUSH_STATUS', '929703');
-- ---------------------------------------------------------- Table structure for table `GLOBAL_VARIABLES`
-CREATE TEMPORARY TABLE `GLOBAL_VARIABLES` (
`VARIABLE_NAME` varchar(64) NOT NULL DEFAULT '',
`VARIABLE_VALUE` varchar(1024) DEFAULT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--- Dumping data for table `GLOBAL_VARIABLES`
-INSERT INTO `GLOBAL_VARIABLES` (`VARIABLE_NAME`, `VARIABLE_VALUE`) VALUES
('MAX_PREPARED_STMT_COUNT', '16382'),
('TIMED_MUTEXES', 'OFF'),
('HAVE_CRYPT', 'YES'),
('INNODB_COMPRESSION_PAD_PCT_MAX', '50'),
('PERFORMANCE_SCHEMA_EVENTS_STATEMENTS_HISTORY_LONG_SIZE', '10000'),
('SLAVE_CHECKPOINT_PERIOD', '300'),
('INNODB_FLUSH_LOG_AT_TIMEOUT', '1'),

('MAX_CONNECTIONS', '4000'),
('DELAYED_INSERT_TIMEOUT', '300'),
('PERFORMANCE_SCHEMA', 'ON'),
('PID_FILE', '/data/mysql-5.6/db4free.net.pid'),
('CHARACTER_SETS_DIR', '/opt/mysql/mysql-5.6.10/share/charsets/'),
('INNODB_CMP_PER_INDEX_ENABLED', 'OFF'),
('PERFORMANCE_SCHEMA_MAX_COND_INSTANCES', '16900'),
('INNODB_ONLINE_ALTER_LOG_MAX_SIZE', '134217728'),
('KEY_CACHE_AGE_THRESHOLD', '300'),
('INNODB_STATS_TRANSIENT_SAMPLE_PAGES', '8'),
('PERFORMANCE_SCHEMA_MAX_MUTEX_INSTANCES', '29000'),
('SLOW_LAUNCH_TIME', '2'),
('PERFORMANCE_SCHEMA_MAX_COND_CLASSES', '80'),
('FT_MAX_WORD_LEN', '84'),
('OLD_PASSWORDS', '0'),
('RELAY_LOG_INDEX', ''),
('GTID_OWNED', ''),
('PERFORMANCE_SCHEMA_MAX_RWLOCK_CLASSES', '30'),
('PERFORMANCE_SCHEMA_MAX_STATEMENT_CLASSES', '167'),
('INNODB_FT_NUM_WORD_OPTIMIZE', '2000'),
('PERFORMANCE_SCHEMA_MAX_MUTEX_CLASSES', '200'),
('SLAVE_ROWS_SEARCH_ALGORITHMS', 'TABLE_SCAN,INDEX_SCAN'),
('EVENT_SCHEDULER', 'ON'),
('INNODB_STATS_ON_METADATA', 'OFF'),
('REPORT_HOST', ''),
('PERFORMANCE_SCHEMA_EVENTS_WAITS_HISTORY_SIZE', '10'),
('INNODB_SORT_BUFFER_SIZE', '1048576'),
('PERFORMANCE_SCHEMA_EVENTS_WAITS_HISTORY_LONG_SIZE', '10000'),
('INNODB_ROLLBACK_SEGMENTS', '128'),
('PERFORMANCE_SCHEMA_EVENTS_STAGES_HISTORY_SIZE', '10'),
('LARGE_FILES_SUPPORT', 'ON'),
('PERFORMANCE_SCHEMA_MAX_RWLOCK_INSTANCES', '10800'),
('ENFORCE_GTID_CONSISTENCY', 'OFF'),
('PERFORMANCE_SCHEMA_MAX_STAGE_CLASSES', '150'),
('NET_BUFFER_LENGTH', '16384'),
('AUTO_INCREMENT_OFFSET', '1'),
('SKIP_SHOW_DATABASE', 'OFF'),
('PERFORMANCE_SCHEMA_MAX_TABLE_HANDLES', '2048'),
('GROUP_CONCAT_MAX_LEN', '1024'),
('PERFORMANCE_SCHEMA_SETUP_OBJECTS_SIZE', '100'),
('RANGE_ALLOC_BLOCK_SIZE', '4096'),
('BINLOG_FORMAT', 'STATEMENT'),
('OPTIMIZER_TRACE_FEATURES', 'greedy_search=on,range_optimizer=on,dynamic_range=
on,repeated_subselect=on'),
('BIND_ADDRESS', '*'),
('INNODB_LOG_FILE_SIZE', '50331648'),
('TRANSACTION_PREALLOC_SIZE', '4096'),
('HAVE_RTREE_KEYS', 'YES'),
('INNODB_API_BK_COMMIT_INTERVAL', '5'),
('PERFORMANCE_SCHEMA_SETUP_ACTORS_SIZE', '100'),
('TIME_FORMAT', '%H:%i:%s'),
('MIN_EXAMINED_ROW_LIMIT', '0'),
('LOW_PRIORITY_UPDATES', 'OFF'),
('PERFORMANCE_SCHEMA_MAX_SOCKET_CLASSES', '10'),
('REPORT_PASSWORD', ''),
('BASEDIR', '/opt/mysql/current'),
('MAX_INSERT_DELAYED_THREADS', '20'),
('CHARACTER_SET_RESULTS', 'utf8'),
('SQL_BIG_SELECTS', 'ON'),
('BACK_LOG', '850'),

('TRANSACTION_ALLOC_BLOCK_SIZE', '8192'),
('RELAY_LOG_INFO_REPOSITORY', 'FILE'),
('INNODB_FLUSHING_AVG_LOOPS', '30'),
('EXPLICIT_DEFAULTS_FOR_TIMESTAMP', 'ON'),
('SYNC_FRM', 'ON'),
('COMPLETION_TYPE', 'NO_CHAIN'),
('FLUSH_TIME', '0'),
('PERFORMANCE_SCHEMA_EVENTS_STAGES_HISTORY_LONG_SIZE', '10000'),
('GTID_EXECUTED', ''),
('INNODB_IO_CAPACITY_MAX', '2000'),
('INNODB_IO_CAPACITY', '200'),
('OPEN_FILES_LIMIT', '20000'),
('INNODB_FT_ENABLE_DIAG_PRINT', 'OFF'),
('BINLOG_STMT_CACHE_SIZE', '32768'),
('HAVE_SYMLINK', 'YES'),
('AUTOMATIC_SP_PRIVILEGES', 'ON'),
('KEY_CACHE_BLOCK_SIZE', '1024'),
('QUERY_CACHE_LIMIT', '1048576'),
('INNODB_TABLE_LOCKS', 'ON'),
('SKIP_NETWORKING', 'OFF'),
('INNODB_AUTOEXTEND_INCREMENT', '64'),
('PERFORMANCE_SCHEMA_DIGESTS_SIZE', '10000'),
('MYISAM_DATA_POINTER_SIZE', '6'),
('FT_QUERY_EXPANSION_LIMIT', '20'),
('INNODB_THREAD_SLEEP_DELAY', '10000'),
('CONCURRENT_INSERT', 'AUTO'),
('SQL_AUTO_IS_NULL', 'OFF'),
('SLAVE_TRANSACTION_RETRIES', '10'),
('MAX_CONNECT_ERRORS', '100'),
('BINLOG_ROWS_QUERY_LOG_EVENTS', 'OFF'),
('GENERAL_LOG', 'OFF'),
('PERFORMANCE_SCHEMA_MAX_THREAD_CLASSES', '50'),
('INNODB_REPLICATION_DELAY', '0'),
('MASTER_INFO_REPOSITORY', 'FILE'),
('QUERY_CACHE_MIN_RES_UNIT', '4096'),
('INIT_SLAVE', ''),
('SORT_BUFFER_SIZE', '4194304'),
('MULTI_RANGE_COUNT', '256'),
('INNODB_ROLLBACK_ON_TIMEOUT', 'OFF'),
('LC_MESSAGES_DIR', '/opt/mysql/mysql-5.6.10/share/'),
('INNODB_MAX_DIRTY_PAGES_PCT', '75'),
('INIT_FILE', ''),
('INNODB_ADDITIONAL_MEM_POOL_SIZE', '8388608'),
('LARGE_PAGES', 'OFF'),
('READ_RND_BUFFER_SIZE', '16777216'),
('LARGE_PAGE_SIZE', '0'),
('INNODB_FILE_FORMAT', 'Antelope'),
('COLLATION_SERVER', 'utf8_general_ci'),
('BIG_TABLES', 'OFF'),
('MAX_BINLOG_SIZE', '1073741824'),
('OPTIMIZER_SEARCH_DEPTH', '62'),
('MAX_ALLOWED_PACKET', '12582912'),
('RELAY_LOG_BASENAME', ''),
('JOIN_BUFFER_SIZE', '262144'),
('READ_ONLY', 'OFF'),
('FT_MIN_WORD_LEN', '4'),
('MAX_BINLOG_CACHE_SIZE', '18446744073709547520'),
('INNODB_ADAPTIVE_MAX_SLEEP_DELAY', '150000'),
('DELAYED_QUEUE_SIZE', '1000'),
('INNODB_API_ENABLE_MDL', 'OFF'),

('AUTOCOMMIT', 'ON'),
('BINLOG_DIRECT_NON_TRANSACTIONAL_UPDATES', 'OFF'),
('MYISAM_REPAIR_THREADS', '1'),
('INNODB_STRICT_MODE', 'OFF'),
('PERFORMANCE_SCHEMA_EVENTS_STATEMENTS_HISTORY_SIZE', '10'),
('LOG_SLAVE_UPDATES', 'OFF'),
('LOG_QUERIES_NOT_USING_INDEXES', 'OFF'),
('SQL_LOG_BIN', 'ON'),
('MAX_HEAP_TABLE_SIZE', '16777216'),
('PERFORMANCE_SCHEMA_USERS_SIZE', '100'),
('FT_STOPWORD_FILE', '(built-in)'),
('AUTO_INCREMENT_INCREMENT', '1'),
('DELAY_KEY_WRITE', 'ON'),
('TMPDIR', '/tmp'),
('INIT_CONNECT', ''),
('SLAVE_PENDING_JOBS_SIZE_MAX', '16777216'),
('LONG_QUERY_TIME', '10.000000'),
('INNODB_FT_SORT_PLL_DEGREE', '2'),
('MAX_JOIN_SIZE', '18446744073709551615'),
('DISCONNECT_ON_EXPIRED_PASSWORD', 'ON'),
('MAX_SEEKS_FOR_KEY', '18446744073709551615'),
('RELAY_LOG_INFO_FILE', 'relay-log.info'),
('MAX_USER_CONNECTIONS', '0'),
('INNODB_AUTOINC_LOCK_MODE', '1'),
('BULK_INSERT_BUFFER_SIZE', '8388608'),
('LC_MESSAGES', 'en_US'),
('DELAYED_INSERT_LIMIT', '100'),
('LOWER_CASE_TABLE_NAMES', '0'),
('OLD_ALTER_TABLE', 'OFF'),
('INNODB_BUFFER_POOL_FILENAME', 'ib_buffer_pool'),
('END_MARKERS_IN_JSON', 'OFF'),
('INNODB_MAX_PURGE_LAG_DELAY', '0'),
('FLUSH', 'OFF'),
('INNODB_BUFFER_POOL_DUMP_NOW', 'OFF'),
('CHARACTER_SET_FILESYSTEM', 'binary'),
('INNODB_SYNC_SPIN_LOOPS', '30'),
('CONNECT_TIMEOUT', '10'),
('INNODB_CHECKSUM_ALGORITHM', 'innodb'),
('TABLE_OPEN_CACHE', '1024'),
('BINLOG_CACHE_SIZE', '32768'),
('INNODB_ADAPTIVE_HASH_INDEX', 'ON'),
('LOG_WARNINGS', '1'),
('MAX_SORT_LENGTH', '1024'),
('SKIP_NAME_RESOLVE', 'ON'),
('EQ_RANGE_INDEX_DIVE_LIMIT', '10'),
('METADATA_LOCKS_HASH_INSTANCES', '8'),
('INNODB_API_ENABLE_BINLOG', 'OFF'),
('SLOW_QUERY_LOG', 'OFF'),
('SSL_CRL', ''),
('INNODB_VERSION', '1.2.10'),
('QUERY_PREALLOC_SIZE', '8192'),
('INNODB_WRITE_IO_THREADS', '4'),
('TABLE_OPEN_CACHE_INSTANCES', '1'),
('INNODB_BUFFER_POOL_INSTANCES', '8'),
('QUERY_CACHE_WLOCK_INVALIDATE', 'OFF'),
('INNODB_UNDO_DIRECTORY', '.'),
('OPTIMIZER_PRUNE_LEVEL', '1'),
('INNODB_DISABLE_SORT_FILE_CACHE', 'OFF'),
('PERFORMANCE_SCHEMA_MAX_SOCKET_INSTANCES', '8020'),
('STORAGE_ENGINE', 'InnoDB'),

('HAVE_DYNAMIC_LOADING', 'YES'),
('HAVE_PROFILING', 'YES'),
('SYNC_BINLOG', '0'),
('BINLOG_ORDER_COMMITS', 'ON'),
('INNODB_PRINT_ALL_DEADLOCKS', 'OFF'),
('QUERY_CACHE_SIZE', '1048576'),
('INNODB_FT_SERVER_STOPWORD_TABLE', ''),
('CHARACTER_SET_CONNECTION', 'utf8'),
('INNODB_FILE_FORMAT_CHECK', 'ON'),
('PERFORMANCE_SCHEMA_MAX_FILE_CLASSES', '50'),
('INNODB_READ_AHEAD_THRESHOLD', '56'),
('LOCAL_INFILE', 'ON'),
('INNODB_READ_ONLY', 'OFF'),
('UPDATABLE_VIEWS_WITH_LIMIT', 'YES'),
('KEY_BUFFER_SIZE', '536870912'),
('NET_RETRY_COUNT', '10'),
('INNODB_MONITOR_RESET_ALL', ''),
('INNODB_OPTIMIZE_FULLTEXT_ONLY', 'OFF'),
('CHARACTER_SET_SYSTEM', 'utf8'),
('INNODB_STATS_METHOD', 'nulls_equal'),
('LOG_OUTPUT', 'FILE'),
('INNODB_FAST_SHUTDOWN', '1'),
('PERFORMANCE_SCHEMA_ACCOUNTS_SIZE', '100'),
('SSL_CA', ''),
('SSL_CAPATH', ''),
('INNODB_THREAD_CONCURRENCY', '0'),
('VERSION_COMMENT', 'MySQL Community Server (GPL)'),
('SLAVE_NET_TIMEOUT', '3600'),
('SLAVE_EXEC_MODE', 'STRICT'),
('INNODB_STATS_SAMPLE_PAGES', '8'),
('MAX_DELAYED_THREADS', '20'),
('SLAVE_ALLOW_BATCHING', 'OFF'),
('IGNORE_DB_DIRS', ''),
('INNODB_BUFFER_POOL_LOAD_NOW', 'OFF'),
('SERVER_UUID', 'a0c2adee-7d6b-11e2-af5f-c8600054b724'),
('INNODB_ADAPTIVE_FLUSHING_LWM', '10'),
('HAVE_SSL', 'DISABLED'),
('BINLOG_CHECKSUM', 'CRC32'),
('RELAY_LOG_RECOVERY', 'OFF'),
('INNODB_PAGE_SIZE', '16384'),
('SLOW_QUERY_LOG_FILE', '/data/mysql-5.6/db4free-slow.log'),
('PERFORMANCE_SCHEMA_MAX_FILE_HANDLES', '32768'),
('LOG_BIN_USE_V1_ROW_EVENTS', 'OFF'),
('INNODB_SYNC_ARRAY_SIZE', '1'),
('PERFORMANCE_SCHEMA_HOSTS_SIZE', '100'),
('INNODB_API_TRX_LEVEL', '0'),
('MAX_LENGTH_FOR_SORT_DATA', '1024'),
('DATETIME_FORMAT', '%Y-%m-%d %H:%i:%s'),
('VERSION_COMPILE_MACHINE', 'x86_64'),
('INNODB_FLUSH_LOG_AT_TRX_COMMIT', '1'),
('TABLE_DEFINITION_CACHE', '912'),
('TX_READ_ONLY', 'OFF'),
('QUERY_ALLOC_BLOCK_SIZE', '8192'),
('INNODB_RANDOM_READ_AHEAD', 'OFF'),
('INNODB_UNDO_LOGS', '128'),
('TMP_TABLE_SIZE', '16777216'),
('PORT', '3306'),
('THREAD_HANDLING', 'one-thread-per-connection'),
('METADATA_LOCKS_CACHE_SIZE', '1024'),
('QUERY_CACHE_TYPE', 'OFF'),

('LOG_BIN_TRUST_FUNCTION_CREATORS', 'OFF'),
('SLAVE_MAX_ALLOWED_PACKET', '1073741824'),
('INNODB_MONITOR_DISABLE', ''),
('LOCK_WAIT_TIMEOUT', '31536000'),
('HAVE_OPENSSL', 'DISABLED'),
('MAX_SP_RECURSION_DEPTH', '0'),
('MAX_BINLOG_STMT_CACHE_SIZE', '18446744073709547520'),
('REPORT_PORT', '3306'),
('PERFORMANCE_SCHEMA_MAX_FILE_INSTANCES', '2154'),
('SSL_CIPHER', ''),
('INNODB_SPIN_WAIT_DELAY', '6'),
('SQL_MODE', 'STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'),
('INNODB_FILE_FORMAT_MAX', 'Antelope'),
('HAVE_GEOMETRY', 'YES'),
('DEFAULT_STORAGE_ENGINE', 'InnoDB'),
('BINLOG_ROW_IMAGE', 'FULL'),
('INNODB_LOCK_WAIT_TIMEOUT', '50'),
('OPTIMIZER_TRACE_OFFSET', '-1'),
('INNODB_OLD_BLOCKS_TIME', '1000'),
('KEEP_FILES_ON_CREATE', 'OFF'),
('SECURE_FILE_PRIV', ''),
('FT_BOOLEAN_SYNTAX', '+ -><()~*:""&|'),
('SERVER_ID_BITS', '32'),
('OPTIMIZER_TRACE', 'enabled=off,one_line=off'),
('INNODB_COMPRESSION_FAILURE_THRESHOLD_PCT', '5'),
('CHARACTER_SET_DATABASE', 'utf8'),
('LOCKED_IN_MEMORY', 'OFF'),
('DATE_FORMAT', '%Y-%m-%d'),
('LOG_ERROR', '/data/logs/mysql-5.6-log-error'),
('PRELOAD_BUFFER_SIZE', '32768'),
('SSL_KEY', ''),
('SLAVE_COMPRESSED_PROTOCOL', 'OFF'),
('REPORT_USER', ''),
('TX_ISOLATION', 'REPEATABLE-READ'),
('SLAVE_SKIP_ERRORS', 'OFF'),
('OPTIMIZER_TRACE_LIMIT', '1'),
('SLAVE_PARALLEL_WORKERS', '0'),
('OPTIMIZER_TRACE_MAX_MEM_SIZE', '16384'),
('RELAY_LOG_PURGE', 'ON'),
('SSL_CRLPATH', ''),
('COLLATION_DATABASE', 'utf8_general_ci'),
('MAX_ERROR_COUNT', '64'),
('INNODB_MONITOR_ENABLE', ''),
('INNODB_LOG_BUFFER_SIZE', '8388608'),
('IGNORE_BUILTIN_INNODB', 'OFF'),
('HOST_CACHE_SIZE', '803'),
('LOWER_CASE_FILE_SYSTEM', 'OFF'),
('INNODB_MAX_PURGE_LAG', '0'),
('LOG_BIN_INDEX', ''),
('MYISAM_MAX_SORT_FILE_SIZE', '9223372036853727232'),
('INNODB_FORCE_RECOVERY', '0'),
('INNODB_LRU_SCAN_DEPTH', '1024'),
('UNIQUE_CHECKS', 'ON'),
('SQL_NOTES', 'ON'),
('MAX_TMP_TABLES', '32'),
('SQL_QUOTE_SHOW_CREATE', 'ON'),
('PROFILING', 'OFF'),
('CORE_FILE', 'OFF'),
('DEFAULT_TMP_STORAGE_ENGINE', 'InnoDB'),
('LOG_THROTTLE_QUERIES_NOT_USING_INDEXES', '0'),

('VERSION_COMPILE_OS', 'linux-glibc2.5'),
('HAVE_COMPRESS', 'YES'),
('BINLOG_MAX_FLUSH_QUEUE_TIME', '0'),
('HAVE_QUERY_CACHE', 'YES'),
('SQL_WARNINGS', 'OFF'),
('THREAD_CACHE_SIZE', '32'),
('MASTER_VERIFY_CHECKSUM', 'OFF'),
('INNODB_DOUBLEWRITE', 'ON'),
('MYISAM_RECOVER_OPTIONS', 'OFF'),
('INNODB_STATS_PERSISTENT', 'ON'),
('PLUGIN_DIR', '/opt/mysql/current/lib/plugin/'),
('DEFAULT_WEEK_FORMAT', '0'),
('SYNC_RELAY_LOG', '10000'),
('INNODB_CHANGE_BUFFER_MAX_SIZE', '25'),
('GENERAL_LOG_FILE', '/data/mysql-5.6/db4free.log'),
('PERFORMANCE_SCHEMA_MAX_TABLE_INSTANCES', '12500'),
('EXPIRE_LOGS_DAYS', '0'),
('INNODB_USE_NATIVE_AIO', 'ON'),
('SLAVE_TYPE_CONVERSIONS', ''),
('GTID_PURGED', ''),
('SQL_SLAVE_SKIP_COUNTER', '0'),
('INNODB_UNDO_TABLESPACES', '0'),
('READ_BUFFER_SIZE', '4194304'),
('COLLATION_CONNECTION', 'utf8_general_ci'),
('CHARACTER_SET_SERVER', 'utf8'),
('SQL_LOG_OFF', 'OFF'),
('INNODB_FT_MIN_TOKEN_SIZE', '3'),
('STORED_PROGRAM_CACHE', '256'),
('INNODB_FT_USER_STOPWORD_TABLE', ''),
('MYISAM_STATS_METHOD', 'nulls_unequal'),
('SERVER_ID', '0'),
('NET_WRITE_TIMEOUT', '60'),
('SQL_BUFFER_RESULT', 'OFF'),
('SLAVE_SQL_VERIFY_CHECKSUM', 'ON'),
('INNODB_BUFFER_POOL_LOAD_ABORT', 'OFF'),
('OLD', 'OFF'),
('SYNC_RELAY_LOG_INFO', '10000'),
('HOSTNAME', 'db4free.net'),
('SSL_CERT', ''),
('INNODB_API_DISABLE_ROWLOCK', 'OFF'),
('INNODB_FT_ENABLE_STOPWORD', 'ON'),
('INTERACTIVE_TIMEOUT', '28800'),
('INNODB_STATS_PERSISTENT_SAMPLE_PAGES', '20'),
('SLAVE_LOAD_TMPDIR', '/tmp'),
('PERFORMANCE_SCHEMA_SESSION_CONNECT_ATTRS_SIZE', '512'),
('WAIT_TIMEOUT', '28800'),
('PROFILING_HISTORY_SIZE', '15'),
('MAX_RELAY_LOG_SIZE', '0'),
('INNODB_CHANGE_BUFFERING', 'all'),
('INNODB_FLUSH_METHOD', ''),
('MYISAM_MMAP_SIZE', '18446744073709551615'),
('SECURE_AUTH', 'ON'),
('INNODB_CHECKSUMS', 'ON'),
('MAX_WRITE_LOCK_COUNT', '18446744073709551615'),
('INNODB_LOCKS_UNSAFE_FOR_BINLOG', 'OFF'),
('SQL_SELECT_LIMIT', '18446744073709551615'),
('SYSTEM_TIME_ZONE', 'CET'),
('MYISAM_USE_MMAP', 'OFF'),
('INNODB_BUFFER_POOL_LOAD_AT_STARTUP', 'OFF'),
('INNODB_FT_CACHE_SIZE', '8000000'),

('VERSION', '5.6.10'),
('INNODB_CONCURRENCY_TICKETS', '5000'),
('NET_READ_TIMEOUT', '30'),
('SQL_SAFE_UPDATES', 'OFF'),
('INNODB_PURGE_THREADS', '1'),
('GTID_MODE', 'OFF'),
('RELAY_LOG', ''),
('PROTOCOL_VERSION', '10'),
('INNODB_OPEN_FILES', '1024'),
('KEY_CACHE_DIVISION_LIMIT', '100'),
('INNODB_LOG_FILES_IN_GROUP', '2'),
('INNODB_BUFFER_POOL_DUMP_AT_SHUTDOWN', 'OFF'),
('INNODB_BUFFER_POOL_SIZE', '134217728'),
('SLAVE_CHECKPOINT_GROUP', '512'),
('LC_TIME_NAMES', 'en_US'),
('LOG_BIN_BASENAME', ''),
('INNODB_FT_MAX_TOKEN_SIZE', '84'),
('THREAD_CONCURRENCY', '10'),
('INNODB_LOG_GROUP_HOME_DIR', './'),
('INNODB_MAX_DIRTY_PAGES_PCT_LWM', '0'),
('INNODB_LARGE_PREFIX', 'OFF'),
('NEW', 'OFF'),
('MYISAM_SORT_BUFFER_SIZE', '134217728'),
('FOREIGN_KEY_CHECKS', 'ON'),
('CHARACTER_SET_CLIENT', 'utf8'),
('INNODB_MONITOR_RESET', ''),
('INNODB_FLUSH_NEIGHBORS', '1'),
('INNODB_STATS_AUTO_RECALC', 'ON'),
('INNODB_DATA_FILE_PATH', 'ibdata1:12M:autoextend'),
('INNODB_COMMIT_CONCURRENCY', '0'),
('SKIP_EXTERNAL_LOCKING', 'ON'),
('INNODB_MIRRORED_LOG_GROUPS', '1'),
('INNODB_FT_AUX_TABLE', ''),
('INNODB_PURGE_BATCH_SIZE', '300'),
('INNODB_USE_SYS_MALLOC', 'ON'),
('THREAD_STACK', '262144'),
('LICENSE', 'GPL'),
('INNODB_SUPPORT_XA', 'ON'),
('PERFORMANCE_SCHEMA_MAX_THREAD_INSTANCES', '8100'),
('SOCKET', '/tmp/mysql-56.sock'),
('INNODB_COMPRESSION_LEVEL', '6'),
('INNODB_FORCE_LOAD_CORRUPTED', 'OFF'),
('INNODB_ADAPTIVE_FLUSHING', 'ON'),
('LOG_BIN', 'OFF'),
('INNODB_FILE_PER_TABLE', 'ON'),
('RELAY_LOG_SPACE_LIMIT', '0'),
('SYNC_MASTER_INFO', '10000'),
('DIV_PRECISION_INCREMENT', '4'),
('INNODB_OLD_BLOCKS_PCT', '37'),
('DATADIR', '/data/mysql-5.6/'),
('TIME_ZONE', 'SYSTEM'),
('INNODB_DATA_HOME_DIR', ''),
('OPTIMIZER_SWITCH', 'index_merge=on,index_merge_union=on,index_merge_sort_union
=on,index_merge_intersection=on,engine_condition_pushdown=on,index_condition_pus
hdown=on,mrr=on,mrr_cost_based=on,block_nested_loop=on,batched_key_access=off,ma
terialization=on,semijoin=on,loosescan=on,firstmatch=on,subquery_materialization
_cost_based=on,use_index_extensions=on'),
('INNODB_READ_IO_THREADS', '4');
-- --------------------------------------------------------

--- Table structure for table `KEY_COLUMN_USAGE`


-CREATE TEMPORARY TABLE `KEY_COLUMN_USAGE` (
`CONSTRAINT_CATALOG` varchar(512) NOT NULL DEFAULT '',
`CONSTRAINT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`CONSTRAINT_NAME` varchar(64) NOT NULL DEFAULT '',
`TABLE_CATALOG` varchar(512) NOT NULL DEFAULT '',
`TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
`COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
`ORDINAL_POSITION` bigint(10) NOT NULL DEFAULT '0',
`POSITION_IN_UNIQUE_CONSTRAINT` bigint(10) DEFAULT NULL,
`REFERENCED_TABLE_SCHEMA` varchar(64) DEFAULT NULL,
`REFERENCED_TABLE_NAME` varchar(64) DEFAULT NULL,
`REFERENCED_COLUMN_NAME` varchar(64) DEFAULT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--- Dumping data for table `KEY_COLUMN_USAGE`
-INSERT INTO `KEY_COLUMN_USAGE` (`CONSTRAINT_CATALOG`, `CONSTRAINT_SCHEMA`, `CONS
TRAINT_NAME`, `TABLE_CATALOG`, `TABLE_SCHEMA`, `TABLE_NAME`, `COLUMN_NAME`, `ORD
INAL_POSITION`, `POSITION_IN_UNIQUE_CONSTRAINT`, `REFERENCED_TABLE_SCHEMA`, `REF
ERENCED_TABLE_NAME`, `REFERENCED_COLUMN_NAME`) VALUES
('def', 'rcpd', 'PRIMARY', 'def', 'rcpd', 'NewTable', 'ID', 1, NULL, NULL, NULL,
NULL),
('def', 'rcpd', 'PRIMARY', 'def', 'rcpd', 'SupTable', 'ID', 1, NULL, NULL, NULL,
NULL);
-- ---------------------------------------------------------- Table structure for table `OPTIMIZER_TRACE`
-CREATE TEMPORARY TABLE `OPTIMIZER_TRACE` (
`QUERY` longtext NOT NULL,
`TRACE` longtext NOT NULL,
`MISSING_BYTES_BEYOND_MAX_MEM_SIZE` int(20) NOT NULL DEFAULT '0',
`INSUFFICIENT_PRIVILEGES` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ---------------------------------------------------------- Table structure for table `PARAMETERS`
-CREATE TEMPORARY TABLE `PARAMETERS` (
`SPECIFIC_CATALOG` varchar(512) NOT NULL DEFAULT '',
`SPECIFIC_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`SPECIFIC_NAME` varchar(64) NOT NULL DEFAULT '',
`ORDINAL_POSITION` int(21) NOT NULL DEFAULT '0',
`PARAMETER_MODE` varchar(5) DEFAULT NULL,
`PARAMETER_NAME` varchar(64) DEFAULT NULL,
`DATA_TYPE` varchar(64) NOT NULL DEFAULT '',

`CHARACTER_MAXIMUM_LENGTH` int(21) DEFAULT NULL,


`CHARACTER_OCTET_LENGTH` int(21) DEFAULT NULL,
`NUMERIC_PRECISION` bigint(21) unsigned DEFAULT NULL,
`NUMERIC_SCALE` int(21) DEFAULT NULL,
`DATETIME_PRECISION` bigint(21) unsigned DEFAULT NULL,
`CHARACTER_SET_NAME` varchar(64) DEFAULT NULL,
`COLLATION_NAME` varchar(64) DEFAULT NULL,
`DTD_IDENTIFIER` longtext NOT NULL,
`ROUTINE_TYPE` varchar(9) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ---------------------------------------------------------- Table structure for table `PARTITIONS`
-CREATE TEMPORARY TABLE `PARTITIONS` (
`TABLE_CATALOG` varchar(512) NOT NULL DEFAULT '',
`TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
`PARTITION_NAME` varchar(64) DEFAULT NULL,
`SUBPARTITION_NAME` varchar(64) DEFAULT NULL,
`PARTITION_ORDINAL_POSITION` bigint(21) unsigned DEFAULT NULL,
`SUBPARTITION_ORDINAL_POSITION` bigint(21) unsigned DEFAULT NULL,
`PARTITION_METHOD` varchar(18) DEFAULT NULL,
`SUBPARTITION_METHOD` varchar(12) DEFAULT NULL,
`PARTITION_EXPRESSION` longtext,
`SUBPARTITION_EXPRESSION` longtext,
`PARTITION_DESCRIPTION` longtext,
`TABLE_ROWS` bigint(21) unsigned NOT NULL DEFAULT '0',
`AVG_ROW_LENGTH` bigint(21) unsigned NOT NULL DEFAULT '0',
`DATA_LENGTH` bigint(21) unsigned NOT NULL DEFAULT '0',
`MAX_DATA_LENGTH` bigint(21) unsigned DEFAULT NULL,
`INDEX_LENGTH` bigint(21) unsigned NOT NULL DEFAULT '0',
`DATA_FREE` bigint(21) unsigned NOT NULL DEFAULT '0',
`CREATE_TIME` datetime DEFAULT NULL,
`UPDATE_TIME` datetime DEFAULT NULL,
`CHECK_TIME` datetime DEFAULT NULL,
`CHECKSUM` bigint(21) unsigned DEFAULT NULL,
`PARTITION_COMMENT` varchar(80) NOT NULL DEFAULT '',
`NODEGROUP` varchar(12) NOT NULL DEFAULT '',
`TABLESPACE_NAME` varchar(64) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--- Dumping data for table `PARTITIONS`
-INSERT INTO `PARTITIONS` (`TABLE_CATALOG`, `TABLE_SCHEMA`, `TABLE_NAME`, `PARTIT
ION_NAME`, `SUBPARTITION_NAME`, `PARTITION_ORDINAL_POSITION`, `SUBPARTITION_ORDI
NAL_POSITION`, `PARTITION_METHOD`, `SUBPARTITION_METHOD`, `PARTITION_EXPRESSION`
, `SUBPARTITION_EXPRESSION`, `PARTITION_DESCRIPTION`, `TABLE_ROWS`, `AVG_ROW_LEN
GTH`, `DATA_LENGTH`, `MAX_DATA_LENGTH`, `INDEX_LENGTH`, `DATA_FREE`, `CREATE_TIM
E`, `UPDATE_TIME`, `CHECK_TIME`, `CHECKSUM`, `PARTITION_COMMENT`, `NODEGROUP`, `
TABLESPACE_NAME`) VALUES
('def', 'information_schema', 'CHARACTER_SETS', NULL, NULL, NULL, NULL, NULL, NU
LL, NULL, NULL, NULL, 0, 384, 0, 16434816, 0, 0, '2013-03-29 17:14:53', NULL, NU
LL, NULL, '', '', NULL),
('def', 'information_schema', 'COLLATIONS', NULL, NULL, NULL, NULL, NULL, NULL,

NULL, NULL, NULL, 0, 231, 0, 16704765, 0, 0, '2013-03-29 17:14:53', NULL, NULL,


NULL, '', '', NULL),
('def', 'information_schema', 'COLLATION_CHARACTER_SET_APPLICABILITY', NULL, NUL
L, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 195, 0, 16357770, 0, 0, '2013-03
-29 17:14:53', NULL, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'COLUMNS', NULL, NULL, NULL, NULL, NULL, NULL, NUL
L, NULL, NULL, 0, 0, 0, 281474976710655, 1024, 0, '2013-03-29 17:14:53', '2013-0
3-29 17:14:53', NULL, NULL, '', '', NULL),
('def', 'information_schema', 'COLUMN_PRIVILEGES', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, 0, 2565, 0, 16757145, 0, 0, '2013-03-29 17:14:53', NULL
, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'ENGINES', NULL, NULL, NULL, NULL, NULL, NULL, NUL
L, NULL, NULL, 0, 490, 0, 16574250, 0, 0, '2013-03-29 17:14:53', NULL, NULL, NUL
L, '', '', NULL),
('def', 'information_schema', 'EVENTS', NULL, NULL, NULL, NULL, NULL, NULL, NULL
, NULL, NULL, 0, 0, 0, 281474976710655, 1024, 0, '2013-03-29 17:14:53', '2013-03
-29 17:14:53', NULL, NULL, '', '', NULL),
('def', 'information_schema', 'FILES', NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, 0, 2659, 0, 16743723, 0, 0, '2013-03-29 17:14:53', NULL, NULL, NULL
, '', '', NULL),
('def', 'information_schema', 'GLOBAL_STATUS', NULL, NULL, NULL, NULL, NULL, NUL
L, NULL, NULL, NULL, 0, 3268, 0, 16755036, 0, 0, '2013-03-29 17:14:53', NULL, NU
LL, NULL, '', '', NULL),
('def', 'information_schema', 'GLOBAL_VARIABLES', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, 0, 3268, 0, 16755036, 0, 0, '2013-03-29 17:14:53', NULL,
NULL, NULL, '', '', NULL),
('def', 'information_schema', 'KEY_COLUMN_USAGE', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, 0, 4637, 0, 16762755, 0, 0, '2013-03-29 17:14:53', NULL,
NULL, NULL, '', '', NULL),
('def', 'information_schema', 'OPTIMIZER_TRACE', NULL, NULL, NULL, NULL, NULL, N
ULL, NULL, NULL, NULL, 0, 0, 0, 281474976710655, 1024, 0, '2013-03-29 17:14:53',
'2013-03-29 17:14:53', NULL, NULL, '', '', NULL),
('def', 'information_schema', 'PARAMETERS', NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, 0, 0, 0, 281474976710655, 1024, 0, '2013-03-29 17:14:53', '201
3-03-29 17:14:53', NULL, NULL, '', '', NULL),
('def', 'information_schema', 'PARTITIONS', NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, 0, 0, 0, 281474976710655, 1024, 0, '2013-03-29 17:14:53', '201
3-03-29 17:14:53', NULL, NULL, '', '', NULL),
('def', 'information_schema', 'PLUGINS', NULL, NULL, NULL, NULL, NULL, NULL, NUL
L, NULL, NULL, 0, 0, 0, 281474976710655, 1024, 0, '2013-03-29 17:14:53', '2013-0
3-29 17:14:53', NULL, NULL, '', '', NULL),
('def', 'information_schema', 'PROCESSLIST', NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, 0, 0, 0, 281474976710655, 1024, 0, '2013-03-29 17:14:53', '20
13-03-29 17:14:53', NULL, NULL, '', '', NULL),
('def', 'information_schema', 'PROFILING', NULL, NULL, NULL, NULL, NULL, NULL, N
ULL, NULL, NULL, 0, 308, 0, 16562084, 0, 0, '2013-03-29 17:14:53', NULL, NULL, N
ULL, '', '', NULL),
('def', 'information_schema', 'REFERENTIAL_CONSTRAINTS', NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, 0, 4814, 0, 16767162, 0, 0, '2013-03-29 17:14:53'
, NULL, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'ROUTINES', NULL, NULL, NULL, NULL, NULL, NULL, NU
LL, NULL, NULL, 0, 0, 0, 281474976710655, 1024, 0, '2013-03-29 17:14:53', '201303-29 17:14:53', NULL, NULL, '', '', NULL),
('def', 'information_schema', 'SCHEMATA', NULL, NULL, NULL, NULL, NULL, NULL, NU
LL, NULL, NULL, 0, 3464, 0, 16738048, 0, 0, '2013-03-29 17:14:53', NULL, NULL, N
ULL, '', '', NULL),
('def', 'information_schema', 'SCHEMA_PRIVILEGES', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, 0, 2179, 0, 16736899, 0, 0, '2013-03-29 17:14:53', NULL
, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'SESSION_STATUS', NULL, NULL, NULL, NULL, NULL, NU

LL, NULL, NULL, NULL, 0, 3268, 0, 16755036, 0, 0, '2013-03-29 17:14:53', NULL, N


ULL, NULL, '', '', NULL),
('def', 'information_schema', 'SESSION_VARIABLES', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, 0, 3268, 0, 16755036, 0, 0, '2013-03-29 17:14:53', NULL
, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'STATISTICS', NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, 0, 5753, 0, 16752736, 0, 0, '2013-03-29 17:14:53', NULL, NULL,
NULL, '', '', NULL),
('def', 'information_schema', 'TABLES', NULL, NULL, NULL, NULL, NULL, NULL, NULL
, NULL, NULL, 0, 9441, 0, 16757775, 0, 0, '2013-03-29 17:14:53', NULL, NULL, NUL
L, '', '', NULL),
('def', 'information_schema', 'TABLESPACES', NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, 0, 6951, 0, 16772763, 0, 0, '2013-03-29 17:14:53', NULL, NULL
, NULL, '', '', NULL),
('def', 'information_schema', 'TABLE_CONSTRAINTS', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, 0, 2504, 0, 16721712, 0, 0, '2013-03-29 17:14:53', NULL
, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'TABLE_PRIVILEGES', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, 0, 2372, 0, 16748692, 0, 0, '2013-03-29 17:14:53', NULL,
NULL, NULL, '', '', NULL),
('def', 'information_schema', 'TRIGGERS', NULL, NULL, NULL, NULL, NULL, NULL, NU
LL, NULL, NULL, 0, 0, 0, 281474976710655, 1024, 0, '2013-03-29 17:14:53', '201303-29 17:14:53', NULL, NULL, '', '', NULL),
('def', 'information_schema', 'USER_PRIVILEGES', NULL, NULL, NULL, NULL, NULL, N
ULL, NULL, NULL, NULL, 0, 1986, 0, 16726092, 0, 0, '2013-03-29 17:14:53', NULL,
NULL, NULL, '', '', NULL),
('def', 'information_schema', 'VIEWS', NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, 0, 0, 0, 281474976710655, 1024, 0, '2013-03-29 17:14:53', '2013-0329 17:14:53', NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_LOCKS', NULL, NULL, NULL, NULL, NULL, NULL
, NULL, NULL, NULL, 0, 31244, 0, 16746784, 0, 0, '2013-03-29 17:14:53', NULL, NU
LL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_TRX', NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, 0, 4536, 0, 16746912, 0, 0, '2013-03-29 17:14:53', NULL, NULL,
NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_SYS_DATAFILES', NULL, NULL, NULL, NULL, NU
LL, NULL, NULL, NULL, NULL, 0, 12007, 0, 16773779, 0, 0, '2013-03-29 17:14:53',
NULL, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_LOCK_WAITS', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, 0, 599, 0, 16749238, 0, 0, '2013-03-29 17:14:53', NULL,
NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_SYS_TABLESTATS', NULL, NULL, NULL, NULL, N
ULL, NULL, NULL, NULL, NULL, 0, 1215, 0, 16763355, 0, 0, '2013-03-29 17:14:53',
NULL, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_CMP', NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, 0, 25, 0, 13107200, 0, 0, '2013-03-29 17:14:53', NULL, NULL, N
ULL, '', '', NULL),
('def', 'information_schema', 'INNODB_FT_BEING_DELETED', NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, 0, 9, 0, 9437184, 0, 0, '2013-03-29 17:14:53', NU
LL, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_CMP_RESET', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, 0, 25, 0, 13107200, 0, 0, '2013-03-29 17:14:53', NULL, N
ULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX', NULL, NULL, NULL, NULL, NU
LL, NULL, NULL, NULL, NULL, 0, 1755, 0, 16728660, 0, 0, '2013-03-29 17:14:53', N
ULL, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_CMPMEM_RESET', NULL, NULL, NULL, NULL, NUL
L, NULL, NULL, NULL, NULL, 0, 29, 0, 15204352, 0, 0, '2013-03-29 17:14:53', NULL
, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_FT_DELETED', NULL, NULL, NULL, NULL, NULL,

NULL, NULL, NULL, NULL, 0, 9, 0, 9437184, 0, 0, '2013-03-29 17:14:53', NULL, NU


LL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, 0, 6669, 0, 16765866, 0, 0, '2013-03-29 17:14:53',
NULL, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_FT_INSERTED', NULL, NULL, NULL, NULL, NULL
, NULL, NULL, NULL, NULL, 0, 9, 0, 9437184, 0, 0, '2013-03-29 17:14:53', NULL, N
ULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_CMPMEM', NULL, NULL, NULL, NULL, NULL, NUL
L, NULL, NULL, NULL, 0, 29, 0, 15204352, 0, 0, '2013-03-29 17:14:53', NULL, NULL
, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_SYS_INDEXES', NULL, NULL, NULL, NULL, NULL
, NULL, NULL, NULL, NULL, 0, 614, 0, 16722290, 0, 0, '2013-03-29 17:14:53', NULL
, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_SYS_TABLES', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, 0, 2060, 0, 16743680, 0, 0, '2013-03-29 17:14:53', NULL
, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_SYS_FIELDS', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, 0, 594, 0, 16609428, 0, 0, '2013-03-29 17:14:53', NULL,
NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX_RESET', NULL, NULL, NULL, NU
LL, NULL, NULL, NULL, NULL, NULL, 0, 1755, 0, 16728660, 0, 0, '2013-03-29 17:14:
53', NULL, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', NULL, NULL, NULL, NULL, NULL
, NULL, NULL, NULL, NULL, 0, 6852, 0, 16766844, 0, 0, '2013-03-29 17:14:53', NUL
L, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_FT_DEFAULT_STOPWORD', NULL, NULL, NULL, NU
LL, NULL, NULL, NULL, NULL, NULL, 0, 56, 0, 14680064, 0, 0, '2013-03-29 17:14:53
', NULL, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_FT_INDEX_TABLE', NULL, NULL, NULL, NULL, N
ULL, NULL, NULL, NULL, NULL, 0, 802, 0, 16651926, 0, 0, '2013-03-29 17:14:53', N
ULL, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_FT_INDEX_CACHE', NULL, NULL, NULL, NULL, N
ULL, NULL, NULL, NULL, NULL, 0, 802, 0, 16651926, 0, 0, '2013-03-29 17:14:53', N
ULL, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_SYS_TABLESPACES', NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, 0, 2082, 0, 16728870, 0, 0, '2013-03-29 17:14:53',
NULL, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_METRICS', NULL, NULL, NULL, NULL, NULL, NU
LL, NULL, NULL, NULL, 0, 2994, 0, 16742448, 0, 0, '2013-03-29 17:14:53', NULL, N
ULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_SYS_FOREIGN_COLS', NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, 0, 1748, 0, 16738848, 0, 0, '2013-03-29 17:14:53'
, NULL, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_FT_CONFIG', NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, 0, 1163, 0, 16705332, 0, 0, '2013-03-29 17:14:53', NULL,
NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', NULL, NULL, NULL, NULL
, NULL, NULL, NULL, NULL, NULL, 0, 257, 0, 16332350, 0, 0, '2013-03-29 17:14:53'
, NULL, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_SYS_COLUMNS', NULL, NULL, NULL, NULL, NULL
, NULL, NULL, NULL, NULL, 0, 610, 0, 16613350, 0, 0, '2013-03-29 17:14:53', NULL
, NULL, NULL, '', '', NULL),
('def', 'information_schema', 'INNODB_SYS_FOREIGN', NULL, NULL, NULL, NULL, NULL
, NULL, NULL, NULL, NULL, 0, 1752, 0, 16700064, 0, 0, '2013-03-29 17:14:53', NUL
L, NULL, NULL, '', '', NULL),
('def', 'rcpd', 'NewTable', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
, 37, 442, 16384, NULL, 0, 0, '2013-03-18 06:39:52', NULL, NULL, NULL, '', '', N
ULL),
('def', 'rcpd', 'SupTable', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL

, 6, 2730, 16384, NULL, 0, 0, '2013-03-18 22:34:00', NULL, NULL, NULL, '', '', N
ULL);
-- ---------------------------------------------------------- Table structure for table `PLUGINS`
-CREATE TEMPORARY TABLE `PLUGINS` (
`PLUGIN_NAME` varchar(64) NOT NULL DEFAULT '',
`PLUGIN_VERSION` varchar(20) NOT NULL DEFAULT '',
`PLUGIN_STATUS` varchar(10) NOT NULL DEFAULT '',
`PLUGIN_TYPE` varchar(80) NOT NULL DEFAULT '',
`PLUGIN_TYPE_VERSION` varchar(20) NOT NULL DEFAULT '',
`PLUGIN_LIBRARY` varchar(64) DEFAULT NULL,
`PLUGIN_LIBRARY_VERSION` varchar(20) DEFAULT NULL,
`PLUGIN_AUTHOR` varchar(64) DEFAULT NULL,
`PLUGIN_DESCRIPTION` longtext,
`PLUGIN_LICENSE` varchar(80) DEFAULT NULL,
`LOAD_OPTION` varchar(64) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--- Dumping data for table `PLUGINS`
-INSERT INTO `PLUGINS` (`PLUGIN_NAME`, `PLUGIN_VERSION`, `PLUGIN_STATUS`, `PLUGIN
_TYPE`, `PLUGIN_TYPE_VERSION`, `PLUGIN_LIBRARY`, `PLUGIN_LIBRARY_VERSION`, `PLUG
IN_AUTHOR`, `PLUGIN_DESCRIPTION`, `PLUGIN_LICENSE`, `LOAD_OPTION`) VALUES
('binlog', '1.0', 'ACTIVE', 'STORAGE ENGINE', '50610.0', NULL, NULL, 'MySQL AB',
'This is a pseudo storage engine to represent the binlog in a transaction', 'GP
L', 'FORCE'),
('mysql_native_password', '1.0', 'ACTIVE', 'AUTHENTICATION', '1.0', NULL, NULL,
'R.J.Silk, Sergei Golubchik', 'Native MySQL authentication', 'GPL', 'FORCE'),
('mysql_old_password', '1.0', 'ACTIVE', 'AUTHENTICATION', '1.0', NULL, NULL, 'R.
J.Silk, Sergei Golubchik', 'Old MySQL-4.0 authentication', 'GPL', 'FORCE'),
('sha256_password', '1.0', 'ACTIVE', 'AUTHENTICATION', '1.0', NULL, NULL, 'Oracl
e', 'SHA256 password authentication', 'GPL', 'FORCE'),
('MRG_MYISAM', '1.0', 'ACTIVE', 'STORAGE ENGINE', '50610.0', NULL, NULL, 'MySQL
AB', 'Collection of identical MyISAM tables', 'GPL', 'FORCE'),
('MyISAM', '1.0', 'ACTIVE', 'STORAGE ENGINE', '50610.0', NULL, NULL, 'MySQL AB',
'MyISAM storage engine', 'GPL', 'FORCE'),
('MEMORY', '1.0', 'ACTIVE', 'STORAGE ENGINE', '50610.0', NULL, NULL, 'MySQL AB',
'Hash based, stored in memory, useful for temporary tables', 'GPL', 'FORCE'),
('CSV', '1.0', 'ACTIVE', 'STORAGE ENGINE', '50610.0', NULL, NULL, 'Brian Aker, M
ySQL AB', 'CSV storage engine', 'GPL', 'FORCE'),
('InnoDB', '1.2', 'ACTIVE', 'STORAGE ENGINE', '50610.0', NULL, NULL, 'Oracle Cor
poration', 'Supports transactions, row-level locking, and foreign keys', 'GPL',
'ON'),
('INNODB_TRX', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL, NULL, 'Or
acle Corporation', 'InnoDB transactions', 'GPL', 'ON'),
('INNODB_LOCKS', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL, NULL, '
Oracle Corporation', 'InnoDB conflicting locks', 'GPL', 'ON'),
('INNODB_LOCK_WAITS', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL, NU
LL, 'Oracle Corporation', 'InnoDB which lock is blocking which', 'GPL', 'ON'),
('INNODB_CMP', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL, NULL, 'Or
acle Corporation', 'Statistics for the InnoDB compression', 'GPL', 'ON'),
('INNODB_CMP_RESET', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL, NUL
L, 'Oracle Corporation', 'Statistics for the InnoDB compression; reset cumulated

counts', 'GPL', 'ON'),


('INNODB_CMPMEM', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL, NULL,
'Oracle Corporation', 'Statistics for the InnoDB compressed buffer pool', 'GPL',
'ON'),
('INNODB_CMPMEM_RESET', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL,
NULL, 'Oracle Corporation', 'Statistics for the InnoDB compressed buffer pool; r
eset cumulated counts', 'GPL', 'ON'),
('INNODB_CMP_PER_INDEX', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL,
NULL, 'Oracle Corporation', 'Statistics for the InnoDB compression (per index)'
, 'GPL', 'ON'),
('INNODB_CMP_PER_INDEX_RESET', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0',
NULL, NULL, 'Oracle Corporation', 'Statistics for the InnoDB compression (per i
ndex); reset cumulated counts', 'GPL', 'ON'),
('INNODB_BUFFER_PAGE', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL, N
ULL, 'Oracle Corporation', 'InnoDB Buffer Page Information', 'GPL', 'ON'),
('INNODB_BUFFER_PAGE_LRU', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NUL
L, NULL, 'Oracle Corporation', 'InnoDB Buffer Page in LRU', 'GPL', 'ON'),
('INNODB_BUFFER_POOL_STATS', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', N
ULL, NULL, 'Oracle Corporation', 'InnoDB Buffer Pool Statistics Information ', '
GPL', 'ON'),
('INNODB_METRICS', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL, NULL,
'Oracle Corporation', 'InnoDB Metrics Info', 'GPL', 'ON'),
('INNODB_FT_DEFAULT_STOPWORD', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50266.177
', NULL, NULL, 'Oracle Corporation', 'Default stopword list for InnDB Full Text
Search', 'GPL', 'ON'),
('INNODB_FT_INSERTED', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50606.25', NULL,
NULL, 'Oracle Corporation', 'INNODB AUXILIARY FTS INSERTED TABLE', 'GPL', 'ON'),
('INNODB_FT_DELETED', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50606.25', NULL, N
ULL, 'Oracle Corporation', 'INNODB AUXILIARY FTS DELETED TABLE', 'GPL', 'ON'),
('INNODB_FT_BEING_DELETED', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50606.25', N
ULL, NULL, 'Oracle Corporation', 'INNODB AUXILIARY FTS BEING DELETED TABLE', 'GP
L', 'ON'),
('INNODB_FT_CONFIG', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '48182.60', NULL, NU
LL, 'Oracle Corporation', 'INNODB AUXILIARY FTS CONFIG TABLE', 'GPL', 'ON'),
('INNODB_FT_INDEX_CACHE', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '49953.63', NUL
L, NULL, 'Oracle Corporation', 'INNODB AUXILIARY FTS INDEX CACHED', 'GPL', 'ON')
,
('INNODB_FT_INDEX_TABLE', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '49953.63', NUL
L, NULL, 'Oracle Corporation', 'INNODB AUXILIARY FTS INDEX TABLE', 'GPL', 'ON'),
('INNODB_SYS_TABLES', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL, NU
LL, 'Oracle Corporation', 'InnoDB SYS_TABLES', 'GPL', 'ON'),
('INNODB_SYS_TABLESTATS', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL
, NULL, 'Oracle Corporation', 'InnoDB SYS_TABLESTATS', 'GPL', 'ON'),
('INNODB_SYS_INDEXES', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL, N
ULL, 'Oracle Corporation', 'InnoDB SYS_INDEXES', 'GPL', 'ON'),
('INNODB_SYS_COLUMNS', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL, N
ULL, 'Oracle Corporation', 'InnoDB SYS_COLUMNS', 'GPL', 'ON'),
('INNODB_SYS_FIELDS', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL, NU
LL, 'Oracle Corporation', 'InnoDB SYS_FIELDS', 'GPL', 'ON'),
('INNODB_SYS_FOREIGN', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL, N
ULL, 'Oracle Corporation', 'InnoDB SYS_FOREIGN', 'GPL', 'ON'),
('INNODB_SYS_FOREIGN_COLS', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NU
LL, NULL, 'Oracle Corporation', 'InnoDB SYS_FOREIGN_COLS', 'GPL', 'ON'),
('INNODB_SYS_TABLESPACES', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NUL
L, NULL, 'Oracle Corporation', 'InnoDB SYS_TABLESPACES', 'GPL', 'ON'),
('INNODB_SYS_DATAFILES', '1.2', 'ACTIVE', 'INFORMATION SCHEMA', '50610.0', NULL,
NULL, 'Oracle Corporation', 'InnoDB SYS_DATAFILES', 'GPL', 'ON'),
('PERFORMANCE_SCHEMA', '0.1', 'ACTIVE', 'STORAGE ENGINE', '50610.0', NULL, NULL,
'Marc Alff, Oracle', 'Performance Schema', 'GPL', 'FORCE'),
('BLACKHOLE', '1.0', 'ACTIVE', 'STORAGE ENGINE', '50610.0', NULL, NULL, 'MySQL A

B', '/dev/null storage engine (anything you write to it disappears)', 'GPL', 'ON
'),
('FEDERATED', '1.0', 'ACTIVE', 'STORAGE ENGINE', '50610.0', NULL, NULL, 'Patrick
Galbraith and Brian Aker, MySQL AB', 'Federated MySQL storage engine', 'GPL', '
ON'),
('ARCHIVE', '3.0', 'ACTIVE', 'STORAGE ENGINE', '50610.0', NULL, NULL, 'Brian Ake
r, MySQL AB', 'Archive storage engine', 'GPL', 'ON'),
('partition', '1.0', 'ACTIVE', 'STORAGE ENGINE', '50610.0', NULL, NULL, 'Mikael
Ronstrom, MySQL AB', 'Partition Storage Engine Helper', 'GPL', 'ON');
-- ---------------------------------------------------------- Table structure for table `PROCESSLIST`
-CREATE TEMPORARY TABLE `PROCESSLIST` (
`ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`USER` varchar(16) NOT NULL DEFAULT '',
`HOST` varchar(64) NOT NULL DEFAULT '',
`DB` varchar(64) DEFAULT NULL,
`COMMAND` varchar(16) NOT NULL DEFAULT '',
`TIME` int(7) NOT NULL DEFAULT '0',
`STATE` varchar(64) DEFAULT NULL,
`INFO` longtext
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--- Dumping data for table `PROCESSLIST`
-INSERT INTO `PROCESSLIST` (`ID`, `USER`, `HOST`, `DB`, `COMMAND`, `TIME`, `STATE
`, `INFO`) VALUES
(84546118, 'thechamptmb', '92.23.80.121:57356', 'rcpd', 'Sleep', 4748, '', NULL)
,
(85079438, 'thechamptmb', '127.0.0.1:43753', NULL, 'Query', 0, 'executing', 'SEL
ECT * FROM `information_schema`.`PROCESSLIST`');
-- ---------------------------------------------------------- Table structure for table `PROFILING`
-CREATE TEMPORARY TABLE `PROFILING` (
`QUERY_ID` int(20) NOT NULL DEFAULT '0',
`SEQ` int(20) NOT NULL DEFAULT '0',
`STATE` varchar(30) NOT NULL DEFAULT '',
`DURATION` decimal(9,6) NOT NULL DEFAULT '0.000000',
`CPU_USER` decimal(9,6) DEFAULT NULL,
`CPU_SYSTEM` decimal(9,6) DEFAULT NULL,
`CONTEXT_VOLUNTARY` int(20) DEFAULT NULL,
`CONTEXT_INVOLUNTARY` int(20) DEFAULT NULL,
`BLOCK_OPS_IN` int(20) DEFAULT NULL,
`BLOCK_OPS_OUT` int(20) DEFAULT NULL,
`MESSAGES_SENT` int(20) DEFAULT NULL,
`MESSAGES_RECEIVED` int(20) DEFAULT NULL,
`PAGE_FAULTS_MAJOR` int(20) DEFAULT NULL,
`PAGE_FAULTS_MINOR` int(20) DEFAULT NULL,
`SWAPS` int(20) DEFAULT NULL,

`SOURCE_FUNCTION` varchar(30) DEFAULT NULL,


`SOURCE_FILE` varchar(20) DEFAULT NULL,
`SOURCE_LINE` int(20) DEFAULT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- ---------------------------------------------------------- Table structure for table `REFERENTIAL_CONSTRAINTS`
-CREATE TEMPORARY TABLE `REFERENTIAL_CONSTRAINTS` (
`CONSTRAINT_CATALOG` varchar(512) NOT NULL DEFAULT '',
`CONSTRAINT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`CONSTRAINT_NAME` varchar(64) NOT NULL DEFAULT '',
`UNIQUE_CONSTRAINT_CATALOG` varchar(512) NOT NULL DEFAULT '',
`UNIQUE_CONSTRAINT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`UNIQUE_CONSTRAINT_NAME` varchar(64) DEFAULT NULL,
`MATCH_OPTION` varchar(64) NOT NULL DEFAULT '',
`UPDATE_RULE` varchar(64) NOT NULL DEFAULT '',
`DELETE_RULE` varchar(64) NOT NULL DEFAULT '',
`TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
`REFERENCED_TABLE_NAME` varchar(64) NOT NULL DEFAULT ''
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- ---------------------------------------------------------- Table structure for table `ROUTINES`
-CREATE TEMPORARY TABLE `ROUTINES` (
`SPECIFIC_NAME` varchar(64) NOT NULL DEFAULT '',
`ROUTINE_CATALOG` varchar(512) NOT NULL DEFAULT '',
`ROUTINE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`ROUTINE_NAME` varchar(64) NOT NULL DEFAULT '',
`ROUTINE_TYPE` varchar(9) NOT NULL DEFAULT '',
`DATA_TYPE` varchar(64) NOT NULL DEFAULT '',
`CHARACTER_MAXIMUM_LENGTH` int(21) DEFAULT NULL,
`CHARACTER_OCTET_LENGTH` int(21) DEFAULT NULL,
`NUMERIC_PRECISION` bigint(21) unsigned DEFAULT NULL,
`NUMERIC_SCALE` int(21) DEFAULT NULL,
`DATETIME_PRECISION` bigint(21) unsigned DEFAULT NULL,
`CHARACTER_SET_NAME` varchar(64) DEFAULT NULL,
`COLLATION_NAME` varchar(64) DEFAULT NULL,
`DTD_IDENTIFIER` longtext,
`ROUTINE_BODY` varchar(8) NOT NULL DEFAULT '',
`ROUTINE_DEFINITION` longtext,
`EXTERNAL_NAME` varchar(64) DEFAULT NULL,
`EXTERNAL_LANGUAGE` varchar(64) DEFAULT NULL,
`PARAMETER_STYLE` varchar(8) NOT NULL DEFAULT '',
`IS_DETERMINISTIC` varchar(3) NOT NULL DEFAULT '',
`SQL_DATA_ACCESS` varchar(64) NOT NULL DEFAULT '',
`SQL_PATH` varchar(64) DEFAULT NULL,
`SECURITY_TYPE` varchar(7) NOT NULL DEFAULT '',
`CREATED` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`LAST_ALTERED` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`SQL_MODE` varchar(8192) NOT NULL DEFAULT '',
`ROUTINE_COMMENT` longtext NOT NULL,
`DEFINER` varchar(77) NOT NULL DEFAULT '',

`CHARACTER_SET_CLIENT` varchar(32) NOT NULL DEFAULT '',


`COLLATION_CONNECTION` varchar(32) NOT NULL DEFAULT '',
`DATABASE_COLLATION` varchar(32) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ---------------------------------------------------------- Table structure for table `SCHEMATA`
-CREATE TEMPORARY TABLE `SCHEMATA` (
`CATALOG_NAME` varchar(512) NOT NULL DEFAULT '',
`SCHEMA_NAME` varchar(64) NOT NULL DEFAULT '',
`DEFAULT_CHARACTER_SET_NAME` varchar(32) NOT NULL DEFAULT '',
`DEFAULT_COLLATION_NAME` varchar(32) NOT NULL DEFAULT '',
`SQL_PATH` varchar(512) DEFAULT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--- Dumping data for table `SCHEMATA`
-INSERT INTO `SCHEMATA` (`CATALOG_NAME`, `SCHEMA_NAME`, `DEFAULT_CHARACTER_SET_NA
ME`, `DEFAULT_COLLATION_NAME`, `SQL_PATH`) VALUES
('def', 'information_schema', 'utf8', 'utf8_general_ci', NULL),
('def', 'rcpd', 'utf8', 'utf8_general_ci', NULL);
-- ---------------------------------------------------------- Table structure for table `SCHEMA_PRIVILEGES`
-CREATE TEMPORARY TABLE `SCHEMA_PRIVILEGES` (
`GRANTEE` varchar(81) NOT NULL DEFAULT '',
`TABLE_CATALOG` varchar(512) NOT NULL DEFAULT '',
`TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
`IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--- Dumping data for table `SCHEMA_PRIVILEGES`
-INSERT INTO `SCHEMA_PRIVILEGES` (`GRANTEE`, `TABLE_CATALOG`, `TABLE_SCHEMA`, `PR
IVILEGE_TYPE`, `IS_GRANTABLE`) VALUES
('''thechamptmb''@''%''', 'def', 'rcpd', 'SELECT', 'NO'),
('''thechamptmb''@''%''', 'def', 'rcpd', 'INSERT', 'NO'),
('''thechamptmb''@''%''', 'def', 'rcpd', 'UPDATE', 'NO'),
('''thechamptmb''@''%''', 'def', 'rcpd', 'DELETE', 'NO'),
('''thechamptmb''@''%''', 'def', 'rcpd', 'CREATE', 'NO'),
('''thechamptmb''@''%''', 'def', 'rcpd', 'DROP', 'NO'),
('''thechamptmb''@''%''', 'def', 'rcpd', 'REFERENCES', 'NO'),
('''thechamptmb''@''%''', 'def', 'rcpd', 'INDEX', 'NO'),
('''thechamptmb''@''%''', 'def', 'rcpd', 'ALTER', 'NO'),
('''thechamptmb''@''%''', 'def', 'rcpd', 'CREATE TEMPORARY TABLES', 'NO'),
('''thechamptmb''@''%''', 'def', 'rcpd', 'LOCK TABLES', 'NO'),
('''thechamptmb''@''%''', 'def', 'rcpd', 'EXECUTE', 'NO'),

('''thechamptmb''@''%''',
('''thechamptmb''@''%''',
('''thechamptmb''@''%''',
('''thechamptmb''@''%''',
('''thechamptmb''@''%''',
('''thechamptmb''@''%''',

'def',
'def',
'def',
'def',
'def',
'def',

'rcpd',
'rcpd',
'rcpd',
'rcpd',
'rcpd',
'rcpd',

'CREATE VIEW', 'NO'),


'SHOW VIEW', 'NO'),
'CREATE ROUTINE', 'NO'),
'ALTER ROUTINE', 'NO'),
'EVENT', 'NO'),
'TRIGGER', 'NO');

-- ---------------------------------------------------------- Table structure for table `SESSION_STATUS`


-CREATE TEMPORARY TABLE `SESSION_STATUS` (
`VARIABLE_NAME` varchar(64) NOT NULL DEFAULT '',
`VARIABLE_VALUE` varchar(1024) DEFAULT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--- Dumping data for table `SESSION_STATUS`
-INSERT INTO `SESSION_STATUS` (`VARIABLE_NAME`, `VARIABLE_VALUE`) VALUES
('ABORTED_CLIENTS', '79971'),
('ABORTED_CONNECTS', '79056201'),
('BINLOG_CACHE_DISK_USE', '0'),
('BINLOG_CACHE_USE', '0'),
('BINLOG_STMT_CACHE_DISK_USE', '0'),
('BINLOG_STMT_CACHE_USE', '0'),
('BYTES_RECEIVED', '8048'),
('BYTES_SENT', '251582'),
('COM_ADMIN_COMMANDS', '0'),
('COM_ASSIGN_TO_KEYCACHE', '0'),
('COM_ALTER_DB', '0'),
('COM_ALTER_DB_UPGRADE', '0'),
('COM_ALTER_EVENT', '0'),
('COM_ALTER_FUNCTION', '0'),
('COM_ALTER_PROCEDURE', '0'),
('COM_ALTER_SERVER', '0'),
('COM_ALTER_TABLE', '0'),
('COM_ALTER_TABLESPACE', '0'),
('COM_ALTER_USER', '0'),
('COM_ANALYZE', '0'),
('COM_BEGIN', '0'),
('COM_BINLOG', '0'),
('COM_CALL_PROCEDURE', '0'),
('COM_CHANGE_DB', '0'),
('COM_CHANGE_MASTER', '0'),
('COM_CHECK', '0'),
('COM_CHECKSUM', '0'),
('COM_COMMIT', '0'),
('COM_CREATE_DB', '0'),
('COM_CREATE_EVENT', '0'),
('COM_CREATE_FUNCTION', '0'),
('COM_CREATE_INDEX', '0'),
('COM_CREATE_PROCEDURE', '0'),
('COM_CREATE_SERVER', '0'),
('COM_CREATE_TABLE', '0'),
('COM_CREATE_TRIGGER', '0'),
('COM_CREATE_UDF', '0'),

('COM_CREATE_USER', '0'),
('COM_CREATE_VIEW', '0'),
('COM_DEALLOC_SQL', '0'),
('COM_DELETE', '0'),
('COM_DELETE_MULTI', '0'),
('COM_DO', '0'),
('COM_DROP_DB', '0'),
('COM_DROP_EVENT', '0'),
('COM_DROP_FUNCTION', '0'),
('COM_DROP_INDEX', '0'),
('COM_DROP_PROCEDURE', '0'),
('COM_DROP_SERVER', '0'),
('COM_DROP_TABLE', '0'),
('COM_DROP_TRIGGER', '0'),
('COM_DROP_USER', '0'),
('COM_DROP_VIEW', '0'),
('COM_EMPTY_QUERY', '0'),
('COM_EXECUTE_SQL', '0'),
('COM_FLUSH', '0'),
('COM_GET_DIAGNOSTICS', '0'),
('COM_GRANT', '0'),
('COM_HA_CLOSE', '0'),
('COM_HA_OPEN', '0'),
('COM_HA_READ', '0'),
('COM_HELP', '0'),
('COM_INSERT', '0'),
('COM_INSERT_SELECT', '0'),
('COM_INSTALL_PLUGIN', '0'),
('COM_KILL', '0'),
('COM_LOAD', '0'),
('COM_LOCK_TABLES', '0'),
('COM_OPTIMIZE', '0'),
('COM_PRELOAD_KEYS', '0'),
('COM_PREPARE_SQL', '0'),
('COM_PURGE', '0'),
('COM_PURGE_BEFORE_DATE', '0'),
('COM_RELEASE_SAVEPOINT', '0'),
('COM_RENAME_TABLE', '0'),
('COM_RENAME_USER', '0'),
('COM_REPAIR', '0'),
('COM_REPLACE', '0'),
('COM_REPLACE_SELECT', '0'),
('COM_RESET', '0'),
('COM_RESIGNAL', '0'),
('COM_REVOKE', '0'),
('COM_REVOKE_ALL', '0'),
('COM_ROLLBACK', '0'),
('COM_ROLLBACK_TO_SAVEPOINT', '0'),
('COM_SAVEPOINT', '0'),
('COM_SELECT', '23'),
('COM_SET_OPTION', '26'),
('COM_SIGNAL', '0'),
('COM_SHOW_BINLOG_EVENTS', '0'),
('COM_SHOW_BINLOGS', '0'),
('COM_SHOW_CHARSETS', '0'),
('COM_SHOW_COLLATIONS', '0'),
('COM_SHOW_CREATE_DB', '0'),
('COM_SHOW_CREATE_EVENT', '0'),
('COM_SHOW_CREATE_FUNC', '0'),
('COM_SHOW_CREATE_PROC', '0'),

('COM_SHOW_CREATE_TABLE', '22'),
('COM_SHOW_CREATE_TRIGGER', '0'),
('COM_SHOW_DATABASES', '1'),
('COM_SHOW_ENGINE_LOGS', '0'),
('COM_SHOW_ENGINE_MUTEX', '0'),
('COM_SHOW_ENGINE_STATUS', '0'),
('COM_SHOW_EVENTS', '0'),
('COM_SHOW_ERRORS', '0'),
('COM_SHOW_FIELDS', '0'),
('COM_SHOW_FUNCTION_CODE', '0'),
('COM_SHOW_FUNCTION_STATUS', '1'),
('COM_SHOW_GRANTS', '0'),
('COM_SHOW_KEYS', '0'),
('COM_SHOW_MASTER_STATUS', '0'),
('COM_SHOW_OPEN_TABLES', '0'),
('COM_SHOW_PLUGINS', '0'),
('COM_SHOW_PRIVILEGES', '0'),
('COM_SHOW_PROCEDURE_CODE', '0'),
('COM_SHOW_PROCEDURE_STATUS', '1'),
('COM_SHOW_PROCESSLIST', '0'),
('COM_SHOW_PROFILE', '0'),
('COM_SHOW_PROFILES', '0'),
('COM_SHOW_RELAYLOG_EVENTS', '0'),
('COM_SHOW_SLAVE_HOSTS', '0'),
('COM_SHOW_SLAVE_STATUS', '0'),
('COM_SHOW_STATUS', '0'),
('COM_SHOW_STORAGE_ENGINES', '0'),
('COM_SHOW_TABLE_STATUS', '44'),
('COM_SHOW_TABLES', '1'),
('COM_SHOW_TRIGGERS', '21'),
('COM_SHOW_VARIABLES', '0'),
('COM_SHOW_WARNINGS', '0'),
('COM_SLAVE_START', '0'),
('COM_SLAVE_STOP', '0'),
('COM_STMT_CLOSE', '0'),
('COM_STMT_EXECUTE', '0'),
('COM_STMT_FETCH', '0'),
('COM_STMT_PREPARE', '0'),
('COM_STMT_REPREPARE', '0'),
('COM_STMT_RESET', '0'),
('COM_STMT_SEND_LONG_DATA', '0'),
('COM_TRUNCATE', '0'),
('COM_UNINSTALL_PLUGIN', '0'),
('COM_UNLOCK_TABLES', '0'),
('COM_UPDATE', '0'),
('COM_UPDATE_MULTI', '0'),
('COM_XA_COMMIT', '0'),
('COM_XA_END', '0'),
('COM_XA_PREPARE', '0'),
('COM_XA_RECOVER', '0'),
('COM_XA_ROLLBACK', '0'),
('COM_XA_START', '0'),
('COMPRESSION', 'OFF'),
('CONNECTION_ERRORS_ACCEPT', '0'),
('CONNECTION_ERRORS_INTERNAL', '0'),
('CONNECTION_ERRORS_MAX_CONNECTIONS', '0'),
('CONNECTION_ERRORS_PEER_ADDRESS', '748'),
('CONNECTION_ERRORS_SELECT', '0'),
('CONNECTION_ERRORS_TCPWRAP', '0'),
('CONNECTIONS', '85079578'),

('CREATED_TMP_DISK_TABLES', '103'),
('CREATED_TMP_FILES', '8428'),
('CREATED_TMP_TABLES', '418'),
('DELAYED_ERRORS', '0'),
('DELAYED_INSERT_THREADS', '0'),
('DELAYED_WRITES', '565'),
('FLUSH_COMMANDS', '1'),
('HANDLER_COMMIT', '0'),
('HANDLER_DELETE', '0'),
('HANDLER_DISCOVER', '0'),
('HANDLER_EXTERNAL_LOCK', '10'),
('HANDLER_MRR_INIT', '0'),
('HANDLER_PREPARE', '0'),
('HANDLER_READ_FIRST', '4'),
('HANDLER_READ_KEY', '0'),
('HANDLER_READ_LAST', '0'),
('HANDLER_READ_NEXT', '660'),
('HANDLER_READ_PREV', '0'),
('HANDLER_READ_RND', '0'),
('HANDLER_READ_RND_NEXT', '2175'),
('HANDLER_ROLLBACK', '0'),
('HANDLER_SAVEPOINT', '0'),
('HANDLER_SAVEPOINT_ROLLBACK', '0'),
('HANDLER_UPDATE', '0'),
('HANDLER_WRITE', '2261'),
('INNODB_BUFFER_POOL_DUMP_STATUS', 'not started'),
('INNODB_BUFFER_POOL_LOAD_STATUS', 'not started'),
('INNODB_BUFFER_POOL_PAGES_DATA', '7064'),
('INNODB_BUFFER_POOL_BYTES_DATA', '115736576'),
('INNODB_BUFFER_POOL_PAGES_DIRTY', '3021'),
('INNODB_BUFFER_POOL_BYTES_DIRTY', '49496064'),
('INNODB_BUFFER_POOL_PAGES_FLUSHED', '6960179'),
('INNODB_BUFFER_POOL_PAGES_FREE', '1008'),
('INNODB_BUFFER_POOL_PAGES_MISC', '119'),
('INNODB_BUFFER_POOL_PAGES_TOTAL', '8191'),
('INNODB_BUFFER_POOL_READ_AHEAD_RND', '0'),
('INNODB_BUFFER_POOL_READ_AHEAD', '302167'),
('INNODB_BUFFER_POOL_READ_AHEAD_EVICTED', '1227'),
('INNODB_BUFFER_POOL_READ_REQUESTS', '4517769330'),
('INNODB_BUFFER_POOL_READS', '2339190'),
('INNODB_BUFFER_POOL_WAIT_FREE', '615'),
('INNODB_BUFFER_POOL_WRITE_REQUESTS', '468003274'),
('INNODB_DATA_FSYNCS', '14468414'),
('INNODB_DATA_PENDING_FSYNCS', '2'),
('INNODB_DATA_PENDING_READS', '0'),
('INNODB_DATA_PENDING_WRITES', '0'),
('INNODB_DATA_READ', '74084225024'),
('INNODB_DATA_READS', '4543343'),
('INNODB_DATA_WRITES', '18731646'),
('INNODB_DATA_WRITTEN', '252325300224'),
('INNODB_DBLWR_PAGES_WRITTEN', '6960794'),
('INNODB_DBLWR_WRITES', '1016218'),
('INNODB_HAVE_ATOMIC_BUILTINS', 'ON'),
('INNODB_LOG_WAITS', '0'),
('INNODB_LOG_WRITE_REQUESTS', '38805203'),
('INNODB_LOG_WRITES', '10516428'),
('INNODB_OS_LOG_FSYNCS', '10716921'),
('INNODB_OS_LOG_PENDING_FSYNCS', '1'),
('INNODB_OS_LOG_PENDING_WRITES', '0'),
('INNODB_OS_LOG_WRITTEN', '24178409984'),

('INNODB_PAGE_SIZE', '16384'),
('INNODB_PAGES_CREATED', '889786'),
('INNODB_PAGES_READ', '4521020'),
('INNODB_PAGES_WRITTEN', '6960793'),
('INNODB_ROW_LOCK_CURRENT_WAITS', '0'),
('INNODB_ROW_LOCK_TIME', '6761787'),
('INNODB_ROW_LOCK_TIME_AVG', '2032'),
('INNODB_ROW_LOCK_TIME_MAX', '51656'),
('INNODB_ROW_LOCK_WAITS', '3327'),
('INNODB_ROWS_DELETED', '364733'),
('INNODB_ROWS_INSERTED', '85814577'),
('INNODB_ROWS_READ', '3734312184'),
('INNODB_ROWS_UPDATED', '5372284'),
('INNODB_NUM_OPEN_FILES', '1024'),
('INNODB_TRUNCATED_STATUS_WRITES', '0'),
('INNODB_AVAILABLE_UNDO_LOGS', '128'),
('KEY_BLOCKS_NOT_FLUSHED', '0'),
('KEY_BLOCKS_UNUSED', '393340'),
('KEY_BLOCKS_USED', '90899'),
('KEY_READ_REQUESTS', '610111908'),
('KEY_READS', '1270746'),
('KEY_WRITE_REQUESTS', '101420867'),
('KEY_WRITES', '21391436'),
('LAST_QUERY_COST', '10.499000'),
('LAST_QUERY_PARTIAL_PLANS', '1'),
('MAX_USED_CONNECTIONS', '3317'),
('NOT_FLUSHED_DELAYED_ROWS', '0'),
('OPEN_FILES', '670'),
('OPEN_STREAMS', '0'),
('OPEN_TABLE_DEFINITIONS', '912'),
('OPEN_TABLES', '1024'),
('OPENED_FILES', '3425953'),
('OPENED_TABLE_DEFINITIONS', '2'),
('OPENED_TABLES', '2'),
('PERFORMANCE_SCHEMA_ACCOUNTS_LOST', '4045203'),
('PERFORMANCE_SCHEMA_COND_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_COND_INSTANCES_LOST', '0'),
('PERFORMANCE_SCHEMA_DIGEST_LOST', '0'),
('PERFORMANCE_SCHEMA_FILE_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_FILE_HANDLES_LOST', '0'),
('PERFORMANCE_SCHEMA_FILE_INSTANCES_LOST', '3466230'),
('PERFORMANCE_SCHEMA_HOSTS_LOST', '3876114'),
('PERFORMANCE_SCHEMA_LOCKER_LOST', '0'),
('PERFORMANCE_SCHEMA_MUTEX_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_MUTEX_INSTANCES_LOST', '0'),
('PERFORMANCE_SCHEMA_RWLOCK_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_RWLOCK_INSTANCES_LOST', '0'),
('PERFORMANCE_SCHEMA_SESSION_CONNECT_ATTRS_LOST', '0'),
('PERFORMANCE_SCHEMA_SOCKET_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_SOCKET_INSTANCES_LOST', '0'),
('PERFORMANCE_SCHEMA_STAGE_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_STATEMENT_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_TABLE_HANDLES_LOST', '0'),
('PERFORMANCE_SCHEMA_TABLE_INSTANCES_LOST', '73091'),
('PERFORMANCE_SCHEMA_THREAD_CLASSES_LOST', '0'),
('PERFORMANCE_SCHEMA_THREAD_INSTANCES_LOST', '0'),
('PERFORMANCE_SCHEMA_USERS_LOST', '3880796'),
('PREPARED_STMT_COUNT', '0'),
('QCACHE_FREE_BLOCKS', '1'),
('QCACHE_FREE_MEMORY', '1031368'),

('QCACHE_HITS', '0'),
('QCACHE_INSERTS', '0'),
('QCACHE_LOWMEM_PRUNES', '0'),
('QCACHE_NOT_CACHED', '33203579'),
('QCACHE_QUERIES_IN_CACHE', '0'),
('QCACHE_TOTAL_BLOCKS', '1'),
('QUERIES', '188153507'),
('QUESTIONS', '140'),
('SELECT_FULL_JOIN', '0'),
('SELECT_FULL_RANGE_JOIN', '0'),
('SELECT_RANGE', '0'),
('SELECT_RANGE_CHECK', '0'),
('SELECT_SCAN', '91'),
('SLAVE_HEARTBEAT_PERIOD', ''),
('SLAVE_LAST_HEARTBEAT', ''),
('SLAVE_OPEN_TEMP_TABLES', '0'),
('SLAVE_RECEIVED_HEARTBEATS', ''),
('SLAVE_RETRIED_TRANSACTIONS', ''),
('SLAVE_RUNNING', 'OFF'),
('SLOW_LAUNCH_THREADS', '0'),
('SLOW_QUERIES', '0'),
('SORT_MERGE_PASSES', '0'),
('SORT_RANGE', '0'),
('SORT_ROWS', '0'),
('SORT_SCAN', '0'),
('SSL_ACCEPT_RENEGOTIATES', '0'),
('SSL_ACCEPTS', '0'),
('SSL_CALLBACK_CACHE_HITS', '0'),
('SSL_CIPHER', ''),
('SSL_CIPHER_LIST', ''),
('SSL_CLIENT_CONNECTS', '0'),
('SSL_CONNECT_RENEGOTIATES', '0'),
('SSL_CTX_VERIFY_DEPTH', '0'),
('SSL_CTX_VERIFY_MODE', '0'),
('SSL_DEFAULT_TIMEOUT', '0'),
('SSL_FINISHED_ACCEPTS', '0'),
('SSL_FINISHED_CONNECTS', '0'),
('SSL_SERVER_NOT_AFTER', ''),
('SSL_SERVER_NOT_BEFORE', ''),
('SSL_SESSION_CACHE_HITS', '0'),
('SSL_SESSION_CACHE_MISSES', '0'),
('SSL_SESSION_CACHE_MODE', 'NONE'),
('SSL_SESSION_CACHE_OVERFLOWS', '0'),
('SSL_SESSION_CACHE_SIZE', '0'),
('SSL_SESSION_CACHE_TIMEOUTS', '0'),
('SSL_SESSIONS_REUSED', '0'),
('SSL_USED_SESSION_CACHE_ENTRIES', '0'),
('SSL_VERIFY_DEPTH', '0'),
('SSL_VERIFY_MODE', '0'),
('SSL_VERSION', ''),
('TABLE_LOCKS_IMMEDIATE', '125096790'),
('TABLE_LOCKS_WAITED', '345249'),
('TABLE_OPEN_CACHE_HITS', '11'),
('TABLE_OPEN_CACHE_MISSES', '2'),
('TABLE_OPEN_CACHE_OVERFLOWS', '2'),
('TC_LOG_MAX_PAGES_USED', '0'),
('TC_LOG_PAGE_SIZE', '0'),
('TC_LOG_PAGE_WAITS', '0'),
('THREADS_CACHED', '21'),
('THREADS_CONNECTED', '750'),

('THREADS_CREATED', '97060'),
('THREADS_RUNNING', '76'),
('UPTIME', '929704'),
('UPTIME_SINCE_FLUSH_STATUS', '929704');
-- ---------------------------------------------------------- Table structure for table `SESSION_VARIABLES`
-CREATE TEMPORARY TABLE `SESSION_VARIABLES` (
`VARIABLE_NAME` varchar(64) NOT NULL DEFAULT '',
`VARIABLE_VALUE` varchar(1024) DEFAULT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--- Dumping data for table `SESSION_VARIABLES`
-INSERT INTO `SESSION_VARIABLES` (`VARIABLE_NAME`, `VARIABLE_VALUE`) VALUES
('MAX_PREPARED_STMT_COUNT', '16382'),
('TIMED_MUTEXES', 'OFF'),
('HAVE_CRYPT', 'YES'),
('INNODB_COMPRESSION_PAD_PCT_MAX', '50'),
('PERFORMANCE_SCHEMA_EVENTS_STATEMENTS_HISTORY_LONG_SIZE', '10000'),
('SLAVE_CHECKPOINT_PERIOD', '300'),
('LAST_INSERT_ID', '0'),
('INNODB_FLUSH_LOG_AT_TIMEOUT', '1'),
('MAX_CONNECTIONS', '4000'),
('DELAYED_INSERT_TIMEOUT', '300'),
('PERFORMANCE_SCHEMA', 'ON'),
('PID_FILE', '/data/mysql-5.6/db4free.net.pid'),
('CHARACTER_SETS_DIR', '/opt/mysql/mysql-5.6.10/share/charsets/'),
('INNODB_CMP_PER_INDEX_ENABLED', 'OFF'),
('PERFORMANCE_SCHEMA_MAX_COND_INSTANCES', '16900'),
('INNODB_ONLINE_ALTER_LOG_MAX_SIZE', '134217728'),
('KEY_CACHE_AGE_THRESHOLD', '300'),
('INNODB_STATS_TRANSIENT_SAMPLE_PAGES', '8'),
('PERFORMANCE_SCHEMA_MAX_MUTEX_INSTANCES', '29000'),
('SLOW_LAUNCH_TIME', '2'),
('PERFORMANCE_SCHEMA_MAX_COND_CLASSES', '80'),
('FT_MAX_WORD_LEN', '84'),
('OLD_PASSWORDS', '0'),
('RELAY_LOG_INDEX', ''),
('GTID_OWNED', ''),
('PERFORMANCE_SCHEMA_MAX_RWLOCK_CLASSES', '30'),
('PERFORMANCE_SCHEMA_MAX_STATEMENT_CLASSES', '167'),
('IDENTITY', '0'),
('INNODB_FT_NUM_WORD_OPTIMIZE', '2000'),
('PERFORMANCE_SCHEMA_MAX_MUTEX_CLASSES', '200'),
('SLAVE_ROWS_SEARCH_ALGORITHMS', 'TABLE_SCAN,INDEX_SCAN'),
('EVENT_SCHEDULER', 'ON'),
('INNODB_STATS_ON_METADATA', 'OFF'),
('REPORT_HOST', ''),
('PERFORMANCE_SCHEMA_EVENTS_WAITS_HISTORY_SIZE', '10'),
('INNODB_SORT_BUFFER_SIZE', '1048576'),
('PERFORMANCE_SCHEMA_EVENTS_WAITS_HISTORY_LONG_SIZE', '10000'),
('INNODB_ROLLBACK_SEGMENTS', '128'),
('PERFORMANCE_SCHEMA_EVENTS_STAGES_HISTORY_SIZE', '10'),

('LARGE_FILES_SUPPORT', 'ON'),
('PERFORMANCE_SCHEMA_MAX_RWLOCK_INSTANCES', '10800'),
('ENFORCE_GTID_CONSISTENCY', 'OFF'),
('PERFORMANCE_SCHEMA_MAX_STAGE_CLASSES', '150'),
('NET_BUFFER_LENGTH', '16384'),
('AUTO_INCREMENT_OFFSET', '1'),
('SKIP_SHOW_DATABASE', 'OFF'),
('PERFORMANCE_SCHEMA_MAX_TABLE_HANDLES', '2048'),
('GROUP_CONCAT_MAX_LEN', '1024'),
('PERFORMANCE_SCHEMA_SETUP_OBJECTS_SIZE', '100'),
('RANGE_ALLOC_BLOCK_SIZE', '4096'),
('BINLOG_FORMAT', 'STATEMENT'),
('OPTIMIZER_TRACE_FEATURES', 'greedy_search=on,range_optimizer=on,dynamic_range=
on,repeated_subselect=on'),
('BIND_ADDRESS', '*'),
('INNODB_LOG_FILE_SIZE', '50331648'),
('TRANSACTION_PREALLOC_SIZE', '4096'),
('HAVE_RTREE_KEYS', 'YES'),
('INNODB_API_BK_COMMIT_INTERVAL', '5'),
('PERFORMANCE_SCHEMA_SETUP_ACTORS_SIZE', '100'),
('TIME_FORMAT', '%H:%i:%s'),
('MIN_EXAMINED_ROW_LIMIT', '0'),
('LOW_PRIORITY_UPDATES', 'OFF'),
('PERFORMANCE_SCHEMA_MAX_SOCKET_CLASSES', '10'),
('REPORT_PASSWORD', ''),
('BASEDIR', '/opt/mysql/current'),
('MAX_INSERT_DELAYED_THREADS', '20'),
('CHARACTER_SET_RESULTS', 'utf8'),
('SQL_BIG_SELECTS', 'ON'),
('BACK_LOG', '850'),
('TRANSACTION_ALLOC_BLOCK_SIZE', '8192'),
('RELAY_LOG_INFO_REPOSITORY', 'FILE'),
('INNODB_FLUSHING_AVG_LOOPS', '30'),
('EXPLICIT_DEFAULTS_FOR_TIMESTAMP', 'ON'),
('SYNC_FRM', 'ON'),
('COMPLETION_TYPE', 'NO_CHAIN'),
('FLUSH_TIME', '0'),
('PERFORMANCE_SCHEMA_EVENTS_STAGES_HISTORY_LONG_SIZE', '10000'),
('GTID_EXECUTED', ''),
('PSEUDO_THREAD_ID', '85079438'),
('INNODB_IO_CAPACITY_MAX', '2000'),
('INNODB_IO_CAPACITY', '200'),
('OPEN_FILES_LIMIT', '20000'),
('INNODB_FT_ENABLE_DIAG_PRINT', 'OFF'),
('BINLOG_STMT_CACHE_SIZE', '32768'),
('HAVE_SYMLINK', 'YES'),
('AUTOMATIC_SP_PRIVILEGES', 'ON'),
('KEY_CACHE_BLOCK_SIZE', '1024'),
('QUERY_CACHE_LIMIT', '1048576'),
('INNODB_TABLE_LOCKS', 'ON'),
('SKIP_NETWORKING', 'OFF'),
('INNODB_AUTOEXTEND_INCREMENT', '64'),
('PERFORMANCE_SCHEMA_DIGESTS_SIZE', '10000'),
('MYISAM_DATA_POINTER_SIZE', '6'),
('FT_QUERY_EXPANSION_LIMIT', '20'),
('INNODB_THREAD_SLEEP_DELAY', '10000'),
('CONCURRENT_INSERT', 'AUTO'),
('SQL_AUTO_IS_NULL', 'OFF'),
('SLAVE_TRANSACTION_RETRIES', '10'),
('MAX_CONNECT_ERRORS', '100'),

('BINLOG_ROWS_QUERY_LOG_EVENTS', 'OFF'),
('GENERAL_LOG', 'OFF'),
('PERFORMANCE_SCHEMA_MAX_THREAD_CLASSES', '50'),
('INNODB_REPLICATION_DELAY', '0'),
('MASTER_INFO_REPOSITORY', 'FILE'),
('QUERY_CACHE_MIN_RES_UNIT', '4096'),
('INIT_SLAVE', ''),
('SORT_BUFFER_SIZE', '4194304'),
('MULTI_RANGE_COUNT', '256'),
('INNODB_ROLLBACK_ON_TIMEOUT', 'OFF'),
('LC_MESSAGES_DIR', '/opt/mysql/mysql-5.6.10/share/'),
('INNODB_MAX_DIRTY_PAGES_PCT', '75'),
('INIT_FILE', ''),
('INNODB_ADDITIONAL_MEM_POOL_SIZE', '8388608'),
('LARGE_PAGES', 'OFF'),
('READ_RND_BUFFER_SIZE', '16777216'),
('LARGE_PAGE_SIZE', '0'),
('INNODB_FILE_FORMAT', 'Antelope'),
('COLLATION_SERVER', 'utf8_general_ci'),
('BIG_TABLES', 'OFF'),
('MAX_BINLOG_SIZE', '1073741824'),
('OPTIMIZER_SEARCH_DEPTH', '62'),
('MAX_ALLOWED_PACKET', '12582912'),
('RELAY_LOG_BASENAME', ''),
('JOIN_BUFFER_SIZE', '262144'),
('READ_ONLY', 'OFF'),
('FT_MIN_WORD_LEN', '4'),
('RAND_SEED1', '0'),
('MAX_BINLOG_CACHE_SIZE', '18446744073709547520'),
('INNODB_ADAPTIVE_MAX_SLEEP_DELAY', '150000'),
('DELAYED_QUEUE_SIZE', '1000'),
('INNODB_API_ENABLE_MDL', 'OFF'),
('AUTOCOMMIT', 'ON'),
('BINLOG_DIRECT_NON_TRANSACTIONAL_UPDATES', 'OFF'),
('MYISAM_REPAIR_THREADS', '1'),
('INNODB_STRICT_MODE', 'OFF'),
('PERFORMANCE_SCHEMA_EVENTS_STATEMENTS_HISTORY_SIZE', '10'),
('LOG_SLAVE_UPDATES', 'OFF'),
('LOG_QUERIES_NOT_USING_INDEXES', 'OFF'),
('SQL_LOG_BIN', 'ON'),
('MAX_HEAP_TABLE_SIZE', '16777216'),
('PERFORMANCE_SCHEMA_USERS_SIZE', '100'),
('FT_STOPWORD_FILE', '(built-in)'),
('AUTO_INCREMENT_INCREMENT', '1'),
('DELAY_KEY_WRITE', 'ON'),
('TMPDIR', '/tmp'),
('INIT_CONNECT', ''),
('SLAVE_PENDING_JOBS_SIZE_MAX', '16777216'),
('LONG_QUERY_TIME', '10.000000'),
('INNODB_FT_SORT_PLL_DEGREE', '2'),
('MAX_JOIN_SIZE', '18446744073709551615'),
('DISCONNECT_ON_EXPIRED_PASSWORD', 'ON'),
('MAX_SEEKS_FOR_KEY', '18446744073709551615'),
('RELAY_LOG_INFO_FILE', 'relay-log.info'),
('MAX_USER_CONNECTIONS', '0'),
('INNODB_AUTOINC_LOCK_MODE', '1'),
('BULK_INSERT_BUFFER_SIZE', '8388608'),
('LC_MESSAGES', 'en_US'),
('DELAYED_INSERT_LIMIT', '100'),
('LOWER_CASE_TABLE_NAMES', '0'),

('OLD_ALTER_TABLE', 'OFF'),
('INNODB_BUFFER_POOL_FILENAME', 'ib_buffer_pool'),
('END_MARKERS_IN_JSON', 'OFF'),
('INNODB_MAX_PURGE_LAG_DELAY', '0'),
('FLUSH', 'OFF'),
('INNODB_BUFFER_POOL_DUMP_NOW', 'OFF'),
('CHARACTER_SET_FILESYSTEM', 'binary'),
('INNODB_SYNC_SPIN_LOOPS', '30'),
('CONNECT_TIMEOUT', '10'),
('INNODB_CHECKSUM_ALGORITHM', 'innodb'),
('PROXY_USER', ''),
('TABLE_OPEN_CACHE', '1024'),
('BINLOG_CACHE_SIZE', '32768'),
('INNODB_ADAPTIVE_HASH_INDEX', 'ON'),
('LOG_WARNINGS', '1'),
('MAX_SORT_LENGTH', '1024'),
('SKIP_NAME_RESOLVE', 'ON'),
('EQ_RANGE_INDEX_DIVE_LIMIT', '10'),
('METADATA_LOCKS_HASH_INSTANCES', '8'),
('INNODB_API_ENABLE_BINLOG', 'OFF'),
('SLOW_QUERY_LOG', 'OFF'),
('SSL_CRL', ''),
('EXTERNAL_USER', ''),
('INNODB_VERSION', '1.2.10'),
('QUERY_PREALLOC_SIZE', '8192'),
('INNODB_WRITE_IO_THREADS', '4'),
('TABLE_OPEN_CACHE_INSTANCES', '1'),
('INNODB_BUFFER_POOL_INSTANCES', '8'),
('QUERY_CACHE_WLOCK_INVALIDATE', 'OFF'),
('INNODB_UNDO_DIRECTORY', '.'),
('OPTIMIZER_PRUNE_LEVEL', '1'),
('INNODB_DISABLE_SORT_FILE_CACHE', 'OFF'),
('PERFORMANCE_SCHEMA_MAX_SOCKET_INSTANCES', '8020'),
('ERROR_COUNT', '0'),
('STORAGE_ENGINE', 'InnoDB'),
('HAVE_DYNAMIC_LOADING', 'YES'),
('HAVE_PROFILING', 'YES'),
('SYNC_BINLOG', '0'),
('BINLOG_ORDER_COMMITS', 'ON'),
('INNODB_PRINT_ALL_DEADLOCKS', 'OFF'),
('QUERY_CACHE_SIZE', '1048576'),
('INNODB_FT_SERVER_STOPWORD_TABLE', ''),
('CHARACTER_SET_CONNECTION', 'utf8'),
('INNODB_FILE_FORMAT_CHECK', 'ON'),
('PERFORMANCE_SCHEMA_MAX_FILE_CLASSES', '50'),
('INNODB_READ_AHEAD_THRESHOLD', '56'),
('LOCAL_INFILE', 'ON'),
('INNODB_READ_ONLY', 'OFF'),
('UPDATABLE_VIEWS_WITH_LIMIT', 'YES'),
('KEY_BUFFER_SIZE', '536870912'),
('NET_RETRY_COUNT', '10'),
('INNODB_MONITOR_RESET_ALL', ''),
('TRANSACTION_ALLOW_BATCHING', 'OFF'),
('INNODB_OPTIMIZE_FULLTEXT_ONLY', 'OFF'),
('CHARACTER_SET_SYSTEM', 'utf8'),
('INNODB_STATS_METHOD', 'nulls_equal'),
('LOG_OUTPUT', 'FILE'),
('INNODB_FAST_SHUTDOWN', '1'),
('PERFORMANCE_SCHEMA_ACCOUNTS_SIZE', '100'),
('SSL_CA', ''),

('SSL_CAPATH', ''),
('INNODB_THREAD_CONCURRENCY', '0'),
('VERSION_COMMENT', 'MySQL Community Server (GPL)'),
('SLAVE_NET_TIMEOUT', '3600'),
('SLAVE_EXEC_MODE', 'STRICT'),
('INNODB_STATS_SAMPLE_PAGES', '8'),
('MAX_DELAYED_THREADS', '20'),
('SLAVE_ALLOW_BATCHING', 'OFF'),
('IGNORE_DB_DIRS', ''),
('INNODB_BUFFER_POOL_LOAD_NOW', 'OFF'),
('SERVER_UUID', 'a0c2adee-7d6b-11e2-af5f-c8600054b724'),
('INNODB_ADAPTIVE_FLUSHING_LWM', '10'),
('HAVE_SSL', 'DISABLED'),
('BINLOG_CHECKSUM', 'CRC32'),
('RELAY_LOG_RECOVERY', 'OFF'),
('INNODB_PAGE_SIZE', '16384'),
('SLOW_QUERY_LOG_FILE', '/data/mysql-5.6/db4free-slow.log'),
('PERFORMANCE_SCHEMA_MAX_FILE_HANDLES', '32768'),
('LOG_BIN_USE_V1_ROW_EVENTS', 'OFF'),
('INNODB_SYNC_ARRAY_SIZE', '1'),
('PERFORMANCE_SCHEMA_HOSTS_SIZE', '100'),
('INNODB_API_TRX_LEVEL', '0'),
('MAX_LENGTH_FOR_SORT_DATA', '1024'),
('DATETIME_FORMAT', '%Y-%m-%d %H:%i:%s'),
('VERSION_COMPILE_MACHINE', 'x86_64'),
('INNODB_FLUSH_LOG_AT_TRX_COMMIT', '1'),
('TABLE_DEFINITION_CACHE', '912'),
('TX_READ_ONLY', 'OFF'),
('QUERY_ALLOC_BLOCK_SIZE', '8192'),
('INNODB_RANDOM_READ_AHEAD', 'OFF'),
('INNODB_UNDO_LOGS', '128'),
('TMP_TABLE_SIZE', '16777216'),
('PORT', '3306'),
('THREAD_HANDLING', 'one-thread-per-connection'),
('METADATA_LOCKS_CACHE_SIZE', '1024'),
('QUERY_CACHE_TYPE', 'OFF'),
('LOG_BIN_TRUST_FUNCTION_CREATORS', 'OFF'),
('SLAVE_MAX_ALLOWED_PACKET', '1073741824'),
('INNODB_MONITOR_DISABLE', ''),
('LOCK_WAIT_TIMEOUT', '31536000'),
('HAVE_OPENSSL', 'DISABLED'),
('MAX_SP_RECURSION_DEPTH', '0'),
('MAX_BINLOG_STMT_CACHE_SIZE', '18446744073709547520'),
('REPORT_PORT', '3306'),
('PERFORMANCE_SCHEMA_MAX_FILE_INSTANCES', '2154'),
('SSL_CIPHER', ''),
('INNODB_SPIN_WAIT_DELAY', '6'),
('SQL_MODE', ''),
('INNODB_FILE_FORMAT_MAX', 'Antelope'),
('HAVE_GEOMETRY', 'YES'),
('DEFAULT_STORAGE_ENGINE', 'InnoDB'),
('BINLOG_ROW_IMAGE', 'FULL'),
('INNODB_LOCK_WAIT_TIMEOUT', '50'),
('OPTIMIZER_TRACE_OFFSET', '-1'),
('INNODB_OLD_BLOCKS_TIME', '1000'),
('KEEP_FILES_ON_CREATE', 'OFF'),
('SECURE_FILE_PRIV', ''),
('FT_BOOLEAN_SYNTAX', '+ -><()~*:""&|'),
('SERVER_ID_BITS', '32'),
('OPTIMIZER_TRACE', 'enabled=off,one_line=off'),

('INNODB_COMPRESSION_FAILURE_THRESHOLD_PCT', '5'),
('CHARACTER_SET_DATABASE', 'utf8'),
('LOCKED_IN_MEMORY', 'OFF'),
('DATE_FORMAT', '%Y-%m-%d'),
('LOG_ERROR', '/data/logs/mysql-5.6-log-error'),
('PRELOAD_BUFFER_SIZE', '32768'),
('TIMESTAMP', '1364577293.489747'),
('SSL_KEY', ''),
('SLAVE_COMPRESSED_PROTOCOL', 'OFF'),
('REPORT_USER', ''),
('TX_ISOLATION', 'REPEATABLE-READ'),
('SLAVE_SKIP_ERRORS', 'OFF'),
('OPTIMIZER_TRACE_LIMIT', '1'),
('SLAVE_PARALLEL_WORKERS', '0'),
('OPTIMIZER_TRACE_MAX_MEM_SIZE', '16384'),
('RELAY_LOG_PURGE', 'ON'),
('SSL_CRLPATH', ''),
('COLLATION_DATABASE', 'utf8_general_ci'),
('MAX_ERROR_COUNT', '64'),
('INNODB_MONITOR_ENABLE', ''),
('INSERT_ID', '0'),
('INNODB_LOG_BUFFER_SIZE', '8388608'),
('IGNORE_BUILTIN_INNODB', 'OFF'),
('HOST_CACHE_SIZE', '803'),
('LOWER_CASE_FILE_SYSTEM', 'OFF'),
('INNODB_MAX_PURGE_LAG', '0'),
('LOG_BIN_INDEX', ''),
('MYISAM_MAX_SORT_FILE_SIZE', '9223372036853727232'),
('INNODB_FORCE_RECOVERY', '0'),
('INNODB_LRU_SCAN_DEPTH', '1024'),
('UNIQUE_CHECKS', 'ON'),
('SQL_NOTES', 'ON'),
('MAX_TMP_TABLES', '32'),
('SQL_QUOTE_SHOW_CREATE', 'ON'),
('PROFILING', 'OFF'),
('CORE_FILE', 'OFF'),
('DEFAULT_TMP_STORAGE_ENGINE', 'InnoDB'),
('LOG_THROTTLE_QUERIES_NOT_USING_INDEXES', '0'),
('VERSION_COMPILE_OS', 'linux-glibc2.5'),
('HAVE_COMPRESS', 'YES'),
('BINLOG_MAX_FLUSH_QUEUE_TIME', '0'),
('HAVE_QUERY_CACHE', 'YES'),
('SQL_WARNINGS', 'OFF'),
('THREAD_CACHE_SIZE', '32'),
('MASTER_VERIFY_CHECKSUM', 'OFF'),
('INNODB_DOUBLEWRITE', 'ON'),
('MYISAM_RECOVER_OPTIONS', 'OFF'),
('INNODB_STATS_PERSISTENT', 'ON'),
('PLUGIN_DIR', '/opt/mysql/current/lib/plugin/'),
('DEFAULT_WEEK_FORMAT', '0'),
('SYNC_RELAY_LOG', '10000'),
('INNODB_CHANGE_BUFFER_MAX_SIZE', '25'),
('GENERAL_LOG_FILE', '/data/mysql-5.6/db4free.log'),
('PERFORMANCE_SCHEMA_MAX_TABLE_INSTANCES', '12500'),
('EXPIRE_LOGS_DAYS', '0'),
('INNODB_USE_NATIVE_AIO', 'ON'),
('SLAVE_TYPE_CONVERSIONS', ''),
('GTID_PURGED', ''),
('SQL_SLAVE_SKIP_COUNTER', '0'),
('INNODB_UNDO_TABLESPACES', '0'),

('READ_BUFFER_SIZE', '4194304'),
('RAND_SEED2', '0'),
('COLLATION_CONNECTION', 'utf8_general_ci'),
('CHARACTER_SET_SERVER', 'utf8'),
('SQL_LOG_OFF', 'OFF'),
('INNODB_FT_MIN_TOKEN_SIZE', '3'),
('STORED_PROGRAM_CACHE', '256'),
('INNODB_FT_USER_STOPWORD_TABLE', ''),
('MYISAM_STATS_METHOD', 'nulls_unequal'),
('SERVER_ID', '0'),
('NET_WRITE_TIMEOUT', '60'),
('SQL_BUFFER_RESULT', 'OFF'),
('SLAVE_SQL_VERIFY_CHECKSUM', 'ON'),
('INNODB_BUFFER_POOL_LOAD_ABORT', 'OFF'),
('OLD', 'OFF'),
('SYNC_RELAY_LOG_INFO', '10000'),
('HOSTNAME', 'db4free.net'),
('SSL_CERT', ''),
('INNODB_API_DISABLE_ROWLOCK', 'OFF'),
('INNODB_FT_ENABLE_STOPWORD', 'ON'),
('INTERACTIVE_TIMEOUT', '28800'),
('INNODB_STATS_PERSISTENT_SAMPLE_PAGES', '20'),
('SLAVE_LOAD_TMPDIR', '/tmp'),
('PERFORMANCE_SCHEMA_SESSION_CONNECT_ATTRS_SIZE', '512'),
('WAIT_TIMEOUT', '28800'),
('PROFILING_HISTORY_SIZE', '15'),
('MAX_RELAY_LOG_SIZE', '0'),
('INNODB_CHANGE_BUFFERING', 'all'),
('INNODB_FLUSH_METHOD', ''),
('MYISAM_MMAP_SIZE', '18446744073709551615'),
('SECURE_AUTH', 'ON'),
('INNODB_CHECKSUMS', 'ON'),
('MAX_WRITE_LOCK_COUNT', '18446744073709551615'),
('INNODB_LOCKS_UNSAFE_FOR_BINLOG', 'OFF'),
('SQL_SELECT_LIMIT', '18446744073709551615'),
('WARNING_COUNT', '0'),
('SYSTEM_TIME_ZONE', 'CET'),
('MYISAM_USE_MMAP', 'OFF'),
('INNODB_BUFFER_POOL_LOAD_AT_STARTUP', 'OFF'),
('INNODB_FT_CACHE_SIZE', '8000000'),
('VERSION', '5.6.10'),
('INNODB_CONCURRENCY_TICKETS', '5000'),
('NET_READ_TIMEOUT', '30'),
('SQL_SAFE_UPDATES', 'OFF'),
('INNODB_PURGE_THREADS', '1'),
('PSEUDO_SLAVE_MODE', 'OFF'),
('GTID_MODE', 'OFF'),
('RELAY_LOG', ''),
('PROTOCOL_VERSION', '10'),
('INNODB_OPEN_FILES', '1024'),
('KEY_CACHE_DIVISION_LIMIT', '100'),
('INNODB_LOG_FILES_IN_GROUP', '2'),
('INNODB_BUFFER_POOL_DUMP_AT_SHUTDOWN', 'OFF'),
('INNODB_BUFFER_POOL_SIZE', '134217728'),
('SLAVE_CHECKPOINT_GROUP', '512'),
('LC_TIME_NAMES', 'en_US'),
('LOG_BIN_BASENAME', ''),
('INNODB_FT_MAX_TOKEN_SIZE', '84'),
('THREAD_CONCURRENCY', '10'),
('INNODB_LOG_GROUP_HOME_DIR', './'),

('INNODB_MAX_DIRTY_PAGES_PCT_LWM', '0'),
('INNODB_LARGE_PREFIX', 'OFF'),
('NEW', 'OFF'),
('MYISAM_SORT_BUFFER_SIZE', '134217728'),
('FOREIGN_KEY_CHECKS', 'ON'),
('CHARACTER_SET_CLIENT', 'utf8'),
('INNODB_MONITOR_RESET', ''),
('INNODB_FLUSH_NEIGHBORS', '1'),
('INNODB_STATS_AUTO_RECALC', 'ON'),
('INNODB_DATA_FILE_PATH', 'ibdata1:12M:autoextend'),
('INNODB_COMMIT_CONCURRENCY', '0'),
('SKIP_EXTERNAL_LOCKING', 'ON'),
('INNODB_MIRRORED_LOG_GROUPS', '1'),
('INNODB_FT_AUX_TABLE', ''),
('INNODB_PURGE_BATCH_SIZE', '300'),
('INNODB_USE_SYS_MALLOC', 'ON'),
('THREAD_STACK', '262144'),
('LICENSE', 'GPL'),
('INNODB_SUPPORT_XA', 'ON'),
('PERFORMANCE_SCHEMA_MAX_THREAD_INSTANCES', '8100'),
('SOCKET', '/tmp/mysql-56.sock'),
('INNODB_COMPRESSION_LEVEL', '6'),
('INNODB_FORCE_LOAD_CORRUPTED', 'OFF'),
('INNODB_ADAPTIVE_FLUSHING', 'ON'),
('LOG_BIN', 'OFF'),
('INNODB_FILE_PER_TABLE', 'ON'),
('GTID_NEXT', 'AUTOMATIC'),
('RELAY_LOG_SPACE_LIMIT', '0'),
('SYNC_MASTER_INFO', '10000'),
('DIV_PRECISION_INCREMENT', '4'),
('INNODB_OLD_BLOCKS_PCT', '37'),
('DATADIR', '/data/mysql-5.6/'),
('TIME_ZONE', '+00:00'),
('INNODB_DATA_HOME_DIR', ''),
('OPTIMIZER_SWITCH', 'index_merge=on,index_merge_union=on,index_merge_sort_union
=on,index_merge_intersection=on,engine_condition_pushdown=on,index_condition_pus
hdown=on,mrr=on,mrr_cost_based=on,block_nested_loop=on,batched_key_access=off,ma
terialization=on,semijoin=on,loosescan=on,firstmatch=on,subquery_materialization
_cost_based=on,use_index_extensions=on'),
('INNODB_READ_IO_THREADS', '4');
-- ---------------------------------------------------------- Table structure for table `STATISTICS`
-CREATE TEMPORARY TABLE `STATISTICS` (
`TABLE_CATALOG` varchar(512) NOT NULL DEFAULT '',
`TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
`NON_UNIQUE` bigint(1) NOT NULL DEFAULT '0',
`INDEX_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`INDEX_NAME` varchar(64) NOT NULL DEFAULT '',
`SEQ_IN_INDEX` bigint(2) NOT NULL DEFAULT '0',
`COLUMN_NAME` varchar(64) NOT NULL DEFAULT '',
`COLLATION` varchar(1) DEFAULT NULL,
`CARDINALITY` bigint(21) DEFAULT NULL,
`SUB_PART` bigint(3) DEFAULT NULL,
`PACKED` varchar(10) DEFAULT NULL,

`NULLABLE` varchar(3) NOT NULL DEFAULT '',


`INDEX_TYPE` varchar(16) NOT NULL DEFAULT '',
`COMMENT` varchar(16) DEFAULT NULL,
`INDEX_COMMENT` varchar(1024) NOT NULL DEFAULT ''
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--- Dumping data for table `STATISTICS`
-INSERT INTO `STATISTICS` (`TABLE_CATALOG`, `TABLE_SCHEMA`, `TABLE_NAME`, `NON_UN
IQUE`, `INDEX_SCHEMA`, `INDEX_NAME`, `SEQ_IN_INDEX`, `COLUMN_NAME`, `COLLATION`,
`CARDINALITY`, `SUB_PART`, `PACKED`, `NULLABLE`, `INDEX_TYPE`, `COMMENT`, `INDE
X_COMMENT`) VALUES
('def', 'rcpd', 'NewTable', 0, 'rcpd', 'PRIMARY', 1, 'ID', 'A', 37, NULL, NULL,
'', 'BTREE', '', ''),
('def', 'rcpd', 'SupTable', 0, 'rcpd', 'PRIMARY', 1, 'ID', 'A', 6, NULL, NULL, '
', 'BTREE', '', '');
-- ---------------------------------------------------------- Table structure for table `TABLES`
-CREATE TEMPORARY TABLE `TABLES` (
`TABLE_CATALOG` varchar(512) NOT NULL DEFAULT '',
`TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
`TABLE_TYPE` varchar(64) NOT NULL DEFAULT '',
`ENGINE` varchar(64) DEFAULT NULL,
`VERSION` bigint(21) unsigned DEFAULT NULL,
`ROW_FORMAT` varchar(10) DEFAULT NULL,
`TABLE_ROWS` bigint(21) unsigned DEFAULT NULL,
`AVG_ROW_LENGTH` bigint(21) unsigned DEFAULT NULL,
`DATA_LENGTH` bigint(21) unsigned DEFAULT NULL,
`MAX_DATA_LENGTH` bigint(21) unsigned DEFAULT NULL,
`INDEX_LENGTH` bigint(21) unsigned DEFAULT NULL,
`DATA_FREE` bigint(21) unsigned DEFAULT NULL,
`AUTO_INCREMENT` bigint(21) unsigned DEFAULT NULL,
`CREATE_TIME` datetime DEFAULT NULL,
`UPDATE_TIME` datetime DEFAULT NULL,
`CHECK_TIME` datetime DEFAULT NULL,
`TABLE_COLLATION` varchar(32) DEFAULT NULL,
`CHECKSUM` bigint(21) unsigned DEFAULT NULL,
`CREATE_OPTIONS` varchar(255) DEFAULT NULL,
`TABLE_COMMENT` varchar(2048) NOT NULL DEFAULT ''
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--- Dumping data for table `TABLES`
-INSERT INTO `TABLES` (`TABLE_CATALOG`, `TABLE_SCHEMA`, `TABLE_NAME`, `TABLE_TYPE
`, `ENGINE`, `VERSION`, `ROW_FORMAT`, `TABLE_ROWS`, `AVG_ROW_LENGTH`, `DATA_LENG
TH`, `MAX_DATA_LENGTH`, `INDEX_LENGTH`, `DATA_FREE`, `AUTO_INCREMENT`, `CREATE_T
IME`, `UPDATE_TIME`, `CHECK_TIME`, `TABLE_COLLATION`, `CHECKSUM`, `CREATE_OPTION
S`, `TABLE_COMMENT`) VALUES
('def', 'information_schema', 'CHARACTER_SETS', 'SYSTEM VIEW', 'MEMORY', 10, 'Fi
xed', NULL, 384, 0, 16434816, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'ut

f8_general_ci', NULL, 'max_rows=43690', ''),


('def', 'information_schema', 'COLLATIONS', 'SYSTEM VIEW', 'MEMORY', 10, 'Fixed'
, NULL, 231, 0, 16704765, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'utf8_g
eneral_ci', NULL, 'max_rows=72628', ''),
('def', 'information_schema', 'COLLATION_CHARACTER_SET_APPLICABILITY', 'SYSTEM V
IEW', 'MEMORY', 10, 'Fixed', NULL, 195, 0, 16357770, 0, 0, NULL, '2013-03-29 17:
14:53', NULL, NULL, 'utf8_general_ci', NULL, 'max_rows=86037', ''),
('def', 'information_schema', 'COLUMNS', 'SYSTEM VIEW', 'MyISAM', 10, 'Dynamic',
NULL, 0, 0, 281474976710655, 1024, 0, NULL, '2013-03-29 17:14:53', '2013-03-29
17:14:53', NULL, 'utf8_general_ci', NULL, 'max_rows=2794', ''),
('def', 'information_schema', 'COLUMN_PRIVILEGES', 'SYSTEM VIEW', 'MEMORY', 10,
'Fixed', NULL, 2565, 0, 16757145, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL,
'utf8_general_ci', NULL, 'max_rows=6540', ''),
('def', 'information_schema', 'ENGINES', 'SYSTEM VIEW', 'MEMORY', 10, 'Fixed', N
ULL, 490, 0, 16574250, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'utf8_gene
ral_ci', NULL, 'max_rows=34239', ''),
('def', 'information_schema', 'EVENTS', 'SYSTEM VIEW', 'MyISAM', 10, 'Dynamic',
NULL, 0, 0, 281474976710655, 1024, 0, NULL, '2013-03-29 17:14:53', '2013-03-29 1
7:14:53', NULL, 'utf8_general_ci', NULL, 'max_rows=619', ''),
('def', 'information_schema', 'FILES', 'SYSTEM VIEW', 'MEMORY', 10, 'Fixed', NUL
L, 2659, 0, 16743723, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'utf8_gener
al_ci', NULL, 'max_rows=6309', ''),
('def', 'information_schema', 'GLOBAL_STATUS', 'SYSTEM VIEW', 'MEMORY', 10, 'Fix
ed', NULL, 3268, 0, 16755036, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'ut
f8_general_ci', NULL, 'max_rows=5133', ''),
('def', 'information_schema', 'GLOBAL_VARIABLES', 'SYSTEM VIEW', 'MEMORY', 10, '
Fixed', NULL, 3268, 0, 16755036, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL,
'utf8_general_ci', NULL, 'max_rows=5133', ''),
('def', 'information_schema', 'KEY_COLUMN_USAGE', 'SYSTEM VIEW', 'MEMORY', 10, '
Fixed', NULL, 4637, 0, 16762755, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL,
'utf8_general_ci', NULL, 'max_rows=3618', ''),
('def', 'information_schema', 'OPTIMIZER_TRACE', 'SYSTEM VIEW', 'MyISAM', 10, 'D
ynamic', NULL, 0, 0, 281474976710655, 1024, 0, NULL, '2013-03-29 17:14:53', '201
3-03-29 17:14:53', NULL, 'utf8_general_ci', NULL, 'max_rows=578524', ''),
('def', 'information_schema', 'PARAMETERS', 'SYSTEM VIEW', 'MyISAM', 10, 'Dynami
c', NULL, 0, 0, 281474976710655, 1024, 0, NULL, '2013-03-29 17:14:53', '2013-0329 17:14:53', NULL, 'utf8_general_ci', NULL, 'max_rows=6021', ''),
('def', 'information_schema', 'PARTITIONS', 'SYSTEM VIEW', 'MyISAM', 10, 'Dynami
c', NULL, 0, 0, 281474976710655, 1024, 0, NULL, '2013-03-29 17:14:53', '2013-0329 17:14:53', NULL, 'utf8_general_ci', NULL, 'max_rows=5596', ''),
('def', 'information_schema', 'PLUGINS', 'SYSTEM VIEW', 'MyISAM', 10, 'Dynamic',
NULL, 0, 0, 281474976710655, 1024, 0, NULL, '2013-03-29 17:14:53', '2013-03-29
17:14:53', NULL, 'utf8_general_ci', NULL, 'max_rows=11328', ''),
('def', 'information_schema', 'PROCESSLIST', 'SYSTEM VIEW', 'MyISAM', 10, 'Dynam
ic', NULL, 0, 0, 281474976710655, 1024, 0, NULL, '2013-03-29 17:14:53', '2013-03
-29 17:14:53', NULL, 'utf8_general_ci', NULL, 'max_rows=23899', ''),
('def', 'information_schema', 'PROFILING', 'SYSTEM VIEW', 'MEMORY', 10, 'Fixed',
NULL, 308, 0, 16562084, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'utf8_ge
neral_ci', NULL, 'max_rows=54471', ''),
('def', 'information_schema', 'REFERENTIAL_CONSTRAINTS', 'SYSTEM VIEW', 'MEMORY'
, 10, 'Fixed', NULL, 4814, 0, 16767162, 0, 0, NULL, '2013-03-29 17:14:53', NULL,
NULL, 'utf8_general_ci', NULL, 'max_rows=3485', ''),
('def', 'information_schema', 'ROUTINES', 'SYSTEM VIEW', 'MyISAM', 10, 'Dynamic'
, NULL, 0, 0, 281474976710655, 1024, 0, NULL, '2013-03-29 17:14:53', '2013-03-29
17:14:53', NULL, 'utf8_general_ci', NULL, 'max_rows=583', ''),
('def', 'information_schema', 'SCHEMATA', 'SYSTEM VIEW', 'MEMORY', 10, 'Fixed',
NULL, 3464, 0, 16738048, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'utf8_ge
neral_ci', NULL, 'max_rows=4843', ''),
('def', 'information_schema', 'SCHEMA_PRIVILEGES', 'SYSTEM VIEW', 'MEMORY', 10,
'Fixed', NULL, 2179, 0, 16736899, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL,

'utf8_general_ci', NULL, 'max_rows=7699', ''),


('def', 'information_schema', 'SESSION_STATUS', 'SYSTEM VIEW', 'MEMORY', 10, 'Fi
xed', NULL, 3268, 0, 16755036, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'u
tf8_general_ci', NULL, 'max_rows=5133', ''),
('def', 'information_schema', 'SESSION_VARIABLES', 'SYSTEM VIEW', 'MEMORY', 10,
'Fixed', NULL, 3268, 0, 16755036, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL,
'utf8_general_ci', NULL, 'max_rows=5133', ''),
('def', 'information_schema', 'STATISTICS', 'SYSTEM VIEW', 'MEMORY', 10, 'Fixed'
, NULL, 5753, 0, 16752736, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'utf8_
general_ci', NULL, 'max_rows=2916', ''),
('def', 'information_schema', 'TABLES', 'SYSTEM VIEW', 'MEMORY', 10, 'Fixed', NU
LL, 9441, 0, 16757775, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'utf8_gene
ral_ci', NULL, 'max_rows=1777', ''),
('def', 'information_schema', 'TABLESPACES', 'SYSTEM VIEW', 'MEMORY', 10, 'Fixed
', NULL, 6951, 0, 16772763, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'utf8
_general_ci', NULL, 'max_rows=2413', ''),
('def', 'information_schema', 'TABLE_CONSTRAINTS', 'SYSTEM VIEW', 'MEMORY', 10,
'Fixed', NULL, 2504, 0, 16721712, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL,
'utf8_general_ci', NULL, 'max_rows=6700', ''),
('def', 'information_schema', 'TABLE_PRIVILEGES', 'SYSTEM VIEW', 'MEMORY', 10, '
Fixed', NULL, 2372, 0, 16748692, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL,
'utf8_general_ci', NULL, 'max_rows=7073', ''),
('def', 'information_schema', 'TRIGGERS', 'SYSTEM VIEW', 'MyISAM', 10, 'Dynamic'
, NULL, 0, 0, 281474976710655, 1024, 0, NULL, '2013-03-29 17:14:53', '2013-03-29
17:14:53', NULL, 'utf8_general_ci', NULL, 'max_rows=569', ''),
('def', 'information_schema', 'USER_PRIVILEGES', 'SYSTEM VIEW', 'MEMORY', 10, 'F
ixed', NULL, 1986, 0, 16726092, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, '
utf8_general_ci', NULL, 'max_rows=8447', ''),
('def', 'information_schema', 'VIEWS', 'SYSTEM VIEW', 'MyISAM', 10, 'Dynamic', N
ULL, 0, 0, 281474976710655, 1024, 0, NULL, '2013-03-29 17:14:53', '2013-03-29 17
:14:53', NULL, 'utf8_general_ci', NULL, 'max_rows=6935', ''),
('def', 'information_schema', 'INNODB_LOCKS', 'SYSTEM VIEW', 'MEMORY', 10, 'Fixe
d', NULL, 31244, 0, 16746784, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'ut
f8_general_ci', NULL, 'max_rows=536', ''),
('def', 'information_schema', 'INNODB_TRX', 'SYSTEM VIEW', 'MEMORY', 10, 'Fixed'
, NULL, 4536, 0, 16746912, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'utf8_
general_ci', NULL, 'max_rows=3698', ''),
('def', 'information_schema', 'INNODB_SYS_DATAFILES', 'SYSTEM VIEW', 'MEMORY', 1
0, 'Fixed', NULL, 12007, 0, 16773779, 0, 0, NULL, '2013-03-29 17:14:53', NULL, N
ULL, 'utf8_general_ci', NULL, 'max_rows=1397', ''),
('def', 'information_schema', 'INNODB_LOCK_WAITS', 'SYSTEM VIEW', 'MEMORY', 10,
'Fixed', NULL, 599, 0, 16749238, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL,
'utf8_general_ci', NULL, 'max_rows=28008', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESTATS', 'SYSTEM VIEW', 'MEMORY',
10, 'Fixed', NULL, 1215, 0, 16763355, 0, 0, NULL, '2013-03-29 17:14:53', NULL, N
ULL, 'utf8_general_ci', NULL, 'max_rows=13808', ''),
('def', 'information_schema', 'INNODB_CMP', 'SYSTEM VIEW', 'MEMORY', 10, 'Fixed'
, NULL, 25, 0, 13107200, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'utf8_ge
neral_ci', NULL, 'max_rows=671088', ''),
('def', 'information_schema', 'INNODB_FT_BEING_DELETED', 'SYSTEM VIEW', 'MEMORY'
, 10, 'Fixed', NULL, 9, 0, 9437184, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NUL
L, 'utf8_general_ci', NULL, 'max_rows=1864135', ''),
('def', 'information_schema', 'INNODB_CMP_RESET', 'SYSTEM VIEW', 'MEMORY', 10, '
Fixed', NULL, 25, 0, 13107200, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'u
tf8_general_ci', NULL, 'max_rows=671088', ''),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX', 'SYSTEM VIEW', 'MEMORY', 1
0, 'Fixed', NULL, 1755, 0, 16728660, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NU
LL, 'utf8_general_ci', NULL, 'max_rows=9559', ''),
('def', 'information_schema', 'INNODB_CMPMEM_RESET', 'SYSTEM VIEW', 'MEMORY', 10
, 'Fixed', NULL, 29, 0, 15204352, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL,

'utf8_general_ci', NULL, 'max_rows=578524', ''),


('def', 'information_schema', 'INNODB_FT_DELETED', 'SYSTEM VIEW', 'MEMORY', 10,
'Fixed', NULL, 9, 0, 9437184, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'ut
f8_general_ci', NULL, 'max_rows=1864135', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE_LRU', 'SYSTEM VIEW', 'MEMORY',
10, 'Fixed', NULL, 6669, 0, 16765866, 0, 0, NULL, '2013-03-29 17:14:53', NULL,
NULL, 'utf8_general_ci', NULL, 'max_rows=2515', ''),
('def', 'information_schema', 'INNODB_FT_INSERTED', 'SYSTEM VIEW', 'MEMORY', 10,
'Fixed', NULL, 9, 0, 9437184, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'u
tf8_general_ci', NULL, 'max_rows=1864135', ''),
('def', 'information_schema', 'INNODB_CMPMEM', 'SYSTEM VIEW', 'MEMORY', 10, 'Fix
ed', NULL, 29, 0, 15204352, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'utf8
_general_ci', NULL, 'max_rows=578524', ''),
('def', 'information_schema', 'INNODB_SYS_INDEXES', 'SYSTEM VIEW', 'MEMORY', 10,
'Fixed', NULL, 614, 0, 16722290, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL,
'utf8_general_ci', NULL, 'max_rows=27324', ''),
('def', 'information_schema', 'INNODB_SYS_TABLES', 'SYSTEM VIEW', 'MEMORY', 10,
'Fixed', NULL, 2060, 0, 16743680, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL,
'utf8_general_ci', NULL, 'max_rows=8144', ''),
('def', 'information_schema', 'INNODB_SYS_FIELDS', 'SYSTEM VIEW', 'MEMORY', 10,
'Fixed', NULL, 594, 0, 16609428, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL,
'utf8_general_ci', NULL, 'max_rows=28244', ''),
('def', 'information_schema', 'INNODB_CMP_PER_INDEX_RESET', 'SYSTEM VIEW', 'MEMO
RY', 10, 'Fixed', NULL, 1755, 0, 16728660, 0, 0, NULL, '2013-03-29 17:14:53', NU
LL, NULL, 'utf8_general_ci', NULL, 'max_rows=9559', ''),
('def', 'information_schema', 'INNODB_BUFFER_PAGE', 'SYSTEM VIEW', 'MEMORY', 10,
'Fixed', NULL, 6852, 0, 16766844, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL
, 'utf8_general_ci', NULL, 'max_rows=2448', ''),
('def', 'information_schema', 'INNODB_FT_DEFAULT_STOPWORD', 'SYSTEM VIEW', 'MEMO
RY', 10, 'Fixed', NULL, 56, 0, 14680064, 0, 0, NULL, '2013-03-29 17:14:53', NULL
, NULL, 'utf8_general_ci', NULL, 'max_rows=299593', ''),
('def', 'information_schema', 'INNODB_FT_INDEX_TABLE', 'SYSTEM VIEW', 'MEMORY',
10, 'Fixed', NULL, 802, 0, 16651926, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NU
LL, 'utf8_general_ci', NULL, 'max_rows=20919', ''),
('def', 'information_schema', 'INNODB_FT_INDEX_CACHE', 'SYSTEM VIEW', 'MEMORY',
10, 'Fixed', NULL, 802, 0, 16651926, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NU
LL, 'utf8_general_ci', NULL, 'max_rows=20919', ''),
('def', 'information_schema', 'INNODB_SYS_TABLESPACES', 'SYSTEM VIEW', 'MEMORY',
10, 'Fixed', NULL, 2082, 0, 16728870, 0, 0, NULL, '2013-03-29 17:14:53', NULL,
NULL, 'utf8_general_ci', NULL, 'max_rows=8058', ''),
('def', 'information_schema', 'INNODB_METRICS', 'SYSTEM VIEW', 'MEMORY', 10, 'Fi
xed', NULL, 2994, 0, 16742448, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL, 'u
tf8_general_ci', NULL, 'max_rows=5603', ''),
('def', 'information_schema', 'INNODB_SYS_FOREIGN_COLS', 'SYSTEM VIEW', 'MEMORY'
, 10, 'Fixed', NULL, 1748, 0, 16738848, 0, 0, NULL, '2013-03-29 17:14:53', NULL,
NULL, 'utf8_general_ci', NULL, 'max_rows=9597', ''),
('def', 'information_schema', 'INNODB_FT_CONFIG', 'SYSTEM VIEW', 'MEMORY', 10, '
Fixed', NULL, 1163, 0, 16705332, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL,
'utf8_general_ci', NULL, 'max_rows=14425', ''),
('def', 'information_schema', 'INNODB_BUFFER_POOL_STATS', 'SYSTEM VIEW', 'MEMORY
', 10, 'Fixed', NULL, 257, 0, 16332350, 0, 0, NULL, '2013-03-29 17:14:53', NULL,
NULL, 'utf8_general_ci', NULL, 'max_rows=65280', ''),
('def', 'information_schema', 'INNODB_SYS_COLUMNS', 'SYSTEM VIEW', 'MEMORY', 10,
'Fixed', NULL, 610, 0, 16613350, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL,
'utf8_general_ci', NULL, 'max_rows=27503', ''),
('def', 'information_schema', 'INNODB_SYS_FOREIGN', 'SYSTEM VIEW', 'MEMORY', 10,
'Fixed', NULL, 1752, 0, 16700064, 0, 0, NULL, '2013-03-29 17:14:53', NULL, NULL
, 'utf8_general_ci', NULL, 'max_rows=9576', ''),
('def', 'rcpd', 'NewTable', 'BASE TABLE', 'InnoDB', 10, 'Compact', 37, 442, 1638
4, 0, 0, 0, 59, '2013-03-18 06:39:52', NULL, NULL, 'utf8_general_ci', NULL, '',

''),
('def', 'rcpd', 'SupTable', 'BASE TABLE', 'InnoDB', 10, 'Compact', 6, 2730, 1638
4, 0, 0, 0, 13, '2013-03-18 22:34:00', NULL, NULL, 'utf8_general_ci', NULL, '',
'');
-- ---------------------------------------------------------- Table structure for table `TABLESPACES`
-CREATE TEMPORARY TABLE `TABLESPACES` (
`TABLESPACE_NAME` varchar(64) NOT NULL DEFAULT '',
`ENGINE` varchar(64) NOT NULL DEFAULT '',
`TABLESPACE_TYPE` varchar(64) DEFAULT NULL,
`LOGFILE_GROUP_NAME` varchar(64) DEFAULT NULL,
`EXTENT_SIZE` bigint(21) unsigned DEFAULT NULL,
`AUTOEXTEND_SIZE` bigint(21) unsigned DEFAULT NULL,
`MAXIMUM_SIZE` bigint(21) unsigned DEFAULT NULL,
`NODEGROUP_ID` bigint(21) unsigned DEFAULT NULL,
`TABLESPACE_COMMENT` varchar(2048) DEFAULT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- ---------------------------------------------------------- Table structure for table `TABLE_CONSTRAINTS`
-CREATE TEMPORARY TABLE `TABLE_CONSTRAINTS` (
`CONSTRAINT_CATALOG` varchar(512) NOT NULL DEFAULT '',
`CONSTRAINT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`CONSTRAINT_NAME` varchar(64) NOT NULL DEFAULT '',
`TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
`CONSTRAINT_TYPE` varchar(64) NOT NULL DEFAULT ''
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--- Dumping data for table `TABLE_CONSTRAINTS`
-INSERT INTO `TABLE_CONSTRAINTS` (`CONSTRAINT_CATALOG`, `CONSTRAINT_SCHEMA`, `CON
STRAINT_NAME`, `TABLE_SCHEMA`, `TABLE_NAME`, `CONSTRAINT_TYPE`) VALUES
('def', 'rcpd', 'PRIMARY', 'rcpd', 'NewTable', 'PRIMARY KEY'),
('def', 'rcpd', 'PRIMARY', 'rcpd', 'SupTable', 'PRIMARY KEY');
-- ---------------------------------------------------------- Table structure for table `TABLE_PRIVILEGES`
-CREATE TEMPORARY TABLE `TABLE_PRIVILEGES` (
`GRANTEE` varchar(81) NOT NULL DEFAULT '',
`TABLE_CATALOG` varchar(512) NOT NULL DEFAULT '',
`TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
`PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
`IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''

) ENGINE=MEMORY DEFAULT CHARSET=utf8;


-- ---------------------------------------------------------- Table structure for table `TRIGGERS`
-CREATE TEMPORARY TABLE `TRIGGERS` (
`TRIGGER_CATALOG` varchar(512) NOT NULL DEFAULT '',
`TRIGGER_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`TRIGGER_NAME` varchar(64) NOT NULL DEFAULT '',
`EVENT_MANIPULATION` varchar(6) NOT NULL DEFAULT '',
`EVENT_OBJECT_CATALOG` varchar(512) NOT NULL DEFAULT '',
`EVENT_OBJECT_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`EVENT_OBJECT_TABLE` varchar(64) NOT NULL DEFAULT '',
`ACTION_ORDER` bigint(4) NOT NULL DEFAULT '0',
`ACTION_CONDITION` longtext,
`ACTION_STATEMENT` longtext NOT NULL,
`ACTION_ORIENTATION` varchar(9) NOT NULL DEFAULT '',
`ACTION_TIMING` varchar(6) NOT NULL DEFAULT '',
`ACTION_REFERENCE_OLD_TABLE` varchar(64) DEFAULT NULL,
`ACTION_REFERENCE_NEW_TABLE` varchar(64) DEFAULT NULL,
`ACTION_REFERENCE_OLD_ROW` varchar(3) NOT NULL DEFAULT '',
`ACTION_REFERENCE_NEW_ROW` varchar(3) NOT NULL DEFAULT '',
`CREATED` datetime DEFAULT NULL,
`SQL_MODE` varchar(8192) NOT NULL DEFAULT '',
`DEFINER` varchar(77) NOT NULL DEFAULT '',
`CHARACTER_SET_CLIENT` varchar(32) NOT NULL DEFAULT '',
`COLLATION_CONNECTION` varchar(32) NOT NULL DEFAULT '',
`DATABASE_COLLATION` varchar(32) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ---------------------------------------------------------- Table structure for table `USER_PRIVILEGES`
-CREATE TEMPORARY TABLE `USER_PRIVILEGES` (
`GRANTEE` varchar(81) NOT NULL DEFAULT '',
`TABLE_CATALOG` varchar(512) NOT NULL DEFAULT '',
`PRIVILEGE_TYPE` varchar(64) NOT NULL DEFAULT '',
`IS_GRANTABLE` varchar(3) NOT NULL DEFAULT ''
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--- Dumping data for table `USER_PRIVILEGES`
-INSERT INTO `USER_PRIVILEGES` (`GRANTEE`, `TABLE_CATALOG`, `PRIVILEGE_TYPE`, `IS
_GRANTABLE`) VALUES
('''thechamptmb''@''%''', 'def', 'USAGE', 'NO');
-- ---------------------------------------------------------- Table structure for table `VIEWS`
--

CREATE TEMPORARY TABLE `VIEWS` (


`TABLE_CATALOG` varchar(512) NOT NULL DEFAULT '',
`TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
`TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
`VIEW_DEFINITION` longtext NOT NULL,
`CHECK_OPTION` varchar(8) NOT NULL DEFAULT '',
`IS_UPDATABLE` varchar(3) NOT NULL DEFAULT '',
`DEFINER` varchar(77) NOT NULL DEFAULT '',
`SECURITY_TYPE` varchar(7) NOT NULL DEFAULT '',
`CHARACTER_SET_CLIENT` varchar(32) NOT NULL DEFAULT '',
`COLLATION_CONNECTION` varchar(32) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ---------------------------------------------------------- Table structure for table `INNODB_LOCKS`
-CREATE TEMPORARY TABLE `INNODB_LOCKS` (
`lock_id` varchar(81) NOT NULL DEFAULT '',
`lock_trx_id` varchar(18) NOT NULL DEFAULT '',
`lock_mode` varchar(32) NOT NULL DEFAULT '',
`lock_type` varchar(32) NOT NULL DEFAULT '',
`lock_table` varchar(1024) NOT NULL DEFAULT '',
`lock_index` varchar(1024) DEFAULT NULL,
`lock_space` bigint(21) unsigned DEFAULT NULL,
`lock_page` bigint(21) unsigned DEFAULT NULL,
`lock_rec` bigint(21) unsigned DEFAULT NULL,
`lock_data` varchar(8192) DEFAULT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_TRX`
-CREATE TEMPORARY TABLE `INNODB_TRX` (
`trx_id` varchar(18) NOT NULL DEFAULT '',
`trx_state` varchar(13) NOT NULL DEFAULT '',
`trx_started` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`trx_requested_lock_id` varchar(81) DEFAULT NULL,
`trx_wait_started` datetime DEFAULT NULL,
`trx_weight` bigint(21) unsigned NOT NULL DEFAULT '0',
`trx_mysql_thread_id` bigint(21) unsigned NOT NULL DEFAULT '0',
`trx_query` varchar(1024) DEFAULT NULL,
`trx_operation_state` varchar(64) DEFAULT NULL,
`trx_tables_in_use` bigint(21) unsigned NOT NULL DEFAULT '0',
`trx_tables_locked` bigint(21) unsigned NOT NULL DEFAULT '0',
`trx_lock_structs` bigint(21) unsigned NOT NULL DEFAULT '0',
`trx_lock_memory_bytes` bigint(21) unsigned NOT NULL DEFAULT '0',
`trx_rows_locked` bigint(21) unsigned NOT NULL DEFAULT '0',
`trx_rows_modified` bigint(21) unsigned NOT NULL DEFAULT '0',
`trx_concurrency_tickets` bigint(21) unsigned NOT NULL DEFAULT '0',
`trx_isolation_level` varchar(16) NOT NULL DEFAULT '',
`trx_unique_checks` int(1) NOT NULL DEFAULT '0',
`trx_foreign_key_checks` int(1) NOT NULL DEFAULT '0',

`trx_last_foreign_key_error` varchar(256) DEFAULT NULL,


`trx_adaptive_hash_latched` int(1) NOT NULL DEFAULT '0',
`trx_adaptive_hash_timeout` bigint(21) unsigned NOT NULL DEFAULT '0',
`trx_is_read_only` int(1) NOT NULL DEFAULT '0',
`trx_autocommit_non_locking` int(1) NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_SYS_DATAFILES`
-CREATE TEMPORARY TABLE `INNODB_SYS_DATAFILES` (
`SPACE` int(11) unsigned NOT NULL DEFAULT '0',
`PATH` varchar(4000) NOT NULL DEFAULT ''
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_LOCK_WAITS`
-CREATE TEMPORARY TABLE `INNODB_LOCK_WAITS` (
`requesting_trx_id` varchar(18) NOT NULL DEFAULT '',
`requested_lock_id` varchar(81) NOT NULL DEFAULT '',
`blocking_trx_id` varchar(18) NOT NULL DEFAULT '',
`blocking_lock_id` varchar(81) NOT NULL DEFAULT ''
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_SYS_TABLESTATS`
-CREATE TEMPORARY TABLE `INNODB_SYS_TABLESTATS` (
`TABLE_ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`NAME` varchar(193) NOT NULL DEFAULT '',
`STATS_INITIALIZED` varchar(193) NOT NULL DEFAULT '',
`NUM_ROWS` bigint(21) unsigned NOT NULL DEFAULT '0',
`CLUST_INDEX_SIZE` bigint(21) unsigned NOT NULL DEFAULT '0',
`OTHER_INDEX_SIZE` bigint(21) unsigned NOT NULL DEFAULT '0',
`MODIFIED_COUNTER` bigint(21) unsigned NOT NULL DEFAULT '0',
`AUTOINC` bigint(21) unsigned NOT NULL DEFAULT '0',
`REF_COUNT` int(11) NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------

-- Table structure for table `INNODB_CMP`


-CREATE TEMPORARY TABLE `INNODB_CMP` (
`page_size` int(5) NOT NULL DEFAULT '0',
`compress_ops` int(11) NOT NULL DEFAULT '0',
`compress_ops_ok` int(11) NOT NULL DEFAULT '0',
`compress_time` int(11) NOT NULL DEFAULT '0',
`uncompress_ops` int(11) NOT NULL DEFAULT '0',
`uncompress_time` int(11) NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_FT_BEING_DELETED`
-CREATE TEMPORARY TABLE `INNODB_FT_BEING_DELETED` (
`DOC_ID` bigint(21) unsigned NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_CMP_RESET`
-CREATE TEMPORARY TABLE `INNODB_CMP_RESET` (
`page_size` int(5) NOT NULL DEFAULT '0',
`compress_ops` int(11) NOT NULL DEFAULT '0',
`compress_ops_ok` int(11) NOT NULL DEFAULT '0',
`compress_time` int(11) NOT NULL DEFAULT '0',
`uncompress_ops` int(11) NOT NULL DEFAULT '0',
`uncompress_time` int(11) NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_CMP_PER_INDEX`
-CREATE TEMPORARY TABLE `INNODB_CMP_PER_INDEX` (
`database_name` varchar(192) NOT NULL DEFAULT '',
`table_name` varchar(192) NOT NULL DEFAULT '',
`index_name` varchar(192) NOT NULL DEFAULT '',
`compress_ops` int(11) NOT NULL DEFAULT '0',
`compress_ops_ok` int(11) NOT NULL DEFAULT '0',
`compress_time` int(11) NOT NULL DEFAULT '0',
`uncompress_ops` int(11) NOT NULL DEFAULT '0',
`uncompress_time` int(11) NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR

OCESS privilege(s) for this operation)


-- ---------------------------------------------------------- Table structure for table `INNODB_CMPMEM_RESET`
-CREATE TEMPORARY TABLE `INNODB_CMPMEM_RESET` (
`page_size` int(5) NOT NULL DEFAULT '0',
`buffer_pool_instance` int(11) NOT NULL DEFAULT '0',
`pages_used` int(11) NOT NULL DEFAULT '0',
`pages_free` int(11) NOT NULL DEFAULT '0',
`relocation_ops` bigint(21) NOT NULL DEFAULT '0',
`relocation_time` int(11) NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_FT_DELETED`
-CREATE TEMPORARY TABLE `INNODB_FT_DELETED` (
`DOC_ID` bigint(21) unsigned NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_BUFFER_PAGE_LRU`
-CREATE TEMPORARY TABLE `INNODB_BUFFER_PAGE_LRU` (
`POOL_ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`LRU_POSITION` bigint(21) unsigned NOT NULL DEFAULT '0',
`SPACE` bigint(21) unsigned NOT NULL DEFAULT '0',
`PAGE_NUMBER` bigint(21) unsigned NOT NULL DEFAULT '0',
`PAGE_TYPE` varchar(64) DEFAULT NULL,
`FLUSH_TYPE` bigint(21) unsigned NOT NULL DEFAULT '0',
`FIX_COUNT` bigint(21) unsigned NOT NULL DEFAULT '0',
`IS_HASHED` varchar(3) DEFAULT NULL,
`NEWEST_MODIFICATION` bigint(21) unsigned NOT NULL DEFAULT '0',
`OLDEST_MODIFICATION` bigint(21) unsigned NOT NULL DEFAULT '0',
`ACCESS_TIME` bigint(21) unsigned NOT NULL DEFAULT '0',
`TABLE_NAME` varchar(1024) DEFAULT NULL,
`INDEX_NAME` varchar(1024) DEFAULT NULL,
`NUMBER_RECORDS` bigint(21) unsigned NOT NULL DEFAULT '0',
`DATA_SIZE` bigint(21) unsigned NOT NULL DEFAULT '0',
`COMPRESSED_SIZE` bigint(21) unsigned NOT NULL DEFAULT '0',
`COMPRESSED` varchar(3) DEFAULT NULL,
`IO_FIX` varchar(64) DEFAULT NULL,
`IS_OLD` varchar(3) DEFAULT NULL,
`FREE_PAGE_CLOCK` bigint(21) unsigned NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR

OCESS privilege(s) for this operation)


-- ---------------------------------------------------------- Table structure for table `INNODB_FT_INSERTED`
-CREATE TEMPORARY TABLE `INNODB_FT_INSERTED` (
`DOC_ID` bigint(21) unsigned NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_CMPMEM`
-CREATE TEMPORARY TABLE `INNODB_CMPMEM` (
`page_size` int(5) NOT NULL DEFAULT '0',
`buffer_pool_instance` int(11) NOT NULL DEFAULT '0',
`pages_used` int(11) NOT NULL DEFAULT '0',
`pages_free` int(11) NOT NULL DEFAULT '0',
`relocation_ops` bigint(21) NOT NULL DEFAULT '0',
`relocation_time` int(11) NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_SYS_INDEXES`
-CREATE TEMPORARY TABLE `INNODB_SYS_INDEXES` (
`INDEX_ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`NAME` varchar(193) NOT NULL DEFAULT '',
`TABLE_ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`TYPE` int(11) NOT NULL DEFAULT '0',
`N_FIELDS` int(11) NOT NULL DEFAULT '0',
`PAGE_NO` int(11) NOT NULL DEFAULT '0',
`SPACE` int(11) NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_SYS_TABLES`
-CREATE TEMPORARY TABLE `INNODB_SYS_TABLES` (
`TABLE_ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`NAME` varchar(655) NOT NULL DEFAULT '',
`FLAG` int(11) NOT NULL DEFAULT '0',
`N_COLS` int(11) NOT NULL DEFAULT '0',

`SPACE` int(11) NOT NULL DEFAULT '0',


`FILE_FORMAT` varchar(10) DEFAULT NULL,
`ROW_FORMAT` varchar(12) DEFAULT NULL,
`ZIP_PAGE_SIZE` int(11) unsigned NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_SYS_FIELDS`
-CREATE TEMPORARY TABLE `INNODB_SYS_FIELDS` (
`INDEX_ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`NAME` varchar(193) NOT NULL DEFAULT '',
`POS` int(11) unsigned NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_CMP_PER_INDEX_RESET`
-CREATE TEMPORARY TABLE `INNODB_CMP_PER_INDEX_RESET` (
`database_name` varchar(192) NOT NULL DEFAULT '',
`table_name` varchar(192) NOT NULL DEFAULT '',
`index_name` varchar(192) NOT NULL DEFAULT '',
`compress_ops` int(11) NOT NULL DEFAULT '0',
`compress_ops_ok` int(11) NOT NULL DEFAULT '0',
`compress_time` int(11) NOT NULL DEFAULT '0',
`uncompress_ops` int(11) NOT NULL DEFAULT '0',
`uncompress_time` int(11) NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_BUFFER_PAGE`
-CREATE TEMPORARY TABLE `INNODB_BUFFER_PAGE` (
`POOL_ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`BLOCK_ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`SPACE` bigint(21) unsigned NOT NULL DEFAULT '0',
`PAGE_NUMBER` bigint(21) unsigned NOT NULL DEFAULT '0',
`PAGE_TYPE` varchar(64) DEFAULT NULL,
`FLUSH_TYPE` bigint(21) unsigned NOT NULL DEFAULT '0',
`FIX_COUNT` bigint(21) unsigned NOT NULL DEFAULT '0',
`IS_HASHED` varchar(3) DEFAULT NULL,
`NEWEST_MODIFICATION` bigint(21) unsigned NOT NULL DEFAULT '0',
`OLDEST_MODIFICATION` bigint(21) unsigned NOT NULL DEFAULT '0',
`ACCESS_TIME` bigint(21) unsigned NOT NULL DEFAULT '0',
`TABLE_NAME` varchar(1024) DEFAULT NULL,

`INDEX_NAME` varchar(1024) DEFAULT NULL,


`NUMBER_RECORDS` bigint(21) unsigned NOT NULL DEFAULT '0',
`DATA_SIZE` bigint(21) unsigned NOT NULL DEFAULT '0',
`COMPRESSED_SIZE` bigint(21) unsigned NOT NULL DEFAULT '0',
`PAGE_STATE` varchar(64) DEFAULT NULL,
`IO_FIX` varchar(64) DEFAULT NULL,
`IS_OLD` varchar(3) DEFAULT NULL,
`FREE_PAGE_CLOCK` bigint(21) unsigned NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_FT_DEFAULT_STOPWORD`
-CREATE TEMPORARY TABLE `INNODB_FT_DEFAULT_STOPWORD` (
`value` varchar(18) NOT NULL DEFAULT ''
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
--- Dumping data for table `INNODB_FT_DEFAULT_STOPWORD`
-INSERT INTO `INNODB_FT_DEFAULT_STOPWORD` (`value`) VALUES
('a'),
('about'),
('an'),
('are'),
('as'),
('at'),
('be'),
('by'),
('com'),
('de'),
('en'),
('for'),
('from'),
('how'),
('i'),
('in'),
('is'),
('it'),
('la'),
('of'),
('on'),
('or'),
('that'),
('the'),
('this'),
('to'),
('was'),
('what'),
('when'),
('where'),
('who'),
('will'),
('with'),

('und'),
('the'),
('www');
-- ---------------------------------------------------------- Table structure for table `INNODB_FT_INDEX_TABLE`
-CREATE TEMPORARY TABLE `INNODB_FT_INDEX_TABLE` (
`WORD` varchar(253) NOT NULL DEFAULT '',
`FIRST_DOC_ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`LAST_DOC_ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`DOC_COUNT` bigint(21) unsigned NOT NULL DEFAULT '0',
`DOC_ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`POSITION` bigint(21) unsigned NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_FT_INDEX_CACHE`
-CREATE TEMPORARY TABLE `INNODB_FT_INDEX_CACHE` (
`WORD` varchar(253) NOT NULL DEFAULT '',
`FIRST_DOC_ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`LAST_DOC_ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`DOC_COUNT` bigint(21) unsigned NOT NULL DEFAULT '0',
`DOC_ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`POSITION` bigint(21) unsigned NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_SYS_TABLESPACES`
-CREATE TEMPORARY TABLE `INNODB_SYS_TABLESPACES` (
`SPACE` int(11) unsigned NOT NULL DEFAULT '0',
`NAME` varchar(655) NOT NULL DEFAULT '',
`FLAG` int(11) unsigned NOT NULL DEFAULT '0',
`FILE_FORMAT` varchar(10) DEFAULT NULL,
`ROW_FORMAT` varchar(22) DEFAULT NULL,
`PAGE_SIZE` int(11) unsigned NOT NULL DEFAULT '0',
`ZIP_PAGE_SIZE` int(11) unsigned NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_METRICS`

-CREATE TEMPORARY TABLE `INNODB_METRICS` (


`NAME` varchar(193) NOT NULL DEFAULT '',
`SUBSYSTEM` varchar(193) NOT NULL DEFAULT '',
`COUNT` bigint(21) NOT NULL DEFAULT '0',
`MAX_COUNT` bigint(21) DEFAULT NULL,
`MIN_COUNT` bigint(21) DEFAULT NULL,
`AVG_COUNT` double DEFAULT NULL,
`COUNT_RESET` bigint(21) NOT NULL DEFAULT '0',
`MAX_COUNT_RESET` bigint(21) DEFAULT NULL,
`MIN_COUNT_RESET` bigint(21) DEFAULT NULL,
`AVG_COUNT_RESET` double DEFAULT NULL,
`TIME_ENABLED` datetime DEFAULT NULL,
`TIME_DISABLED` datetime DEFAULT NULL,
`TIME_ELAPSED` bigint(21) DEFAULT NULL,
`TIME_RESET` datetime DEFAULT NULL,
`STATUS` varchar(193) NOT NULL DEFAULT '',
`TYPE` varchar(193) NOT NULL DEFAULT '',
`COMMENT` varchar(193) NOT NULL DEFAULT ''
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_SYS_FOREIGN_COLS`
-CREATE TEMPORARY TABLE `INNODB_SYS_FOREIGN_COLS` (
`ID` varchar(193) NOT NULL DEFAULT '',
`FOR_COL_NAME` varchar(193) NOT NULL DEFAULT '',
`REF_COL_NAME` varchar(193) NOT NULL DEFAULT '',
`POS` int(11) unsigned NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_FT_CONFIG`
-CREATE TEMPORARY TABLE `INNODB_FT_CONFIG` (
`KEY` varchar(193) NOT NULL DEFAULT '',
`VALUE` varchar(193) NOT NULL DEFAULT ''
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_BUFFER_POOL_STATS`
-CREATE TEMPORARY TABLE `INNODB_BUFFER_POOL_STATS` (
`POOL_ID` bigint(21) unsigned NOT NULL DEFAULT '0',

`POOL_SIZE` bigint(21) unsigned NOT NULL DEFAULT '0',


`FREE_BUFFERS` bigint(21) unsigned NOT NULL DEFAULT '0',
`DATABASE_PAGES` bigint(21) unsigned NOT NULL DEFAULT '0',
`OLD_DATABASE_PAGES` bigint(21) unsigned NOT NULL DEFAULT '0',
`MODIFIED_DATABASE_PAGES` bigint(21) unsigned NOT NULL DEFAULT '0',
`PENDING_DECOMPRESS` bigint(21) unsigned NOT NULL DEFAULT '0',
`PENDING_READS` bigint(21) unsigned NOT NULL DEFAULT '0',
`PENDING_FLUSH_LRU` bigint(21) unsigned NOT NULL DEFAULT '0',
`PENDING_FLUSH_LIST` bigint(21) unsigned NOT NULL DEFAULT '0',
`PAGES_MADE_YOUNG` bigint(21) unsigned NOT NULL DEFAULT '0',
`PAGES_NOT_MADE_YOUNG` bigint(21) unsigned NOT NULL DEFAULT '0',
`PAGES_MADE_YOUNG_RATE` double NOT NULL DEFAULT '0',
`PAGES_MADE_NOT_YOUNG_RATE` double NOT NULL DEFAULT '0',
`NUMBER_PAGES_READ` bigint(21) unsigned NOT NULL DEFAULT '0',
`NUMBER_PAGES_CREATED` bigint(21) unsigned NOT NULL DEFAULT '0',
`NUMBER_PAGES_WRITTEN` bigint(21) unsigned NOT NULL DEFAULT '0',
`PAGES_READ_RATE` double NOT NULL DEFAULT '0',
`PAGES_CREATE_RATE` double NOT NULL DEFAULT '0',
`PAGES_WRITTEN_RATE` double NOT NULL DEFAULT '0',
`NUMBER_PAGES_GET` bigint(21) unsigned NOT NULL DEFAULT '0',
`HIT_RATE` bigint(21) unsigned NOT NULL DEFAULT '0',
`YOUNG_MAKE_PER_THOUSAND_GETS` bigint(21) unsigned NOT NULL DEFAULT '0',
`NOT_YOUNG_MAKE_PER_THOUSAND_GETS` bigint(21) unsigned NOT NULL DEFAULT '0',
`NUMBER_PAGES_READ_AHEAD` bigint(21) unsigned NOT NULL DEFAULT '0',
`NUMBER_READ_AHEAD_EVICTED` bigint(21) unsigned NOT NULL DEFAULT '0',
`READ_AHEAD_RATE` double NOT NULL DEFAULT '0',
`READ_AHEAD_EVICTED_RATE` double NOT NULL DEFAULT '0',
`LRU_IO_TOTAL` bigint(21) unsigned NOT NULL DEFAULT '0',
`LRU_IO_CURRENT` bigint(21) unsigned NOT NULL DEFAULT '0',
`UNCOMPRESS_TOTAL` bigint(21) unsigned NOT NULL DEFAULT '0',
`UNCOMPRESS_CURRENT` bigint(21) unsigned NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_SYS_COLUMNS`
-CREATE TEMPORARY TABLE `INNODB_SYS_COLUMNS` (
`TABLE_ID` bigint(21) unsigned NOT NULL DEFAULT '0',
`NAME` varchar(193) NOT NULL DEFAULT '',
`POS` bigint(21) unsigned NOT NULL DEFAULT '0',
`MTYPE` int(11) NOT NULL DEFAULT '0',
`PRTYPE` int(11) NOT NULL DEFAULT '0',
`LEN` int(11) NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
-- ---------------------------------------------------------- Table structure for table `INNODB_SYS_FOREIGN`
-CREATE TEMPORARY TABLE `INNODB_SYS_FOREIGN` (
`ID` varchar(193) NOT NULL DEFAULT '',

`FOR_NAME` varchar(193) NOT NULL DEFAULT '',


`REF_NAME` varchar(193) NOT NULL DEFAULT '',
`N_COLS` int(11) unsigned NOT NULL DEFAULT '0',
`TYPE` int(11) unsigned NOT NULL DEFAULT '0'
) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-- Error reading data: (#1227 - Access denied; you need (at least one of) the PR
OCESS privilege(s) for this operation)
--- Database: `rcpd`
-CREATE DATABASE `rcpd` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `rcpd`;
-- ---------------------------------------------------------- Table structure for table `NewTable`
-CREATE TABLE `NewTable` (
`ID` int(255) NOT NULL AUTO_INCREMENT,
`Username` varchar(255) NOT NULL,
`Password` varchar(255) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=59 ;
--- Dumping data for table `NewTable`
-INSERT INTO `NewTable` (`ID`, `Username`, `Password`) VALUES
(7, '261S.Obrian', 'RCPDSergeant'),
(8, '313C.Kenth', 'rcpdrules'),
(9, '250J.Diaz', 'Mike'),
(10, '243C.Roach', '1234'),
(11, '354D.Lost', 'clickhere'),
(12, '278M.Hopkins', '2111'),
(13, '789W.Cambridge', 'password'),
(14, '237L.Damon', 'Damon237'),
(15, '219R.Campbell', '123'),
(16, '291H.Stepps', 'Trueman'),
(17, '245J.Ramirez', 'qwerty'),
(18, '245J.Bishop', 'Endlesscomplaints'),
(19, 'E.Trueman', 'truemanrocks'),
(20, '571M.Davis', 'qwerty571'),
(21, '288R.Black', 'pickles'),
(22, '313S.OConners', 'Rage101'),
(23, '229B.Gambino', 'hickshickorystix'),
(24, '210J.Mason', 'lol'),
(25, '214A.Carter', 'cartertheboss'),
(26, '230A.Hicks', 'ahicks230'),
(27, '252J.Richard', 'tits'),
(28, 'J.knoxville', 'slicynon'),
(29, 'E.Garson', 'joshua111'),
(30, '209K.Hicks', 'hickskicksass'),
(31, '281J.Thever', 'schnitzel'),
(32, '187S.Scott', '0000'),
(33, '307J.Rockfield', '112leroy'),
(34, '270D.Heston', 'generic'),
(35, '283L.Washington', 'washingmachine'),

(36,
(37,
(38,
(39,
(40,
(41,
(42,
(43,
(44,
(45,
(46,
(47,
(48,
(49,
(50,
(51,
(52,
(53,
(54,
(55,
(56,
(57,
(58,

'268B.Cooper', 'generic'),
'150A.Peircen', 'nigga'),
'236A.Matthews', 'donutz'),
'711M.Ogden', 'Lewis34'),
'C.Shaw', 'AXYFyZ6M'),
'299J.Foxe', 'copper123'),
'691M.Miles', 'Cpl691Miles'),
'259H.Foster', 'donovan1'),
'205N.Walter', 'donuts205'),
'E.Wallace', 'copper123'),
'201P.Rosco', '123password456'),
'J.Williams', 'qwerty'),
'654J.Gibbs', 'LOLWAT123'),
'R.Whitefield', 'jbusch3354'),
'255D.Weston', 'redcounty'),
'J.Patterson', 'pass123'),
'test', 'test'),
'208M.Hudson', 'weed'),
'307D.Kellar', 'cso603'),
'J.Dale', 'okbob'),
'213D.Damon', 'bigd'),
'226R.Winters', 'Cookie'),
'972M.Cambridge', 'password');

-- ---------------------------------------------------------- Table structure for table `SupTable`


-CREATE TABLE `SupTable` (
`ID` int(255) NOT NULL AUTO_INCREMENT,
`Username` varchar(255) NOT NULL,
`Password` varchar(255) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ;
--- Dumping data for table `SupTable`
-INSERT INTO `SupTable` (`ID`, `Username`, `Password`) VALUES
(1, '354D.Lost', 'clickhere'),
(2, '789W.Cambridge', 'password'),
(3, '243C.Roach', '1234'),
(4, '245J.Bishop', 'Endlesscomplaints'),
(5, '307J.Rockfield', '112leroy'),
(6, '270D.Heston', 'generic'),
(7, '150A.Peircen', 'nigga'),
(8, '711M.Ogden', 'Lewis34'),
(9, '201P.Rosco', '123password456'),
(10, '654J.Gibbs', 'LOLWAT123'),
(11, '213D.Damon', 'bigd'),
(12, '972M.Cambridge', 'password');

You might also like