A sql lab filled with pokemon data

a4952b15-72d7-4119-b16e-6d63eccd94b8.xml 147KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <dataSource name="@localhost">
  3. <database-model serializer="dbm" rdbms="MYSQL" format-version="4.11">
  4. <root id="1">
  5. <ServerVersion>8.0.12</ServerVersion>
  6. <DefaultEngine>InnoDB</DefaultEngine>
  7. <DefaultTmpEngine>InnoDB</DefaultTmpEngine>
  8. <DefaultCasing>mixed/mixed</DefaultCasing>
  9. </root>
  10. <schema id="2" parent="1" name="information_schema">
  11. <Current>1</Current>
  12. <Visible>1</Visible>
  13. <Collation>utf8_general_ci</Collation>
  14. </schema>
  15. <schema id="3" parent="1" name="mysql">
  16. <Collation>utf8_general_ci</Collation>
  17. </schema>
  18. <schema id="4" parent="1" name="performance_schema">
  19. <Collation>utf8mb4_0900_ai_ci</Collation>
  20. </schema>
  21. <schema id="5" parent="1" name="pokemon">
  22. <Collation>utf8_general_ci</Collation>
  23. </schema>
  24. <schema id="6" parent="1" name="sys">
  25. <Collation>utf8mb4_0900_ai_ci</Collation>
  26. </schema>
  27. <collation id="7" parent="1" name="armscii8_bin">
  28. <Charset>armscii8</Charset>
  29. <DefaultForCharset>0</DefaultForCharset>
  30. </collation>
  31. <collation id="8" parent="1" name="armscii8_general_ci">
  32. <Charset>armscii8</Charset>
  33. <DefaultForCharset>1</DefaultForCharset>
  34. </collation>
  35. <collation id="9" parent="1" name="ascii_bin">
  36. <Charset>ascii</Charset>
  37. <DefaultForCharset>0</DefaultForCharset>
  38. </collation>
  39. <collation id="10" parent="1" name="ascii_general_ci">
  40. <Charset>ascii</Charset>
  41. <DefaultForCharset>1</DefaultForCharset>
  42. </collation>
  43. <collation id="11" parent="1" name="big5_bin">
  44. <Charset>big5</Charset>
  45. <DefaultForCharset>0</DefaultForCharset>
  46. </collation>
  47. <collation id="12" parent="1" name="big5_chinese_ci">
  48. <Charset>big5</Charset>
  49. <DefaultForCharset>1</DefaultForCharset>
  50. </collation>
  51. <collation id="13" parent="1" name="binary">
  52. <Charset>binary</Charset>
  53. <DefaultForCharset>1</DefaultForCharset>
  54. </collation>
  55. <collation id="14" parent="1" name="cp1250_bin">
  56. <Charset>cp1250</Charset>
  57. <DefaultForCharset>0</DefaultForCharset>
  58. </collation>
  59. <collation id="15" parent="1" name="cp1250_croatian_ci">
  60. <Charset>cp1250</Charset>
  61. <DefaultForCharset>0</DefaultForCharset>
  62. </collation>
  63. <collation id="16" parent="1" name="cp1250_czech_cs">
  64. <Charset>cp1250</Charset>
  65. <DefaultForCharset>0</DefaultForCharset>
  66. </collation>
  67. <collation id="17" parent="1" name="cp1250_general_ci">
  68. <Charset>cp1250</Charset>
  69. <DefaultForCharset>1</DefaultForCharset>
  70. </collation>
  71. <collation id="18" parent="1" name="cp1250_polish_ci">
  72. <Charset>cp1250</Charset>
  73. <DefaultForCharset>0</DefaultForCharset>
  74. </collation>
  75. <collation id="19" parent="1" name="cp1251_bin">
  76. <Charset>cp1251</Charset>
  77. <DefaultForCharset>0</DefaultForCharset>
  78. </collation>
  79. <collation id="20" parent="1" name="cp1251_bulgarian_ci">
  80. <Charset>cp1251</Charset>
  81. <DefaultForCharset>0</DefaultForCharset>
  82. </collation>
  83. <collation id="21" parent="1" name="cp1251_general_ci">
  84. <Charset>cp1251</Charset>
  85. <DefaultForCharset>1</DefaultForCharset>
  86. </collation>
  87. <collation id="22" parent="1" name="cp1251_general_cs">
  88. <Charset>cp1251</Charset>
  89. <DefaultForCharset>0</DefaultForCharset>
  90. </collation>
  91. <collation id="23" parent="1" name="cp1251_ukrainian_ci">
  92. <Charset>cp1251</Charset>
  93. <DefaultForCharset>0</DefaultForCharset>
  94. </collation>
  95. <collation id="24" parent="1" name="cp1256_bin">
  96. <Charset>cp1256</Charset>
  97. <DefaultForCharset>0</DefaultForCharset>
  98. </collation>
  99. <collation id="25" parent="1" name="cp1256_general_ci">
  100. <Charset>cp1256</Charset>
  101. <DefaultForCharset>1</DefaultForCharset>
  102. </collation>
  103. <collation id="26" parent="1" name="cp1257_bin">
  104. <Charset>cp1257</Charset>
  105. <DefaultForCharset>0</DefaultForCharset>
  106. </collation>
  107. <collation id="27" parent="1" name="cp1257_general_ci">
  108. <Charset>cp1257</Charset>
  109. <DefaultForCharset>1</DefaultForCharset>
  110. </collation>
  111. <collation id="28" parent="1" name="cp1257_lithuanian_ci">
  112. <Charset>cp1257</Charset>
  113. <DefaultForCharset>0</DefaultForCharset>
  114. </collation>
  115. <collation id="29" parent="1" name="cp850_bin">
  116. <Charset>cp850</Charset>
  117. <DefaultForCharset>0</DefaultForCharset>
  118. </collation>
  119. <collation id="30" parent="1" name="cp850_general_ci">
  120. <Charset>cp850</Charset>
  121. <DefaultForCharset>1</DefaultForCharset>
  122. </collation>
  123. <collation id="31" parent="1" name="cp852_bin">
  124. <Charset>cp852</Charset>
  125. <DefaultForCharset>0</DefaultForCharset>
  126. </collation>
  127. <collation id="32" parent="1" name="cp852_general_ci">
  128. <Charset>cp852</Charset>
  129. <DefaultForCharset>1</DefaultForCharset>
  130. </collation>
  131. <collation id="33" parent="1" name="cp866_bin">
  132. <Charset>cp866</Charset>
  133. <DefaultForCharset>0</DefaultForCharset>
  134. </collation>
  135. <collation id="34" parent="1" name="cp866_general_ci">
  136. <Charset>cp866</Charset>
  137. <DefaultForCharset>1</DefaultForCharset>
  138. </collation>
  139. <collation id="35" parent="1" name="cp932_bin">
  140. <Charset>cp932</Charset>
  141. <DefaultForCharset>0</DefaultForCharset>
  142. </collation>
  143. <collation id="36" parent="1" name="cp932_japanese_ci">
  144. <Charset>cp932</Charset>
  145. <DefaultForCharset>1</DefaultForCharset>
  146. </collation>
  147. <collation id="37" parent="1" name="dec8_bin">
  148. <Charset>dec8</Charset>
  149. <DefaultForCharset>0</DefaultForCharset>
  150. </collation>
  151. <collation id="38" parent="1" name="dec8_swedish_ci">
  152. <Charset>dec8</Charset>
  153. <DefaultForCharset>1</DefaultForCharset>
  154. </collation>
  155. <collation id="39" parent="1" name="eucjpms_bin">
  156. <Charset>eucjpms</Charset>
  157. <DefaultForCharset>0</DefaultForCharset>
  158. </collation>
  159. <collation id="40" parent="1" name="eucjpms_japanese_ci">
  160. <Charset>eucjpms</Charset>
  161. <DefaultForCharset>1</DefaultForCharset>
  162. </collation>
  163. <collation id="41" parent="1" name="euckr_bin">
  164. <Charset>euckr</Charset>
  165. <DefaultForCharset>0</DefaultForCharset>
  166. </collation>
  167. <collation id="42" parent="1" name="euckr_korean_ci">
  168. <Charset>euckr</Charset>
  169. <DefaultForCharset>1</DefaultForCharset>
  170. </collation>
  171. <collation id="43" parent="1" name="gb18030_bin">
  172. <Charset>gb18030</Charset>
  173. <DefaultForCharset>0</DefaultForCharset>
  174. </collation>
  175. <collation id="44" parent="1" name="gb18030_chinese_ci">
  176. <Charset>gb18030</Charset>
  177. <DefaultForCharset>1</DefaultForCharset>
  178. </collation>
  179. <collation id="45" parent="1" name="gb18030_unicode_520_ci">
  180. <Charset>gb18030</Charset>
  181. <DefaultForCharset>0</DefaultForCharset>
  182. </collation>
  183. <collation id="46" parent="1" name="gb2312_bin">
  184. <Charset>gb2312</Charset>
  185. <DefaultForCharset>0</DefaultForCharset>
  186. </collation>
  187. <collation id="47" parent="1" name="gb2312_chinese_ci">
  188. <Charset>gb2312</Charset>
  189. <DefaultForCharset>1</DefaultForCharset>
  190. </collation>
  191. <collation id="48" parent="1" name="gbk_bin">
  192. <Charset>gbk</Charset>
  193. <DefaultForCharset>0</DefaultForCharset>
  194. </collation>
  195. <collation id="49" parent="1" name="gbk_chinese_ci">
  196. <Charset>gbk</Charset>
  197. <DefaultForCharset>1</DefaultForCharset>
  198. </collation>
  199. <collation id="50" parent="1" name="geostd8_bin">
  200. <Charset>geostd8</Charset>
  201. <DefaultForCharset>0</DefaultForCharset>
  202. </collation>
  203. <collation id="51" parent="1" name="geostd8_general_ci">
  204. <Charset>geostd8</Charset>
  205. <DefaultForCharset>1</DefaultForCharset>
  206. </collation>
  207. <collation id="52" parent="1" name="greek_bin">
  208. <Charset>greek</Charset>
  209. <DefaultForCharset>0</DefaultForCharset>
  210. </collation>
  211. <collation id="53" parent="1" name="greek_general_ci">
  212. <Charset>greek</Charset>
  213. <DefaultForCharset>1</DefaultForCharset>
  214. </collation>
  215. <collation id="54" parent="1" name="hebrew_bin">
  216. <Charset>hebrew</Charset>
  217. <DefaultForCharset>0</DefaultForCharset>
  218. </collation>
  219. <collation id="55" parent="1" name="hebrew_general_ci">
  220. <Charset>hebrew</Charset>
  221. <DefaultForCharset>1</DefaultForCharset>
  222. </collation>
  223. <collation id="56" parent="1" name="hp8_bin">
  224. <Charset>hp8</Charset>
  225. <DefaultForCharset>0</DefaultForCharset>
  226. </collation>
  227. <collation id="57" parent="1" name="hp8_english_ci">
  228. <Charset>hp8</Charset>
  229. <DefaultForCharset>1</DefaultForCharset>
  230. </collation>
  231. <collation id="58" parent="1" name="keybcs2_bin">
  232. <Charset>keybcs2</Charset>
  233. <DefaultForCharset>0</DefaultForCharset>
  234. </collation>
  235. <collation id="59" parent="1" name="keybcs2_general_ci">
  236. <Charset>keybcs2</Charset>
  237. <DefaultForCharset>1</DefaultForCharset>
  238. </collation>
  239. <collation id="60" parent="1" name="koi8r_bin">
  240. <Charset>koi8r</Charset>
  241. <DefaultForCharset>0</DefaultForCharset>
  242. </collation>
  243. <collation id="61" parent="1" name="koi8r_general_ci">
  244. <Charset>koi8r</Charset>
  245. <DefaultForCharset>1</DefaultForCharset>
  246. </collation>
  247. <collation id="62" parent="1" name="koi8u_bin">
  248. <Charset>koi8u</Charset>
  249. <DefaultForCharset>0</DefaultForCharset>
  250. </collation>
  251. <collation id="63" parent="1" name="koi8u_general_ci">
  252. <Charset>koi8u</Charset>
  253. <DefaultForCharset>1</DefaultForCharset>
  254. </collation>
  255. <collation id="64" parent="1" name="latin1_bin">
  256. <Charset>latin1</Charset>
  257. <DefaultForCharset>0</DefaultForCharset>
  258. </collation>
  259. <collation id="65" parent="1" name="latin1_danish_ci">
  260. <Charset>latin1</Charset>
  261. <DefaultForCharset>0</DefaultForCharset>
  262. </collation>
  263. <collation id="66" parent="1" name="latin1_general_ci">
  264. <Charset>latin1</Charset>
  265. <DefaultForCharset>0</DefaultForCharset>
  266. </collation>
  267. <collation id="67" parent="1" name="latin1_general_cs">
  268. <Charset>latin1</Charset>
  269. <DefaultForCharset>0</DefaultForCharset>
  270. </collation>
  271. <collation id="68" parent="1" name="latin1_german1_ci">
  272. <Charset>latin1</Charset>
  273. <DefaultForCharset>0</DefaultForCharset>
  274. </collation>
  275. <collation id="69" parent="1" name="latin1_german2_ci">
  276. <Charset>latin1</Charset>
  277. <DefaultForCharset>0</DefaultForCharset>
  278. </collation>
  279. <collation id="70" parent="1" name="latin1_spanish_ci">
  280. <Charset>latin1</Charset>
  281. <DefaultForCharset>0</DefaultForCharset>
  282. </collation>
  283. <collation id="71" parent="1" name="latin1_swedish_ci">
  284. <Charset>latin1</Charset>
  285. <DefaultForCharset>1</DefaultForCharset>
  286. </collation>
  287. <collation id="72" parent="1" name="latin2_bin">
  288. <Charset>latin2</Charset>
  289. <DefaultForCharset>0</DefaultForCharset>
  290. </collation>
  291. <collation id="73" parent="1" name="latin2_croatian_ci">
  292. <Charset>latin2</Charset>
  293. <DefaultForCharset>0</DefaultForCharset>
  294. </collation>
  295. <collation id="74" parent="1" name="latin2_czech_cs">
  296. <Charset>latin2</Charset>
  297. <DefaultForCharset>0</DefaultForCharset>
  298. </collation>
  299. <collation id="75" parent="1" name="latin2_general_ci">
  300. <Charset>latin2</Charset>
  301. <DefaultForCharset>1</DefaultForCharset>
  302. </collation>
  303. <collation id="76" parent="1" name="latin2_hungarian_ci">
  304. <Charset>latin2</Charset>
  305. <DefaultForCharset>0</DefaultForCharset>
  306. </collation>
  307. <collation id="77" parent="1" name="latin5_bin">
  308. <Charset>latin5</Charset>
  309. <DefaultForCharset>0</DefaultForCharset>
  310. </collation>
  311. <collation id="78" parent="1" name="latin5_turkish_ci">
  312. <Charset>latin5</Charset>
  313. <DefaultForCharset>1</DefaultForCharset>
  314. </collation>
  315. <collation id="79" parent="1" name="latin7_bin">
  316. <Charset>latin7</Charset>
  317. <DefaultForCharset>0</DefaultForCharset>
  318. </collation>
  319. <collation id="80" parent="1" name="latin7_estonian_cs">
  320. <Charset>latin7</Charset>
  321. <DefaultForCharset>0</DefaultForCharset>
  322. </collation>
  323. <collation id="81" parent="1" name="latin7_general_ci">
  324. <Charset>latin7</Charset>
  325. <DefaultForCharset>1</DefaultForCharset>
  326. </collation>
  327. <collation id="82" parent="1" name="latin7_general_cs">
  328. <Charset>latin7</Charset>
  329. <DefaultForCharset>0</DefaultForCharset>
  330. </collation>
  331. <collation id="83" parent="1" name="macce_bin">
  332. <Charset>macce</Charset>
  333. <DefaultForCharset>0</DefaultForCharset>
  334. </collation>
  335. <collation id="84" parent="1" name="macce_general_ci">
  336. <Charset>macce</Charset>
  337. <DefaultForCharset>1</DefaultForCharset>
  338. </collation>
  339. <collation id="85" parent="1" name="macroman_bin">
  340. <Charset>macroman</Charset>
  341. <DefaultForCharset>0</DefaultForCharset>
  342. </collation>
  343. <collation id="86" parent="1" name="macroman_general_ci">
  344. <Charset>macroman</Charset>
  345. <DefaultForCharset>1</DefaultForCharset>
  346. </collation>
  347. <collation id="87" parent="1" name="sjis_bin">
  348. <Charset>sjis</Charset>
  349. <DefaultForCharset>0</DefaultForCharset>
  350. </collation>
  351. <collation id="88" parent="1" name="sjis_japanese_ci">
  352. <Charset>sjis</Charset>
  353. <DefaultForCharset>1</DefaultForCharset>
  354. </collation>
  355. <collation id="89" parent="1" name="swe7_bin">
  356. <Charset>swe7</Charset>
  357. <DefaultForCharset>0</DefaultForCharset>
  358. </collation>
  359. <collation id="90" parent="1" name="swe7_swedish_ci">
  360. <Charset>swe7</Charset>
  361. <DefaultForCharset>1</DefaultForCharset>
  362. </collation>
  363. <collation id="91" parent="1" name="tis620_bin">
  364. <Charset>tis620</Charset>
  365. <DefaultForCharset>0</DefaultForCharset>
  366. </collation>
  367. <collation id="92" parent="1" name="tis620_thai_ci">
  368. <Charset>tis620</Charset>
  369. <DefaultForCharset>1</DefaultForCharset>
  370. </collation>
  371. <collation id="93" parent="1" name="ucs2_bin">
  372. <Charset>ucs2</Charset>
  373. <DefaultForCharset>0</DefaultForCharset>
  374. </collation>
  375. <collation id="94" parent="1" name="ucs2_croatian_ci">
  376. <Charset>ucs2</Charset>
  377. <DefaultForCharset>0</DefaultForCharset>
  378. </collation>
  379. <collation id="95" parent="1" name="ucs2_czech_ci">
  380. <Charset>ucs2</Charset>
  381. <DefaultForCharset>0</DefaultForCharset>
  382. </collation>
  383. <collation id="96" parent="1" name="ucs2_danish_ci">
  384. <Charset>ucs2</Charset>
  385. <DefaultForCharset>0</DefaultForCharset>
  386. </collation>
  387. <collation id="97" parent="1" name="ucs2_esperanto_ci">
  388. <Charset>ucs2</Charset>
  389. <DefaultForCharset>0</DefaultForCharset>
  390. </collation>
  391. <collation id="98" parent="1" name="ucs2_estonian_ci">
  392. <Charset>ucs2</Charset>
  393. <DefaultForCharset>0</DefaultForCharset>
  394. </collation>
  395. <collation id="99" parent="1" name="ucs2_general_ci">
  396. <Charset>ucs2</Charset>
  397. <DefaultForCharset>1</DefaultForCharset>
  398. </collation>
  399. <collation id="100" parent="1" name="ucs2_general_mysql500_ci">
  400. <Charset>ucs2</Charset>
  401. <DefaultForCharset>0</DefaultForCharset>
  402. </collation>
  403. <collation id="101" parent="1" name="ucs2_german2_ci">
  404. <Charset>ucs2</Charset>
  405. <DefaultForCharset>0</DefaultForCharset>
  406. </collation>
  407. <collation id="102" parent="1" name="ucs2_hungarian_ci">
  408. <Charset>ucs2</Charset>
  409. <DefaultForCharset>0</DefaultForCharset>
  410. </collation>
  411. <collation id="103" parent="1" name="ucs2_icelandic_ci">
  412. <Charset>ucs2</Charset>
  413. <DefaultForCharset>0</DefaultForCharset>
  414. </collation>
  415. <collation id="104" parent="1" name="ucs2_latvian_ci">
  416. <Charset>ucs2</Charset>
  417. <DefaultForCharset>0</DefaultForCharset>
  418. </collation>
  419. <collation id="105" parent="1" name="ucs2_lithuanian_ci">
  420. <Charset>ucs2</Charset>
  421. <DefaultForCharset>0</DefaultForCharset>
  422. </collation>
  423. <collation id="106" parent="1" name="ucs2_persian_ci">
  424. <Charset>ucs2</Charset>
  425. <DefaultForCharset>0</DefaultForCharset>
  426. </collation>
  427. <collation id="107" parent="1" name="ucs2_polish_ci">
  428. <Charset>ucs2</Charset>
  429. <DefaultForCharset>0</DefaultForCharset>
  430. </collation>
  431. <collation id="108" parent="1" name="ucs2_roman_ci">
  432. <Charset>ucs2</Charset>
  433. <DefaultForCharset>0</DefaultForCharset>
  434. </collation>
  435. <collation id="109" parent="1" name="ucs2_romanian_ci">
  436. <Charset>ucs2</Charset>
  437. <DefaultForCharset>0</DefaultForCharset>
  438. </collation>
  439. <collation id="110" parent="1" name="ucs2_sinhala_ci">
  440. <Charset>ucs2</Charset>
  441. <DefaultForCharset>0</DefaultForCharset>
  442. </collation>
  443. <collation id="111" parent="1" name="ucs2_slovak_ci">
  444. <Charset>ucs2</Charset>
  445. <DefaultForCharset>0</DefaultForCharset>
  446. </collation>
  447. <collation id="112" parent="1" name="ucs2_slovenian_ci">
  448. <Charset>ucs2</Charset>
  449. <DefaultForCharset>0</DefaultForCharset>
  450. </collation>
  451. <collation id="113" parent="1" name="ucs2_spanish2_ci">
  452. <Charset>ucs2</Charset>
  453. <DefaultForCharset>0</DefaultForCharset>
  454. </collation>
  455. <collation id="114" parent="1" name="ucs2_spanish_ci">
  456. <Charset>ucs2</Charset>
  457. <DefaultForCharset>0</DefaultForCharset>
  458. </collation>
  459. <collation id="115" parent="1" name="ucs2_swedish_ci">
  460. <Charset>ucs2</Charset>
  461. <DefaultForCharset>0</DefaultForCharset>
  462. </collation>
  463. <collation id="116" parent="1" name="ucs2_turkish_ci">
  464. <Charset>ucs2</Charset>
  465. <DefaultForCharset>0</DefaultForCharset>
  466. </collation>
  467. <collation id="117" parent="1" name="ucs2_unicode_520_ci">
  468. <Charset>ucs2</Charset>
  469. <DefaultForCharset>0</DefaultForCharset>
  470. </collation>
  471. <collation id="118" parent="1" name="ucs2_unicode_ci">
  472. <Charset>ucs2</Charset>
  473. <DefaultForCharset>0</DefaultForCharset>
  474. </collation>
  475. <collation id="119" parent="1" name="ucs2_vietnamese_ci">
  476. <Charset>ucs2</Charset>
  477. <DefaultForCharset>0</DefaultForCharset>
  478. </collation>
  479. <collation id="120" parent="1" name="ujis_bin">
  480. <Charset>ujis</Charset>
  481. <DefaultForCharset>0</DefaultForCharset>
  482. </collation>
  483. <collation id="121" parent="1" name="ujis_japanese_ci">
  484. <Charset>ujis</Charset>
  485. <DefaultForCharset>1</DefaultForCharset>
  486. </collation>
  487. <collation id="122" parent="1" name="utf16_bin">
  488. <Charset>utf16</Charset>
  489. <DefaultForCharset>0</DefaultForCharset>
  490. </collation>
  491. <collation id="123" parent="1" name="utf16_croatian_ci">
  492. <Charset>utf16</Charset>
  493. <DefaultForCharset>0</DefaultForCharset>
  494. </collation>
  495. <collation id="124" parent="1" name="utf16_czech_ci">
  496. <Charset>utf16</Charset>
  497. <DefaultForCharset>0</DefaultForCharset>
  498. </collation>
  499. <collation id="125" parent="1" name="utf16_danish_ci">
  500. <Charset>utf16</Charset>
  501. <DefaultForCharset>0</DefaultForCharset>
  502. </collation>
  503. <collation id="126" parent="1" name="utf16_esperanto_ci">
  504. <Charset>utf16</Charset>
  505. <DefaultForCharset>0</DefaultForCharset>
  506. </collation>
  507. <collation id="127" parent="1" name="utf16_estonian_ci">
  508. <Charset>utf16</Charset>
  509. <DefaultForCharset>0</DefaultForCharset>
  510. </collation>
  511. <collation id="128" parent="1" name="utf16_general_ci">
  512. <Charset>utf16</Charset>
  513. <DefaultForCharset>1</DefaultForCharset>
  514. </collation>
  515. <collation id="129" parent="1" name="utf16_german2_ci">
  516. <Charset>utf16</Charset>
  517. <DefaultForCharset>0</DefaultForCharset>
  518. </collation>
  519. <collation id="130" parent="1" name="utf16_hungarian_ci">
  520. <Charset>utf16</Charset>
  521. <DefaultForCharset>0</DefaultForCharset>
  522. </collation>
  523. <collation id="131" parent="1" name="utf16_icelandic_ci">
  524. <Charset>utf16</Charset>
  525. <DefaultForCharset>0</DefaultForCharset>
  526. </collation>
  527. <collation id="132" parent="1" name="utf16_latvian_ci">
  528. <Charset>utf16</Charset>
  529. <DefaultForCharset>0</DefaultForCharset>
  530. </collation>
  531. <collation id="133" parent="1" name="utf16_lithuanian_ci">
  532. <Charset>utf16</Charset>
  533. <DefaultForCharset>0</DefaultForCharset>
  534. </collation>
  535. <collation id="134" parent="1" name="utf16_persian_ci">
  536. <Charset>utf16</Charset>
  537. <DefaultForCharset>0</DefaultForCharset>
  538. </collation>
  539. <collation id="135" parent="1" name="utf16_polish_ci">
  540. <Charset>utf16</Charset>
  541. <DefaultForCharset>0</DefaultForCharset>
  542. </collation>
  543. <collation id="136" parent="1" name="utf16_roman_ci">
  544. <Charset>utf16</Charset>
  545. <DefaultForCharset>0</DefaultForCharset>
  546. </collation>
  547. <collation id="137" parent="1" name="utf16_romanian_ci">
  548. <Charset>utf16</Charset>
  549. <DefaultForCharset>0</DefaultForCharset>
  550. </collation>
  551. <collation id="138" parent="1" name="utf16_sinhala_ci">
  552. <Charset>utf16</Charset>
  553. <DefaultForCharset>0</DefaultForCharset>
  554. </collation>
  555. <collation id="139" parent="1" name="utf16_slovak_ci">
  556. <Charset>utf16</Charset>
  557. <DefaultForCharset>0</DefaultForCharset>
  558. </collation>
  559. <collation id="140" parent="1" name="utf16_slovenian_ci">
  560. <Charset>utf16</Charset>
  561. <DefaultForCharset>0</DefaultForCharset>
  562. </collation>
  563. <collation id="141" parent="1" name="utf16_spanish2_ci">
  564. <Charset>utf16</Charset>
  565. <DefaultForCharset>0</DefaultForCharset>
  566. </collation>
  567. <collation id="142" parent="1" name="utf16_spanish_ci">
  568. <Charset>utf16</Charset>
  569. <DefaultForCharset>0</DefaultForCharset>
  570. </collation>
  571. <collation id="143" parent="1" name="utf16_swedish_ci">
  572. <Charset>utf16</Charset>
  573. <DefaultForCharset>0</DefaultForCharset>
  574. </collation>
  575. <collation id="144" parent="1" name="utf16_turkish_ci">
  576. <Charset>utf16</Charset>
  577. <DefaultForCharset>0</DefaultForCharset>
  578. </collation>
  579. <collation id="145" parent="1" name="utf16_unicode_520_ci">
  580. <Charset>utf16</Charset>
  581. <DefaultForCharset>0</DefaultForCharset>
  582. </collation>
  583. <collation id="146" parent="1" name="utf16_unicode_ci">
  584. <Charset>utf16</Charset>
  585. <DefaultForCharset>0</DefaultForCharset>
  586. </collation>
  587. <collation id="147" parent="1" name="utf16_vietnamese_ci">
  588. <Charset>utf16</Charset>
  589. <DefaultForCharset>0</DefaultForCharset>
  590. </collation>
  591. <collation id="148" parent="1" name="utf16le_bin">
  592. <Charset>utf16le</Charset>
  593. <DefaultForCharset>0</DefaultForCharset>
  594. </collation>
  595. <collation id="149" parent="1" name="utf16le_general_ci">
  596. <Charset>utf16le</Charset>
  597. <DefaultForCharset>1</DefaultForCharset>
  598. </collation>
  599. <collation id="150" parent="1" name="utf32_bin">
  600. <Charset>utf32</Charset>
  601. <DefaultForCharset>0</DefaultForCharset>
  602. </collation>
  603. <collation id="151" parent="1" name="utf32_croatian_ci">
  604. <Charset>utf32</Charset>
  605. <DefaultForCharset>0</DefaultForCharset>
  606. </collation>
  607. <collation id="152" parent="1" name="utf32_czech_ci">
  608. <Charset>utf32</Charset>
  609. <DefaultForCharset>0</DefaultForCharset>
  610. </collation>
  611. <collation id="153" parent="1" name="utf32_danish_ci">
  612. <Charset>utf32</Charset>
  613. <DefaultForCharset>0</DefaultForCharset>
  614. </collation>
  615. <collation id="154" parent="1" name="utf32_esperanto_ci">
  616. <Charset>utf32</Charset>
  617. <DefaultForCharset>0</DefaultForCharset>
  618. </collation>
  619. <collation id="155" parent="1" name="utf32_estonian_ci">
  620. <Charset>utf32</Charset>
  621. <DefaultForCharset>0</DefaultForCharset>
  622. </collation>
  623. <collation id="156" parent="1" name="utf32_general_ci">
  624. <Charset>utf32</Charset>
  625. <DefaultForCharset>1</DefaultForCharset>
  626. </collation>
  627. <collation id="157" parent="1" name="utf32_german2_ci">
  628. <Charset>utf32</Charset>
  629. <DefaultForCharset>0</DefaultForCharset>
  630. </collation>
  631. <collation id="158" parent="1" name="utf32_hungarian_ci">
  632. <Charset>utf32</Charset>
  633. <DefaultForCharset>0</DefaultForCharset>
  634. </collation>
  635. <collation id="159" parent="1" name="utf32_icelandic_ci">
  636. <Charset>utf32</Charset>
  637. <DefaultForCharset>0</DefaultForCharset>
  638. </collation>
  639. <collation id="160" parent="1" name="utf32_latvian_ci">
  640. <Charset>utf32</Charset>
  641. <DefaultForCharset>0</DefaultForCharset>
  642. </collation>
  643. <collation id="161" parent="1" name="utf32_lithuanian_ci">
  644. <Charset>utf32</Charset>
  645. <DefaultForCharset>0</DefaultForCharset>
  646. </collation>
  647. <collation id="162" parent="1" name="utf32_persian_ci">
  648. <Charset>utf32</Charset>
  649. <DefaultForCharset>0</DefaultForCharset>
  650. </collation>
  651. <collation id="163" parent="1" name="utf32_polish_ci">
  652. <Charset>utf32</Charset>
  653. <DefaultForCharset>0</DefaultForCharset>
  654. </collation>
  655. <collation id="164" parent="1" name="utf32_roman_ci">
  656. <Charset>utf32</Charset>
  657. <DefaultForCharset>0</DefaultForCharset>
  658. </collation>
  659. <collation id="165" parent="1" name="utf32_romanian_ci">
  660. <Charset>utf32</Charset>
  661. <DefaultForCharset>0</DefaultForCharset>
  662. </collation>
  663. <collation id="166" parent="1" name="utf32_sinhala_ci">
  664. <Charset>utf32</Charset>
  665. <DefaultForCharset>0</DefaultForCharset>
  666. </collation>
  667. <collation id="167" parent="1" name="utf32_slovak_ci">
  668. <Charset>utf32</Charset>
  669. <DefaultForCharset>0</DefaultForCharset>
  670. </collation>
  671. <collation id="168" parent="1" name="utf32_slovenian_ci">
  672. <Charset>utf32</Charset>
  673. <DefaultForCharset>0</DefaultForCharset>
  674. </collation>
  675. <collation id="169" parent="1" name="utf32_spanish2_ci">
  676. <Charset>utf32</Charset>
  677. <DefaultForCharset>0</DefaultForCharset>
  678. </collation>
  679. <collation id="170" parent="1" name="utf32_spanish_ci">
  680. <Charset>utf32</Charset>
  681. <DefaultForCharset>0</DefaultForCharset>
  682. </collation>
  683. <collation id="171" parent="1" name="utf32_swedish_ci">
  684. <Charset>utf32</Charset>
  685. <DefaultForCharset>0</DefaultForCharset>
  686. </collation>
  687. <collation id="172" parent="1" name="utf32_turkish_ci">
  688. <Charset>utf32</Charset>
  689. <DefaultForCharset>0</DefaultForCharset>
  690. </collation>
  691. <collation id="173" parent="1" name="utf32_unicode_520_ci">
  692. <Charset>utf32</Charset>
  693. <DefaultForCharset>0</DefaultForCharset>
  694. </collation>
  695. <collation id="174" parent="1" name="utf32_unicode_ci">
  696. <Charset>utf32</Charset>
  697. <DefaultForCharset>0</DefaultForCharset>
  698. </collation>
  699. <collation id="175" parent="1" name="utf32_vietnamese_ci">
  700. <Charset>utf32</Charset>
  701. <DefaultForCharset>0</DefaultForCharset>
  702. </collation>
  703. <collation id="176" parent="1" name="utf8_bin">
  704. <Charset>utf8</Charset>
  705. <DefaultForCharset>0</DefaultForCharset>
  706. </collation>
  707. <collation id="177" parent="1" name="utf8_croatian_ci">
  708. <Charset>utf8</Charset>
  709. <DefaultForCharset>0</DefaultForCharset>
  710. </collation>
  711. <collation id="178" parent="1" name="utf8_czech_ci">
  712. <Charset>utf8</Charset>
  713. <DefaultForCharset>0</DefaultForCharset>
  714. </collation>
  715. <collation id="179" parent="1" name="utf8_danish_ci">
  716. <Charset>utf8</Charset>
  717. <DefaultForCharset>0</DefaultForCharset>
  718. </collation>
  719. <collation id="180" parent="1" name="utf8_esperanto_ci">
  720. <Charset>utf8</Charset>
  721. <DefaultForCharset>0</DefaultForCharset>
  722. </collation>
  723. <collation id="181" parent="1" name="utf8_estonian_ci">
  724. <Charset>utf8</Charset>
  725. <DefaultForCharset>0</DefaultForCharset>
  726. </collation>
  727. <collation id="182" parent="1" name="utf8_general_ci">
  728. <Charset>utf8</Charset>
  729. <DefaultForCharset>1</DefaultForCharset>
  730. </collation>
  731. <collation id="183" parent="1" name="utf8_general_mysql500_ci">
  732. <Charset>utf8</Charset>
  733. <DefaultForCharset>0</DefaultForCharset>
  734. </collation>
  735. <collation id="184" parent="1" name="utf8_german2_ci">
  736. <Charset>utf8</Charset>
  737. <DefaultForCharset>0</DefaultForCharset>
  738. </collation>
  739. <collation id="185" parent="1" name="utf8_hungarian_ci">
  740. <Charset>utf8</Charset>
  741. <DefaultForCharset>0</DefaultForCharset>
  742. </collation>
  743. <collation id="186" parent="1" name="utf8_icelandic_ci">
  744. <Charset>utf8</Charset>
  745. <DefaultForCharset>0</DefaultForCharset>
  746. </collation>
  747. <collation id="187" parent="1" name="utf8_latvian_ci">
  748. <Charset>utf8</Charset>
  749. <DefaultForCharset>0</DefaultForCharset>
  750. </collation>
  751. <collation id="188" parent="1" name="utf8_lithuanian_ci">
  752. <Charset>utf8</Charset>
  753. <DefaultForCharset>0</DefaultForCharset>
  754. </collation>
  755. <collation id="189" parent="1" name="utf8_persian_ci">
  756. <Charset>utf8</Charset>
  757. <DefaultForCharset>0</DefaultForCharset>
  758. </collation>
  759. <collation id="190" parent="1" name="utf8_polish_ci">
  760. <Charset>utf8</Charset>
  761. <DefaultForCharset>0</DefaultForCharset>
  762. </collation>
  763. <collation id="191" parent="1" name="utf8_roman_ci">
  764. <Charset>utf8</Charset>
  765. <DefaultForCharset>0</DefaultForCharset>
  766. </collation>
  767. <collation id="192" parent="1" name="utf8_romanian_ci">
  768. <Charset>utf8</Charset>
  769. <DefaultForCharset>0</DefaultForCharset>
  770. </collation>
  771. <collation id="193" parent="1" name="utf8_sinhala_ci">
  772. <Charset>utf8</Charset>
  773. <DefaultForCharset>0</DefaultForCharset>
  774. </collation>
  775. <collation id="194" parent="1" name="utf8_slovak_ci">
  776. <Charset>utf8</Charset>
  777. <DefaultForCharset>0</DefaultForCharset>
  778. </collation>
  779. <collation id="195" parent="1" name="utf8_slovenian_ci">
  780. <Charset>utf8</Charset>
  781. <DefaultForCharset>0</DefaultForCharset>
  782. </collation>
  783. <collation id="196" parent="1" name="utf8_spanish2_ci">
  784. <Charset>utf8</Charset>
  785. <DefaultForCharset>0</DefaultForCharset>
  786. </collation>
  787. <collation id="197" parent="1" name="utf8_spanish_ci">
  788. <Charset>utf8</Charset>
  789. <DefaultForCharset>0</DefaultForCharset>
  790. </collation>
  791. <collation id="198" parent="1" name="utf8_swedish_ci">
  792. <Charset>utf8</Charset>
  793. <DefaultForCharset>0</DefaultForCharset>
  794. </collation>
  795. <collation id="199" parent="1" name="utf8_tolower_ci">
  796. <Charset>utf8</Charset>
  797. <DefaultForCharset>0</DefaultForCharset>
  798. </collation>
  799. <collation id="200" parent="1" name="utf8_turkish_ci">
  800. <Charset>utf8</Charset>
  801. <DefaultForCharset>0</DefaultForCharset>
  802. </collation>
  803. <collation id="201" parent="1" name="utf8_unicode_520_ci">
  804. <Charset>utf8</Charset>
  805. <DefaultForCharset>0</DefaultForCharset>
  806. </collation>
  807. <collation id="202" parent="1" name="utf8_unicode_ci">
  808. <Charset>utf8</Charset>
  809. <DefaultForCharset>0</DefaultForCharset>
  810. </collation>
  811. <collation id="203" parent="1" name="utf8_vietnamese_ci">
  812. <Charset>utf8</Charset>
  813. <DefaultForCharset>0</DefaultForCharset>
  814. </collation>
  815. <collation id="204" parent="1" name="utf8mb4_0900_ai_ci">
  816. <Charset>utf8mb4</Charset>
  817. <DefaultForCharset>1</DefaultForCharset>
  818. </collation>
  819. <collation id="205" parent="1" name="utf8mb4_0900_as_ci">
  820. <Charset>utf8mb4</Charset>
  821. <DefaultForCharset>0</DefaultForCharset>
  822. </collation>
  823. <collation id="206" parent="1" name="utf8mb4_0900_as_cs">
  824. <Charset>utf8mb4</Charset>
  825. <DefaultForCharset>0</DefaultForCharset>
  826. </collation>
  827. <collation id="207" parent="1" name="utf8mb4_bin">
  828. <Charset>utf8mb4</Charset>
  829. <DefaultForCharset>0</DefaultForCharset>
  830. </collation>
  831. <collation id="208" parent="1" name="utf8mb4_croatian_ci">
  832. <Charset>utf8mb4</Charset>
  833. <DefaultForCharset>0</DefaultForCharset>
  834. </collation>
  835. <collation id="209" parent="1" name="utf8mb4_cs_0900_ai_ci">
  836. <Charset>utf8mb4</Charset>
  837. <DefaultForCharset>0</DefaultForCharset>
  838. </collation>
  839. <collation id="210" parent="1" name="utf8mb4_cs_0900_as_cs">
  840. <Charset>utf8mb4</Charset>
  841. <DefaultForCharset>0</DefaultForCharset>
  842. </collation>
  843. <collation id="211" parent="1" name="utf8mb4_czech_ci">
  844. <Charset>utf8mb4</Charset>
  845. <DefaultForCharset>0</DefaultForCharset>
  846. </collation>
  847. <collation id="212" parent="1" name="utf8mb4_da_0900_ai_ci">
  848. <Charset>utf8mb4</Charset>
  849. <DefaultForCharset>0</DefaultForCharset>
  850. </collation>
  851. <collation id="213" parent="1" name="utf8mb4_da_0900_as_cs">
  852. <Charset>utf8mb4</Charset>
  853. <DefaultForCharset>0</DefaultForCharset>
  854. </collation>
  855. <collation id="214" parent="1" name="utf8mb4_danish_ci">
  856. <Charset>utf8mb4</Charset>
  857. <DefaultForCharset>0</DefaultForCharset>
  858. </collation>
  859. <collation id="215" parent="1" name="utf8mb4_de_pb_0900_ai_ci">
  860. <Charset>utf8mb4</Charset>
  861. <DefaultForCharset>0</DefaultForCharset>
  862. </collation>
  863. <collation id="216" parent="1" name="utf8mb4_de_pb_0900_as_cs">
  864. <Charset>utf8mb4</Charset>
  865. <DefaultForCharset>0</DefaultForCharset>
  866. </collation>
  867. <collation id="217" parent="1" name="utf8mb4_eo_0900_ai_ci">
  868. <Charset>utf8mb4</Charset>
  869. <DefaultForCharset>0</DefaultForCharset>
  870. </collation>
  871. <collation id="218" parent="1" name="utf8mb4_eo_0900_as_cs">
  872. <Charset>utf8mb4</Charset>
  873. <DefaultForCharset>0</DefaultForCharset>
  874. </collation>
  875. <collation id="219" parent="1" name="utf8mb4_es_0900_ai_ci">
  876. <Charset>utf8mb4</Charset>
  877. <DefaultForCharset>0</DefaultForCharset>
  878. </collation>
  879. <collation id="220" parent="1" name="utf8mb4_es_0900_as_cs">
  880. <Charset>utf8mb4</Charset>
  881. <DefaultForCharset>0</DefaultForCharset>
  882. </collation>
  883. <collation id="221" parent="1" name="utf8mb4_es_trad_0900_ai_ci">
  884. <Charset>utf8mb4</Charset>
  885. <DefaultForCharset>0</DefaultForCharset>
  886. </collation>
  887. <collation id="222" parent="1" name="utf8mb4_es_trad_0900_as_cs">
  888. <Charset>utf8mb4</Charset>
  889. <DefaultForCharset>0</DefaultForCharset>
  890. </collation>
  891. <collation id="223" parent="1" name="utf8mb4_esperanto_ci">
  892. <Charset>utf8mb4</Charset>
  893. <DefaultForCharset>0</DefaultForCharset>
  894. </collation>
  895. <collation id="224" parent="1" name="utf8mb4_estonian_ci">
  896. <Charset>utf8mb4</Charset>
  897. <DefaultForCharset>0</DefaultForCharset>
  898. </collation>
  899. <collation id="225" parent="1" name="utf8mb4_et_0900_ai_ci">
  900. <Charset>utf8mb4</Charset>
  901. <DefaultForCharset>0</DefaultForCharset>
  902. </collation>
  903. <collation id="226" parent="1" name="utf8mb4_et_0900_as_cs">
  904. <Charset>utf8mb4</Charset>
  905. <DefaultForCharset>0</DefaultForCharset>
  906. </collation>
  907. <collation id="227" parent="1" name="utf8mb4_general_ci">
  908. <Charset>utf8mb4</Charset>
  909. <DefaultForCharset>0</DefaultForCharset>
  910. </collation>
  911. <collation id="228" parent="1" name="utf8mb4_german2_ci">
  912. <Charset>utf8mb4</Charset>
  913. <DefaultForCharset>0</DefaultForCharset>
  914. </collation>
  915. <collation id="229" parent="1" name="utf8mb4_hr_0900_ai_ci">
  916. <Charset>utf8mb4</Charset>
  917. <DefaultForCharset>0</DefaultForCharset>
  918. </collation>
  919. <collation id="230" parent="1" name="utf8mb4_hr_0900_as_cs">
  920. <Charset>utf8mb4</Charset>
  921. <DefaultForCharset>0</DefaultForCharset>
  922. </collation>
  923. <collation id="231" parent="1" name="utf8mb4_hu_0900_ai_ci">
  924. <Charset>utf8mb4</Charset>
  925. <DefaultForCharset>0</DefaultForCharset>
  926. </collation>
  927. <collation id="232" parent="1" name="utf8mb4_hu_0900_as_cs">
  928. <Charset>utf8mb4</Charset>
  929. <DefaultForCharset>0</DefaultForCharset>
  930. </collation>
  931. <collation id="233" parent="1" name="utf8mb4_hungarian_ci">
  932. <Charset>utf8mb4</Charset>
  933. <DefaultForCharset>0</DefaultForCharset>
  934. </collation>
  935. <collation id="234" parent="1" name="utf8mb4_icelandic_ci">
  936. <Charset>utf8mb4</Charset>
  937. <DefaultForCharset>0</DefaultForCharset>
  938. </collation>
  939. <collation id="235" parent="1" name="utf8mb4_is_0900_ai_ci">
  940. <Charset>utf8mb4</Charset>
  941. <DefaultForCharset>0</DefaultForCharset>
  942. </collation>
  943. <collation id="236" parent="1" name="utf8mb4_is_0900_as_cs">
  944. <Charset>utf8mb4</Charset>
  945. <DefaultForCharset>0</DefaultForCharset>
  946. </collation>
  947. <collation id="237" parent="1" name="utf8mb4_ja_0900_as_cs">
  948. <Charset>utf8mb4</Charset>
  949. <DefaultForCharset>0</DefaultForCharset>
  950. </collation>
  951. <collation id="238" parent="1" name="utf8mb4_ja_0900_as_cs_ks">
  952. <Charset>utf8mb4</Charset>
  953. <DefaultForCharset>0</DefaultForCharset>
  954. </collation>
  955. <collation id="239" parent="1" name="utf8mb4_la_0900_ai_ci">
  956. <Charset>utf8mb4</Charset>
  957. <DefaultForCharset>0</DefaultForCharset>
  958. </collation>
  959. <collation id="240" parent="1" name="utf8mb4_la_0900_as_cs">
  960. <Charset>utf8mb4</Charset>
  961. <DefaultForCharset>0</DefaultForCharset>
  962. </collation>
  963. <collation id="241" parent="1" name="utf8mb4_latvian_ci">
  964. <Charset>utf8mb4</Charset>
  965. <DefaultForCharset>0</DefaultForCharset>
  966. </collation>
  967. <collation id="242" parent="1" name="utf8mb4_lithuanian_ci">
  968. <Charset>utf8mb4</Charset>
  969. <DefaultForCharset>0</DefaultForCharset>
  970. </collation>
  971. <collation id="243" parent="1" name="utf8mb4_lt_0900_ai_ci">
  972. <Charset>utf8mb4</Charset>
  973. <DefaultForCharset>0</DefaultForCharset>
  974. </collation>
  975. <collation id="244" parent="1" name="utf8mb4_lt_0900_as_cs">
  976. <Charset>utf8mb4</Charset>
  977. <DefaultForCharset>0</DefaultForCharset>
  978. </collation>
  979. <collation id="245" parent="1" name="utf8mb4_lv_0900_ai_ci">
  980. <Charset>utf8mb4</Charset>
  981. <DefaultForCharset>0</DefaultForCharset>
  982. </collation>
  983. <collation id="246" parent="1" name="utf8mb4_lv_0900_as_cs">
  984. <Charset>utf8mb4</Charset>
  985. <DefaultForCharset>0</DefaultForCharset>
  986. </collation>
  987. <collation id="247" parent="1" name="utf8mb4_persian_ci">
  988. <Charset>utf8mb4</Charset>
  989. <DefaultForCharset>0</DefaultForCharset>
  990. </collation>
  991. <collation id="248" parent="1" name="utf8mb4_pl_0900_ai_ci">
  992. <Charset>utf8mb4</Charset>
  993. <DefaultForCharset>0</DefaultForCharset>
  994. </collation>
  995. <collation id="249" parent="1" name="utf8mb4_pl_0900_as_cs">
  996. <Charset>utf8mb4</Charset>
  997. <DefaultForCharset>0</DefaultForCharset>
  998. </collation>
  999. <collation id="250" parent="1" name="utf8mb4_polish_ci">
  1000. <Charset>utf8mb4</Charset>
  1001. <DefaultForCharset>0</DefaultForCharset>
  1002. </collation>
  1003. <collation id="251" parent="1" name="utf8mb4_ro_0900_ai_ci">
  1004. <Charset>utf8mb4</Charset>
  1005. <DefaultForCharset>0</DefaultForCharset>
  1006. </collation>
  1007. <collation id="252" parent="1" name="utf8mb4_ro_0900_as_cs">
  1008. <Charset>utf8mb4</Charset>
  1009. <DefaultForCharset>0</DefaultForCharset>
  1010. </collation>
  1011. <collation id="253" parent="1" name="utf8mb4_roman_ci">
  1012. <Charset>utf8mb4</Charset>
  1013. <DefaultForCharset>0</DefaultForCharset>
  1014. </collation>
  1015. <collation id="254" parent="1" name="utf8mb4_romanian_ci">
  1016. <Charset>utf8mb4</Charset>
  1017. <DefaultForCharset>0</DefaultForCharset>
  1018. </collation>
  1019. <collation id="255" parent="1" name="utf8mb4_ru_0900_ai_ci">
  1020. <Charset>utf8mb4</Charset>
  1021. <DefaultForCharset>0</DefaultForCharset>
  1022. </collation>
  1023. <collation id="256" parent="1" name="utf8mb4_ru_0900_as_cs">
  1024. <Charset>utf8mb4</Charset>
  1025. <DefaultForCharset>0</DefaultForCharset>
  1026. </collation>
  1027. <collation id="257" parent="1" name="utf8mb4_sinhala_ci">
  1028. <Charset>utf8mb4</Charset>
  1029. <DefaultForCharset>0</DefaultForCharset>
  1030. </collation>
  1031. <collation id="258" parent="1" name="utf8mb4_sk_0900_ai_ci">
  1032. <Charset>utf8mb4</Charset>
  1033. <DefaultForCharset>0</DefaultForCharset>
  1034. </collation>
  1035. <collation id="259" parent="1" name="utf8mb4_sk_0900_as_cs">
  1036. <Charset>utf8mb4</Charset>
  1037. <DefaultForCharset>0</DefaultForCharset>
  1038. </collation>
  1039. <collation id="260" parent="1" name="utf8mb4_sl_0900_ai_ci">
  1040. <Charset>utf8mb4</Charset>
  1041. <DefaultForCharset>0</DefaultForCharset>
  1042. </collation>
  1043. <collation id="261" parent="1" name="utf8mb4_sl_0900_as_cs">
  1044. <Charset>utf8mb4</Charset>
  1045. <DefaultForCharset>0</DefaultForCharset>
  1046. </collation>
  1047. <collation id="262" parent="1" name="utf8mb4_slovak_ci">
  1048. <Charset>utf8mb4</Charset>
  1049. <DefaultForCharset>0</DefaultForCharset>
  1050. </collation>
  1051. <collation id="263" parent="1" name="utf8mb4_slovenian_ci">
  1052. <Charset>utf8mb4</Charset>
  1053. <DefaultForCharset>0</DefaultForCharset>
  1054. </collation>
  1055. <collation id="264" parent="1" name="utf8mb4_spanish2_ci">
  1056. <Charset>utf8mb4</Charset>
  1057. <DefaultForCharset>0</DefaultForCharset>
  1058. </collation>
  1059. <collation id="265" parent="1" name="utf8mb4_spanish_ci">
  1060. <Charset>utf8mb4</Charset>
  1061. <DefaultForCharset>0</DefaultForCharset>
  1062. </collation>
  1063. <collation id="266" parent="1" name="utf8mb4_sv_0900_ai_ci">
  1064. <Charset>utf8mb4</Charset>
  1065. <DefaultForCharset>0</DefaultForCharset>
  1066. </collation>
  1067. <collation id="267" parent="1" name="utf8mb4_sv_0900_as_cs">
  1068. <Charset>utf8mb4</Charset>
  1069. <DefaultForCharset>0</DefaultForCharset>
  1070. </collation>
  1071. <collation id="268" parent="1" name="utf8mb4_swedish_ci">
  1072. <Charset>utf8mb4</Charset>
  1073. <DefaultForCharset>0</DefaultForCharset>
  1074. </collation>
  1075. <collation id="269" parent="1" name="utf8mb4_tr_0900_ai_ci">
  1076. <Charset>utf8mb4</Charset>
  1077. <DefaultForCharset>0</DefaultForCharset>
  1078. </collation>
  1079. <collation id="270" parent="1" name="utf8mb4_tr_0900_as_cs">
  1080. <Charset>utf8mb4</Charset>
  1081. <DefaultForCharset>0</DefaultForCharset>
  1082. </collation>
  1083. <collation id="271" parent="1" name="utf8mb4_turkish_ci">
  1084. <Charset>utf8mb4</Charset>
  1085. <DefaultForCharset>0</DefaultForCharset>
  1086. </collation>
  1087. <collation id="272" parent="1" name="utf8mb4_unicode_520_ci">
  1088. <Charset>utf8mb4</Charset>
  1089. <DefaultForCharset>0</DefaultForCharset>
  1090. </collation>
  1091. <collation id="273" parent="1" name="utf8mb4_unicode_ci">
  1092. <Charset>utf8mb4</Charset>
  1093. <DefaultForCharset>0</DefaultForCharset>
  1094. </collation>
  1095. <collation id="274" parent="1" name="utf8mb4_vi_0900_ai_ci">
  1096. <Charset>utf8mb4</Charset>
  1097. <DefaultForCharset>0</DefaultForCharset>
  1098. </collation>
  1099. <collation id="275" parent="1" name="utf8mb4_vi_0900_as_cs">
  1100. <Charset>utf8mb4</Charset>
  1101. <DefaultForCharset>0</DefaultForCharset>
  1102. </collation>
  1103. <collation id="276" parent="1" name="utf8mb4_vietnamese_ci">
  1104. <Charset>utf8mb4</Charset>
  1105. <DefaultForCharset>0</DefaultForCharset>
  1106. </collation>
  1107. <view id="277" parent="2" name="CHARACTER_SETS">
  1108. <System>1</System>
  1109. </view>
  1110. <view id="278" parent="2" name="COLLATIONS">
  1111. <System>1</System>
  1112. </view>
  1113. <view id="279" parent="2" name="COLLATION_CHARACTER_SET_APPLICABILITY">
  1114. <System>1</System>
  1115. </view>
  1116. <view id="280" parent="2" name="COLUMNS">
  1117. <System>1</System>
  1118. </view>
  1119. <view id="281" parent="2" name="COLUMN_PRIVILEGES">
  1120. <System>1</System>
  1121. </view>
  1122. <view id="282" parent="2" name="COLUMN_STATISTICS">
  1123. <System>1</System>
  1124. </view>
  1125. <view id="283" parent="2" name="ENGINES">
  1126. <System>1</System>
  1127. </view>
  1128. <view id="284" parent="2" name="EVENTS">
  1129. <System>1</System>
  1130. </view>
  1131. <view id="285" parent="2" name="FILES">
  1132. <System>1</System>
  1133. </view>
  1134. <view id="286" parent="2" name="INNODB_BUFFER_PAGE">
  1135. <System>1</System>
  1136. </view>
  1137. <view id="287" parent="2" name="INNODB_BUFFER_PAGE_LRU">
  1138. <System>1</System>
  1139. </view>
  1140. <view id="288" parent="2" name="INNODB_BUFFER_POOL_STATS">
  1141. <System>1</System>
  1142. </view>
  1143. <view id="289" parent="2" name="INNODB_CACHED_INDEXES">
  1144. <System>1</System>
  1145. </view>
  1146. <view id="290" parent="2" name="INNODB_CMP">
  1147. <System>1</System>
  1148. </view>
  1149. <view id="291" parent="2" name="INNODB_CMPMEM">
  1150. <System>1</System>
  1151. </view>
  1152. <view id="292" parent="2" name="INNODB_CMPMEM_RESET">
  1153. <System>1</System>
  1154. </view>
  1155. <view id="293" parent="2" name="INNODB_CMP_PER_INDEX">
  1156. <System>1</System>
  1157. </view>
  1158. <view id="294" parent="2" name="INNODB_CMP_PER_INDEX_RESET">
  1159. <System>1</System>
  1160. </view>
  1161. <view id="295" parent="2" name="INNODB_CMP_RESET">
  1162. <System>1</System>
  1163. </view>
  1164. <view id="296" parent="2" name="INNODB_COLUMNS">
  1165. <System>1</System>
  1166. </view>
  1167. <view id="297" parent="2" name="INNODB_DATAFILES">
  1168. <System>1</System>
  1169. </view>
  1170. <view id="298" parent="2" name="INNODB_FIELDS">
  1171. <System>1</System>
  1172. </view>
  1173. <view id="299" parent="2" name="INNODB_FOREIGN">
  1174. <System>1</System>
  1175. </view>
  1176. <view id="300" parent="2" name="INNODB_FOREIGN_COLS">
  1177. <System>1</System>
  1178. </view>
  1179. <view id="301" parent="2" name="INNODB_FT_BEING_DELETED">
  1180. <System>1</System>
  1181. </view>
  1182. <view id="302" parent="2" name="INNODB_FT_CONFIG">
  1183. <System>1</System>
  1184. </view>
  1185. <view id="303" parent="2" name="INNODB_FT_DEFAULT_STOPWORD">
  1186. <System>1</System>
  1187. </view>
  1188. <view id="304" parent="2" name="INNODB_FT_DELETED">
  1189. <System>1</System>
  1190. </view>
  1191. <view id="305" parent="2" name="INNODB_FT_INDEX_CACHE">
  1192. <System>1</System>
  1193. </view>
  1194. <view id="306" parent="2" name="INNODB_FT_INDEX_TABLE">
  1195. <System>1</System>
  1196. </view>
  1197. <view id="307" parent="2" name="INNODB_INDEXES">
  1198. <System>1</System>
  1199. </view>
  1200. <view id="308" parent="2" name="INNODB_METRICS">
  1201. <System>1</System>
  1202. </view>
  1203. <view id="309" parent="2" name="INNODB_TABLES">
  1204. <System>1</System>
  1205. </view>
  1206. <view id="310" parent="2" name="INNODB_TABLESPACES">
  1207. <System>1</System>
  1208. </view>
  1209. <view id="311" parent="2" name="INNODB_TABLESPACES_BRIEF">
  1210. <System>1</System>
  1211. </view>
  1212. <view id="312" parent="2" name="INNODB_TABLESTATS">
  1213. <System>1</System>
  1214. </view>
  1215. <view id="313" parent="2" name="INNODB_TEMP_TABLE_INFO">
  1216. <System>1</System>
  1217. </view>
  1218. <view id="314" parent="2" name="INNODB_TRX">
  1219. <System>1</System>
  1220. </view>
  1221. <view id="315" parent="2" name="INNODB_VIRTUAL">
  1222. <System>1</System>
  1223. </view>
  1224. <view id="316" parent="2" name="KEYWORDS">
  1225. <System>1</System>
  1226. </view>
  1227. <view id="317" parent="2" name="KEY_COLUMN_USAGE">
  1228. <System>1</System>
  1229. </view>
  1230. <view id="318" parent="2" name="OPTIMIZER_TRACE">
  1231. <System>1</System>
  1232. </view>
  1233. <view id="319" parent="2" name="PARAMETERS">
  1234. <System>1</System>
  1235. </view>
  1236. <view id="320" parent="2" name="PARTITIONS">
  1237. <System>1</System>
  1238. </view>
  1239. <view id="321" parent="2" name="PLUGINS">
  1240. <System>1</System>
  1241. </view>
  1242. <view id="322" parent="2" name="PROCESSLIST">
  1243. <System>1</System>
  1244. </view>
  1245. <view id="323" parent="2" name="PROFILING">
  1246. <System>1</System>
  1247. </view>
  1248. <view id="324" parent="2" name="REFERENTIAL_CONSTRAINTS">
  1249. <System>1</System>
  1250. </view>
  1251. <view id="325" parent="2" name="RESOURCE_GROUPS">
  1252. <System>1</System>
  1253. </view>
  1254. <view id="326" parent="2" name="ROUTINES">
  1255. <System>1</System>
  1256. </view>
  1257. <view id="327" parent="2" name="SCHEMATA">
  1258. <System>1</System>
  1259. </view>
  1260. <view id="328" parent="2" name="SCHEMA_PRIVILEGES">
  1261. <System>1</System>
  1262. </view>
  1263. <view id="329" parent="2" name="STATISTICS">
  1264. <System>1</System>
  1265. </view>
  1266. <view id="330" parent="2" name="ST_GEOMETRY_COLUMNS">
  1267. <System>1</System>
  1268. </view>
  1269. <view id="331" parent="2" name="ST_SPATIAL_REFERENCE_SYSTEMS">
  1270. <System>1</System>
  1271. </view>
  1272. <view id="332" parent="2" name="TABLES">
  1273. <System>1</System>
  1274. </view>
  1275. <view id="333" parent="2" name="TABLESPACES">
  1276. <System>1</System>
  1277. </view>
  1278. <view id="334" parent="2" name="TABLE_CONSTRAINTS">
  1279. <System>1</System>
  1280. </view>
  1281. <view id="335" parent="2" name="TABLE_PRIVILEGES">
  1282. <System>1</System>
  1283. </view>
  1284. <view id="336" parent="2" name="TRIGGERS">
  1285. <System>1</System>
  1286. </view>
  1287. <view id="337" parent="2" name="USER_PRIVILEGES">
  1288. <System>1</System>
  1289. </view>
  1290. <view id="338" parent="2" name="VIEWS">
  1291. <System>1</System>
  1292. </view>
  1293. <column id="339" parent="277" name="CHARACTER_SET_NAME">
  1294. <Position>1</Position>
  1295. <DataType>varchar(64)|0s</DataType>
  1296. <NotNull>1</NotNull>
  1297. </column>
  1298. <column id="340" parent="277" name="DEFAULT_COLLATE_NAME">
  1299. <Position>2</Position>
  1300. <DataType>varchar(64)|0s</DataType>
  1301. <NotNull>1</NotNull>
  1302. </column>
  1303. <column id="341" parent="277" name="DESCRIPTION">
  1304. <Position>3</Position>
  1305. <DataType>varchar(2048)|0s</DataType>
  1306. <NotNull>1</NotNull>
  1307. </column>
  1308. <column id="342" parent="277" name="MAXLEN">
  1309. <Position>4</Position>
  1310. <DataType>int(10) unsigned|0s</DataType>
  1311. <NotNull>1</NotNull>
  1312. </column>
  1313. <column id="343" parent="278" name="COLLATION_NAME">
  1314. <Position>1</Position>
  1315. <DataType>varchar(64)|0s</DataType>
  1316. <NotNull>1</NotNull>
  1317. </column>
  1318. <column id="344" parent="278" name="CHARACTER_SET_NAME">
  1319. <Position>2</Position>
  1320. <DataType>varchar(64)|0s</DataType>
  1321. <NotNull>1</NotNull>
  1322. </column>
  1323. <column id="345" parent="278" name="ID">
  1324. <Position>3</Position>
  1325. <DataType>bigint(20) unsigned|0s</DataType>
  1326. <NotNull>1</NotNull>
  1327. </column>
  1328. <column id="346" parent="278" name="IS_DEFAULT">
  1329. <Position>4</Position>
  1330. <DataType>varchar(3)|0s</DataType>
  1331. <NotNull>1</NotNull>
  1332. </column>
  1333. <column id="347" parent="278" name="IS_COMPILED">
  1334. <Position>5</Position>
  1335. <DataType>varchar(3)|0s</DataType>
  1336. <NotNull>1</NotNull>
  1337. </column>
  1338. <column id="348" parent="278" name="SORTLEN">
  1339. <Position>6</Position>
  1340. <DataType>int(10) unsigned|0s</DataType>
  1341. <NotNull>1</NotNull>
  1342. </column>
  1343. <column id="349" parent="278" name="PAD_ATTRIBUTE">
  1344. <Position>7</Position>
  1345. <DataType>enum(&apos;PAD SPACE&apos;, &apos;NO PAD&apos;)|0e</DataType>
  1346. <NotNull>1</NotNull>
  1347. </column>
  1348. <column id="350" parent="279" name="COLLATION_NAME">
  1349. <Position>1</Position>
  1350. <DataType>varchar(64)|0s</DataType>
  1351. <NotNull>1</NotNull>
  1352. </column>
  1353. <column id="351" parent="279" name="CHARACTER_SET_NAME">
  1354. <Position>2</Position>
  1355. <DataType>varchar(64)|0s</DataType>
  1356. <NotNull>1</NotNull>
  1357. </column>
  1358. <column id="352" parent="280" name="TABLE_CATALOG">
  1359. <Position>1</Position>
  1360. <DataType>varchar(64)|0s</DataType>
  1361. </column>
  1362. <column id="353" parent="280" name="TABLE_SCHEMA">
  1363. <Position>2</Position>
  1364. <DataType>varchar(64)|0s</DataType>
  1365. </column>
  1366. <column id="354" parent="280" name="TABLE_NAME">
  1367. <Position>3</Position>
  1368. <DataType>varchar(64)|0s</DataType>
  1369. </column>
  1370. <column id="355" parent="280" name="COLUMN_NAME">
  1371. <Position>4</Position>
  1372. <DataType>varchar(64)|0s</DataType>
  1373. </column>
  1374. <column id="356" parent="280" name="ORDINAL_POSITION">
  1375. <Position>5</Position>
  1376. <DataType>int(10) unsigned|0s</DataType>
  1377. <NotNull>1</NotNull>
  1378. </column>
  1379. <column id="357" parent="280" name="COLUMN_DEFAULT">
  1380. <Position>6</Position>
  1381. <DataType>text|0s</DataType>
  1382. </column>
  1383. <column id="358" parent="280" name="IS_NULLABLE">
  1384. <Position>7</Position>
  1385. <DataType>varchar(3)|0s</DataType>
  1386. <NotNull>1</NotNull>
  1387. </column>
  1388. <column id="359" parent="280" name="DATA_TYPE">
  1389. <Position>8</Position>
  1390. <DataType>longtext|0s</DataType>
  1391. </column>
  1392. <column id="360" parent="280" name="CHARACTER_MAXIMUM_LENGTH">
  1393. <Position>9</Position>
  1394. <DataType>bigint(21)|0s</DataType>
  1395. </column>
  1396. <column id="361" parent="280" name="CHARACTER_OCTET_LENGTH">
  1397. <Position>10</Position>
  1398. <DataType>bigint(21)|0s</DataType>
  1399. </column>
  1400. <column id="362" parent="280" name="NUMERIC_PRECISION">
  1401. <Position>11</Position>
  1402. <DataType>bigint(10) unsigned|0s</DataType>
  1403. </column>
  1404. <column id="363" parent="280" name="NUMERIC_SCALE">
  1405. <Position>12</Position>
  1406. <DataType>bigint(10) unsigned|0s</DataType>
  1407. </column>
  1408. <column id="364" parent="280" name="DATETIME_PRECISION">
  1409. <Position>13</Position>
  1410. <DataType>int(10) unsigned|0s</DataType>
  1411. </column>
  1412. <column id="365" parent="280" name="CHARACTER_SET_NAME">
  1413. <Position>14</Position>
  1414. <DataType>varchar(64)|0s</DataType>
  1415. </column>
  1416. <column id="366" parent="280" name="COLLATION_NAME">
  1417. <Position>15</Position>
  1418. <DataType>varchar(64)|0s</DataType>
  1419. </column>
  1420. <column id="367" parent="280" name="COLUMN_TYPE">
  1421. <Position>16</Position>
  1422. <DataType>mediumtext|0s</DataType>
  1423. <NotNull>1</NotNull>
  1424. </column>
  1425. <column id="368" parent="280" name="COLUMN_KEY">
  1426. <Position>17</Position>
  1427. <DataType>enum(&apos;&apos;, &apos;PRI&apos;, &apos;UNI&apos;, &apos;MUL&apos;)|0e</DataType>
  1428. <NotNull>1</NotNull>
  1429. </column>
  1430. <column id="369" parent="280" name="EXTRA">
  1431. <Position>18</Position>
  1432. <DataType>varchar(57)|0s</DataType>
  1433. </column>
  1434. <column id="370" parent="280" name="PRIVILEGES">
  1435. <Position>19</Position>
  1436. <DataType>varchar(154)|0s</DataType>
  1437. </column>
  1438. <column id="371" parent="280" name="COLUMN_COMMENT">
  1439. <Position>20</Position>
  1440. <DataType>text|0s</DataType>
  1441. <NotNull>1</NotNull>
  1442. </column>
  1443. <column id="372" parent="280" name="GENERATION_EXPRESSION">
  1444. <Position>21</Position>
  1445. <DataType>longtext|0s</DataType>
  1446. <NotNull>1</NotNull>
  1447. </column>
  1448. <column id="373" parent="280" name="SRS_ID">
  1449. <Position>22</Position>
  1450. <DataType>int(10) unsigned|0s</DataType>
  1451. </column>
  1452. <column id="374" parent="281" name="GRANTEE">
  1453. <Position>1</Position>
  1454. <DataType>varchar(81)|0s</DataType>
  1455. <NotNull>1</NotNull>
  1456. </column>
  1457. <column id="375" parent="281" name="TABLE_CATALOG">
  1458. <Position>2</Position>
  1459. <DataType>varchar(512)|0s</DataType>
  1460. <NotNull>1</NotNull>
  1461. </column>
  1462. <column id="376" parent="281" name="TABLE_SCHEMA">
  1463. <Position>3</Position>
  1464. <DataType>varchar(64)|0s</DataType>
  1465. <NotNull>1</NotNull>
  1466. </column>
  1467. <column id="377" parent="281" name="TABLE_NAME">
  1468. <Position>4</Position>
  1469. <DataType>varchar(64)|0s</DataType>
  1470. <NotNull>1</NotNull>
  1471. </column>
  1472. <column id="378" parent="281" name="COLUMN_NAME">
  1473. <Position>5</Position>
  1474. <DataType>varchar(64)|0s</DataType>
  1475. <NotNull>1</NotNull>
  1476. </column>
  1477. <column id="379" parent="281" name="PRIVILEGE_TYPE">
  1478. <Position>6</Position>
  1479. <DataType>varchar(64)|0s</DataType>
  1480. <NotNull>1</NotNull>
  1481. </column>
  1482. <column id="380" parent="281" name="IS_GRANTABLE">
  1483. <Position>7</Position>
  1484. <DataType>varchar(3)|0s</DataType>
  1485. <NotNull>1</NotNull>
  1486. </column>
  1487. <column id="381" parent="282" name="SCHEMA_NAME">
  1488. <Position>1</Position>
  1489. <DataType>varchar(64)|0s</DataType>
  1490. <NotNull>1</NotNull>
  1491. </column>
  1492. <column id="382" parent="282" name="TABLE_NAME">
  1493. <Position>2</Position>
  1494. <DataType>varchar(64)|0s</DataType>
  1495. <NotNull>1</NotNull>
  1496. </column>
  1497. <column id="383" parent="282" name="COLUMN_NAME">
  1498. <Position>3</Position>
  1499. <DataType>varchar(64)|0s</DataType>
  1500. <NotNull>1</NotNull>
  1501. </column>
  1502. <column id="384" parent="282" name="HISTOGRAM">
  1503. <Position>4</Position>
  1504. <DataType>json|0s</DataType>
  1505. <NotNull>1</NotNull>
  1506. </column>
  1507. <column id="385" parent="283" name="ENGINE">
  1508. <Position>1</Position>
  1509. <DataType>varchar(64)|0s</DataType>
  1510. <NotNull>1</NotNull>
  1511. </column>
  1512. <column id="386" parent="283" name="SUPPORT">
  1513. <Position>2</Position>
  1514. <DataType>varchar(8)|0s</DataType>
  1515. <NotNull>1</NotNull>
  1516. </column>
  1517. <column id="387" parent="283" name="COMMENT">
  1518. <Position>3</Position>
  1519. <DataType>varchar(80)|0s</DataType>
  1520. <NotNull>1</NotNull>
  1521. </column>
  1522. <column id="388" parent="283" name="TRANSACTIONS">
  1523. <Position>4</Position>
  1524. <DataType>varchar(3)|0s</DataType>
  1525. </column>
  1526. <column id="389" parent="283" name="XA">
  1527. <Position>5</Position>
  1528. <DataType>varchar(3)|0s</DataType>
  1529. </column>
  1530. <column id="390" parent="283" name="SAVEPOINTS">
  1531. <Position>6</Position>
  1532. <DataType>varchar(3)|0s</DataType>
  1533. </column>
  1534. <column id="391" parent="284" name="EVENT_CATALOG">
  1535. <Position>1</Position>
  1536. <DataType>varchar(64)|0s</DataType>
  1537. <NotNull>1</NotNull>
  1538. </column>
  1539. <column id="392" parent="284" name="EVENT_SCHEMA">
  1540. <Position>2</Position>
  1541. <DataType>varchar(64)|0s</DataType>
  1542. <NotNull>1</NotNull>
  1543. </column>
  1544. <column id="393" parent="284" name="EVENT_NAME">
  1545. <Position>3</Position>
  1546. <DataType>varchar(64)|0s</DataType>
  1547. <NotNull>1</NotNull>
  1548. </column>
  1549. <column id="394" parent="284" name="DEFINER">
  1550. <Position>4</Position>
  1551. <DataType>varchar(93)|0s</DataType>
  1552. <NotNull>1</NotNull>
  1553. </column>
  1554. <column id="395" parent="284" name="TIME_ZONE">
  1555. <Position>5</Position>
  1556. <DataType>varchar(64)|0s</DataType>
  1557. <NotNull>1</NotNull>
  1558. </column>
  1559. <column id="396" parent="284" name="EVENT_BODY">
  1560. <Position>6</Position>
  1561. <DataType>varchar(3)|0s</DataType>
  1562. <NotNull>1</NotNull>
  1563. </column>
  1564. <column id="397" parent="284" name="EVENT_DEFINITION">
  1565. <Position>7</Position>
  1566. <DataType>longtext|0s</DataType>
  1567. <NotNull>1</NotNull>
  1568. </column>
  1569. <column id="398" parent="284" name="EVENT_TYPE">
  1570. <Position>8</Position>
  1571. <DataType>varchar(9)|0s</DataType>
  1572. <NotNull>1</NotNull>
  1573. </column>
  1574. <column id="399" parent="284" name="EXECUTE_AT">
  1575. <Position>9</Position>
  1576. <DataType>datetime|0s</DataType>
  1577. </column>
  1578. <column id="400" parent="284" name="INTERVAL_VALUE">
  1579. <Position>10</Position>
  1580. <DataType>int(11)|0s</DataType>
  1581. </column>
  1582. <column id="401" parent="284" name="INTERVAL_FIELD">
  1583. <Position>11</Position>
  1584. <DataType>enum(&apos;YEAR&apos;, &apos;QUARTER&apos;, &apos;MONTH&apos;, &apos;DAY&apos;, &apos;HOUR&apos;, &apos;MINUTE&apos;, &apos;WEEK&apos;, &apos;SECOND&apos;, &apos;MICROSECOND&apos;, &apos;YEAR_MONTH&apos;, &apos;DAY_HOUR&apos;, &apos;DAY_MINUTE&apos;, &apos;DAY_SECOND&apos;, &apos;HOUR_MINUTE&apos;, &apos;HOUR_SECOND&apos;, &apos;MINUTE_SECOND&apos;, &apos;DAY_MICROSECOND&apos;, &apos;HOUR_MICROSECOND&apos;, &apos;MINUTE_MICROSECOND&apos;, &apos;SECOND_MICROSECOND&apos;)|0e</DataType>
  1585. </column>
  1586. <column id="402" parent="284" name="SQL_MODE">
  1587. <Position>12</Position>
  1588. <DataType>set(&apos;REAL_AS_FLOAT&apos;, &apos;PIPES_AS_CONCAT&apos;, &apos;ANSI_QUOTES&apos;, &apos;IGNORE_SPACE&apos;, &apos;NOT_USED&apos;, &apos;ONLY_FULL_GROUP_BY&apos;, &apos;NO_UNSIGNED_SUBTRACTION&apos;, &apos;NO_DIR_IN_CREATE&apos;, &apos;NOT_USED_9&apos;, &apos;NOT_USED_10&apos;, &apos;NOT_USED_11&apos;, &apos;NOT_USED_12&apos;, &apos;NOT_USED_13&apos;, &apos;NOT_USED_14&apos;, &apos;NOT_USED_15&apos;, &apos;NOT_USED_16&apos;, &apos;NOT_USED_17&apos;, &apos;NOT_USED_18&apos;, &apos;ANSI&apos;, &apos;NO_AUTO_VALUE_ON_ZERO&apos;, &apos;NO_BACKSLASH_ESCAPES&apos;, &apos;STRICT_TRANS_TABLES&apos;, &apos;STRICT_ALL_TABLES&apos;, &apos;NO_ZERO_IN_DATE&apos;, &apos;NO_ZERO_DATE&apos;, &apos;INVALID_DATES&apos;, &apos;ERROR_FOR_DIVISION_BY_ZERO&apos;, &apos;TRADITIONAL&apos;, &apos;NOT_USED_29&apos;, &apos;HIGH_NOT_PRECEDENCE&apos;, &apos;NO_ENGINE_SUBSTITUTION&apos;, &apos;PAD_CHAR_TO_FULL_LENGTH&apos;, &apos;TIME_TRUNCATE_FRACTIONAL&apos;)|0e</DataType>
  1589. <NotNull>1</NotNull>
  1590. </column>
  1591. <column id="403" parent="284" name="STARTS">
  1592. <Position>13</Position>
  1593. <DataType>datetime|0s</DataType>
  1594. </column>
  1595. <column id="404" parent="284" name="ENDS">
  1596. <Position>14</Position>
  1597. <DataType>datetime|0s</DataType>
  1598. </column>
  1599. <column id="405" parent="284" name="STATUS">
  1600. <Position>15</Position>
  1601. <DataType>enum(&apos;ENABLED&apos;, &apos;DISABLED&apos;, &apos;SLAVESIDE_DISABLED&apos;)|0e</DataType>
  1602. <NotNull>1</NotNull>
  1603. </column>
  1604. <column id="406" parent="284" name="ON_COMPLETION">
  1605. <Position>16</Position>
  1606. <DataType>varchar(12)|0s</DataType>
  1607. <NotNull>1</NotNull>
  1608. </column>
  1609. <column id="407" parent="284" name="CREATED">
  1610. <Position>17</Position>
  1611. <DataType>timestamp|0s</DataType>
  1612. <NotNull>1</NotNull>
  1613. </column>
  1614. <column id="408" parent="284" name="LAST_ALTERED">
  1615. <Position>18</Position>
  1616. <DataType>timestamp|0s</DataType>
  1617. <NotNull>1</NotNull>
  1618. </column>
  1619. <column id="409" parent="284" name="LAST_EXECUTED">
  1620. <Position>19</Position>
  1621. <DataType>datetime|0s</DataType>
  1622. </column>
  1623. <column id="410" parent="284" name="EVENT_COMMENT">
  1624. <Position>20</Position>
  1625. <DataType>varchar(2048)|0s</DataType>
  1626. <NotNull>1</NotNull>
  1627. </column>
  1628. <column id="411" parent="284" name="ORIGINATOR">
  1629. <Position>21</Position>
  1630. <DataType>int(10) unsigned|0s</DataType>
  1631. <NotNull>1</NotNull>
  1632. </column>
  1633. <column id="412" parent="284" name="CHARACTER_SET_CLIENT">
  1634. <Position>22</Position>
  1635. <DataType>varchar(64)|0s</DataType>
  1636. <NotNull>1</NotNull>
  1637. </column>
  1638. <column id="413" parent="284" name="COLLATION_CONNECTION">
  1639. <Position>23</Position>
  1640. <DataType>varchar(64)|0s</DataType>
  1641. <NotNull>1</NotNull>
  1642. </column>
  1643. <column id="414" parent="284" name="DATABASE_COLLATION">
  1644. <Position>24</Position>
  1645. <DataType>varchar(64)|0s</DataType>
  1646. <NotNull>1</NotNull>
  1647. </column>
  1648. <column id="415" parent="285" name="FILE_ID">
  1649. <Position>1</Position>
  1650. <DataType>bigint(21)|0s</DataType>
  1651. </column>
  1652. <column id="416" parent="285" name="FILE_NAME">
  1653. <Position>2</Position>
  1654. <DataType>text|0s</DataType>
  1655. </column>
  1656. <column id="417" parent="285" name="FILE_TYPE">
  1657. <Position>3</Position>
  1658. <DataType>varchar(256)|0s</DataType>
  1659. </column>
  1660. <column id="418" parent="285" name="TABLESPACE_NAME">
  1661. <Position>4</Position>
  1662. <DataType>varchar(259)|0s</DataType>
  1663. <NotNull>1</NotNull>
  1664. </column>
  1665. <column id="419" parent="285" name="TABLE_CATALOG">
  1666. <Position>5</Position>
  1667. <DataType>char(0)|0s</DataType>
  1668. <NotNull>1</NotNull>
  1669. </column>
  1670. <column id="420" parent="285" name="TABLE_SCHEMA">
  1671. <Position>6</Position>
  1672. <DataType>binary(0)|0s</DataType>
  1673. </column>
  1674. <column id="421" parent="285" name="TABLE_NAME">
  1675. <Position>7</Position>
  1676. <DataType>binary(0)|0s</DataType>
  1677. </column>
  1678. <column id="422" parent="285" name="LOGFILE_GROUP_NAME">
  1679. <Position>8</Position>
  1680. <DataType>varchar(256)|0s</DataType>
  1681. </column>
  1682. <column id="423" parent="285" name="LOGFILE_GROUP_NUMBER">
  1683. <Position>9</Position>
  1684. <DataType>bigint(21)|0s</DataType>
  1685. </column>
  1686. <column id="424" parent="285" name="ENGINE">
  1687. <Position>10</Position>
  1688. <DataType>varchar(64)|0s</DataType>
  1689. <NotNull>1</NotNull>
  1690. </column>
  1691. <column id="425" parent="285" name="FULLTEXT_KEYS">
  1692. <Position>11</Position>
  1693. <DataType>binary(0)|0s</DataType>
  1694. </column>
  1695. <column id="426" parent="285" name="DELETED_ROWS">
  1696. <Position>12</Position>
  1697. <DataType>binary(0)|0s</DataType>
  1698. </column>
  1699. <column id="427" parent="285" name="UPDATE_COUNT">
  1700. <Position>13</Position>
  1701. <DataType>binary(0)|0s</DataType>
  1702. </column>
  1703. <column id="428" parent="285" name="FREE_EXTENTS">
  1704. <Position>14</Position>
  1705. <DataType>bigint(21)|0s</DataType>
  1706. </column>
  1707. <column id="429" parent="285" name="TOTAL_EXTENTS">
  1708. <Position>15</Position>
  1709. <DataType>bigint(21)|0s</DataType>
  1710. </column>
  1711. <column id="430" parent="285" name="EXTENT_SIZE">
  1712. <Position>16</Position>
  1713. <DataType>bigint(21)|0s</DataType>
  1714. </column>
  1715. <column id="431" parent="285" name="INITIAL_SIZE">
  1716. <Position>17</Position>
  1717. <DataType>bigint(21)|0s</DataType>
  1718. </column>
  1719. <column id="432" parent="285" name="MAXIMUM_SIZE">
  1720. <Position>18</Position>
  1721. <DataType>bigint(21)|0s</DataType>
  1722. </column>
  1723. <column id="433" parent="285" name="AUTOEXTEND_SIZE">
  1724. <Position>19</Position>
  1725. <DataType>bigint(21)|0s</DataType>
  1726. </column>
  1727. <column id="434" parent="285" name="CREATION_TIME">
  1728. <Position>20</Position>
  1729. <DataType>binary(0)|0s</DataType>
  1730. </column>
  1731. <column id="435" parent="285" name="LAST_UPDATE_TIME">
  1732. <Position>21</Position>
  1733. <DataType>binary(0)|0s</DataType>
  1734. </column>
  1735. <column id="436" parent="285" name="LAST_ACCESS_TIME">
  1736. <Position>22</Position>
  1737. <DataType>binary(0)|0s</DataType>
  1738. </column>
  1739. <column id="437" parent="285" name="RECOVER_TIME">
  1740. <Position>23</Position>
  1741. <DataType>binary(0)|0s</DataType>
  1742. </column>
  1743. <column id="438" parent="285" name="TRANSACTION_COUNTER">
  1744. <Position>24</Position>
  1745. <DataType>binary(0)|0s</DataType>
  1746. </column>
  1747. <column id="439" parent="285" name="VERSION">
  1748. <Position>25</Position>
  1749. <DataType>bigint(21)|0s</DataType>
  1750. </column>
  1751. <column id="440" parent="285" name="ROW_FORMAT">
  1752. <Position>26</Position>
  1753. <DataType>varchar(256)|0s</DataType>
  1754. </column>
  1755. <column id="441" parent="285" name="TABLE_ROWS">
  1756. <Position>27</Position>
  1757. <DataType>binary(0)|0s</DataType>
  1758. </column>
  1759. <column id="442" parent="285" name="AVG_ROW_LENGTH">
  1760. <Position>28</Position>
  1761. <DataType>binary(0)|0s</DataType>
  1762. </column>
  1763. <column id="443" parent="285" name="DATA_LENGTH">
  1764. <Position>29</Position>
  1765. <DataType>binary(0)|0s</DataType>
  1766. </column>
  1767. <column id="444" parent="285" name="MAX_DATA_LENGTH">
  1768. <Position>30</Position>
  1769. <DataType>binary(0)|0s</DataType>
  1770. </column>
  1771. <column id="445" parent="285" name="INDEX_LENGTH">
  1772. <Position>31</Position>
  1773. <DataType>binary(0)|0s</DataType>
  1774. </column>
  1775. <column id="446" parent="285" name="DATA_FREE">
  1776. <Position>32</Position>
  1777. <DataType>bigint(21)|0s</DataType>
  1778. </column>
  1779. <column id="447" parent="285" name="CREATE_TIME">
  1780. <Position>33</Position>
  1781. <DataType>binary(0)|0s</DataType>
  1782. </column>
  1783. <column id="448" parent="285" name="UPDATE_TIME">
  1784. <Position>34</Position>
  1785. <DataType>binary(0)|0s</DataType>
  1786. </column>
  1787. <column id="449" parent="285" name="CHECK_TIME">
  1788. <Position>35</Position>
  1789. <DataType>binary(0)|0s</DataType>
  1790. </column>
  1791. <column id="450" parent="285" name="CHECKSUM">
  1792. <Position>36</Position>
  1793. <DataType>binary(0)|0s</DataType>
  1794. </column>
  1795. <column id="451" parent="285" name="STATUS">
  1796. <Position>37</Position>
  1797. <DataType>varchar(256)|0s</DataType>
  1798. </column>
  1799. <column id="452" parent="285" name="EXTRA">
  1800. <Position>38</Position>
  1801. <DataType>binary(0)|0s</DataType>
  1802. </column>
  1803. <column id="453" parent="286" name="POOL_ID">
  1804. <Position>1</Position>
  1805. <DataType>bigint(21) unsigned|0s</DataType>
  1806. <NotNull>1</NotNull>
  1807. </column>
  1808. <column id="454" parent="286" name="BLOCK_ID">
  1809. <Position>2</Position>
  1810. <DataType>bigint(21) unsigned|0s</DataType>
  1811. <NotNull>1</NotNull>
  1812. </column>
  1813. <column id="455" parent="286" name="SPACE">
  1814. <Position>3</Position>
  1815. <DataType>bigint(21) unsigned|0s</DataType>
  1816. <NotNull>1</NotNull>
  1817. </column>
  1818. <column id="456" parent="286" name="PAGE_NUMBER">
  1819. <Position>4</Position>
  1820. <DataType>bigint(21) unsigned|0s</DataType>
  1821. <NotNull>1</NotNull>
  1822. </column>
  1823. <column id="457" parent="286" name="PAGE_TYPE">
  1824. <Position>5</Position>
  1825. <DataType>varchar(64)|0s</DataType>
  1826. </column>
  1827. <column id="458" parent="286" name="FLUSH_TYPE">
  1828. <Position>6</Position>
  1829. <DataType>bigint(21) unsigned|0s</DataType>
  1830. <NotNull>1</NotNull>
  1831. </column>
  1832. <column id="459" parent="286" name="FIX_COUNT">
  1833. <Position>7</Position>
  1834. <DataType>bigint(21) unsigned|0s</DataType>
  1835. <NotNull>1</NotNull>
  1836. </column>
  1837. <column id="460" parent="286" name="IS_HASHED">
  1838. <Position>8</Position>
  1839. <DataType>varchar(3)|0s</DataType>
  1840. </column>
  1841. <column id="461" parent="286" name="NEWEST_MODIFICATION">
  1842. <Position>9</Position>
  1843. <DataType>bigint(21) unsigned|0s</DataType>
  1844. <NotNull>1</NotNull>
  1845. </column>
  1846. <column id="462" parent="286" name="OLDEST_MODIFICATION">
  1847. <Position>10</Position>
  1848. <DataType>bigint(21) unsigned|0s</DataType>
  1849. <NotNull>1</NotNull>
  1850. </column>
  1851. <column id="463" parent="286" name="ACCESS_TIME">
  1852. <Position>11</Position>
  1853. <DataType>bigint(21) unsigned|0s</DataType>
  1854. <NotNull>1</NotNull>
  1855. </column>
  1856. <column id="464" parent="286" name="TABLE_NAME">
  1857. <Position>12</Position>
  1858. <DataType>varchar(1024)|0s</DataType>
  1859. </column>
  1860. <column id="465" parent="286" name="INDEX_NAME">
  1861. <Position>13</Position>
  1862. <DataType>varchar(1024)|0s</DataType>
  1863. </column>
  1864. <column id="466" parent="286" name="NUMBER_RECORDS">
  1865. <Position>14</Position>
  1866. <DataType>bigint(21) unsigned|0s</DataType>
  1867. <NotNull>1</NotNull>
  1868. </column>
  1869. <column id="467" parent="286" name="DATA_SIZE">
  1870. <Position>15</Position>
  1871. <DataType>bigint(21) unsigned|0s</DataType>
  1872. <NotNull>1</NotNull>
  1873. </column>
  1874. <column id="468" parent="286" name="COMPRESSED_SIZE">
  1875. <Position>16</Position>
  1876. <DataType>bigint(21) unsigned|0s</DataType>
  1877. <NotNull>1</NotNull>
  1878. </column>
  1879. <column id="469" parent="286" name="PAGE_STATE">
  1880. <Position>17</Position>
  1881. <DataType>varchar(64)|0s</DataType>
  1882. </column>
  1883. <column id="470" parent="286" name="IO_FIX">
  1884. <Position>18</Position>
  1885. <DataType>varchar(64)|0s</DataType>
  1886. </column>
  1887. <column id="471" parent="286" name="IS_OLD">
  1888. <Position>19</Position>
  1889. <DataType>varchar(3)|0s</DataType>
  1890. </column>
  1891. <column id="472" parent="286" name="FREE_PAGE_CLOCK">
  1892. <Position>20</Position>
  1893. <DataType>bigint(21) unsigned|0s</DataType>
  1894. <NotNull>1</NotNull>
  1895. </column>
  1896. <column id="473" parent="287" name="POOL_ID">
  1897. <Position>1</Position>
  1898. <DataType>bigint(21) unsigned|0s</DataType>
  1899. <NotNull>1</NotNull>
  1900. </column>
  1901. <column id="474" parent="287" name="LRU_POSITION">
  1902. <Position>2</Position>
  1903. <DataType>bigint(21) unsigned|0s</DataType>
  1904. <NotNull>1</NotNull>
  1905. </column>
  1906. <column id="475" parent="287" name="SPACE">
  1907. <Position>3</Position>
  1908. <DataType>bigint(21) unsigned|0s</DataType>
  1909. <NotNull>1</NotNull>
  1910. </column>
  1911. <column id="476" parent="287" name="PAGE_NUMBER">
  1912. <Position>4</Position>
  1913. <DataType>bigint(21) unsigned|0s</DataType>
  1914. <NotNull>1</NotNull>
  1915. </column>
  1916. <column id="477" parent="287" name="PAGE_TYPE">
  1917. <Position>5</Position>
  1918. <DataType>varchar(64)|0s</DataType>
  1919. </column>
  1920. <column id="478" parent="287" name="FLUSH_TYPE">
  1921. <Position>6</Position>
  1922. <DataType>bigint(21) unsigned|0s</DataType>
  1923. <NotNull>1</NotNull>
  1924. </column>
  1925. <column id="479" parent="287" name="FIX_COUNT">
  1926. <Position>7</Position>
  1927. <DataType>bigint(21) unsigned|0s</DataType>
  1928. <NotNull>1</NotNull>
  1929. </column>
  1930. <column id="480" parent="287" name="IS_HASHED">
  1931. <Position>8</Position>
  1932. <DataType>varchar(3)|0s</DataType>
  1933. </column>
  1934. <column id="481" parent="287" name="NEWEST_MODIFICATION">
  1935. <Position>9</Position>
  1936. <DataType>bigint(21) unsigned|0s</DataType>
  1937. <NotNull>1</NotNull>
  1938. </column>
  1939. <column id="482" parent="287" name="OLDEST_MODIFICATION">
  1940. <Position>10</Position>
  1941. <DataType>bigint(21) unsigned|0s</DataType>
  1942. <NotNull>1</NotNull>
  1943. </column>
  1944. <column id="483" parent="287" name="ACCESS_TIME">
  1945. <Position>11</Position>
  1946. <DataType>bigint(21) unsigned|0s</DataType>
  1947. <NotNull>1</NotNull>
  1948. </column>
  1949. <column id="484" parent="287" name="TABLE_NAME">
  1950. <Position>12</Position>
  1951. <DataType>varchar(1024)|0s</DataType>
  1952. </column>
  1953. <column id="485" parent="287" name="INDEX_NAME">
  1954. <Position>13</Position>
  1955. <DataType>varchar(1024)|0s</DataType>
  1956. </column>
  1957. <column id="486" parent="287" name="NUMBER_RECORDS">
  1958. <Position>14</Position>
  1959. <DataType>bigint(21) unsigned|0s</DataType>
  1960. <NotNull>1</NotNull>
  1961. </column>
  1962. <column id="487" parent="287" name="DATA_SIZE">
  1963. <Position>15</Position>
  1964. <DataType>bigint(21) unsigned|0s</DataType>
  1965. <NotNull>1</NotNull>
  1966. </column>
  1967. <column id="488" parent="287" name="COMPRESSED_SIZE">
  1968. <Position>16</Position>
  1969. <DataType>bigint(21) unsigned|0s</DataType>
  1970. <NotNull>1</NotNull>
  1971. </column>
  1972. <column id="489" parent="287" name="COMPRESSED">
  1973. <Position>17</Position>
  1974. <DataType>varchar(3)|0s</DataType>
  1975. </column>
  1976. <column id="490" parent="287" name="IO_FIX">
  1977. <Position>18</Position>
  1978. <DataType>varchar(64)|0s</DataType>
  1979. </column>
  1980. <column id="491" parent="287" name="IS_OLD">
  1981. <Position>19</Position>
  1982. <DataType>varchar(3)|0s</DataType>
  1983. </column>
  1984. <column id="492" parent="287" name="FREE_PAGE_CLOCK">
  1985. <Position>20</Position>
  1986. <DataType>bigint(21) unsigned|0s</DataType>
  1987. <NotNull>1</NotNull>
  1988. </column>
  1989. <column id="493" parent="288" name="POOL_ID">
  1990. <Position>1</Position>
  1991. <DataType>bigint(21) unsigned|0s</DataType>
  1992. <NotNull>1</NotNull>
  1993. </column>
  1994. <column id="494" parent="288" name="POOL_SIZE">
  1995. <Position>2</Position>
  1996. <DataType>bigint(21) unsigned|0s</DataType>
  1997. <NotNull>1</NotNull>
  1998. </column>
  1999. <column id="495" parent="288" name="FREE_BUFFERS">
  2000. <Position>3</Position>
  2001. <DataType>bigint(21) unsigned|0s</DataType>
  2002. <NotNull>1</NotNull>
  2003. </column>
  2004. <column id="496" parent="288" name="DATABASE_PAGES">
  2005. <Position>4</Position>
  2006. <DataType>bigint(21) unsigned|0s</DataType>
  2007. <NotNull>1</NotNull>
  2008. </column>
  2009. <column id="497" parent="288" name="OLD_DATABASE_PAGES">
  2010. <Position>5</Position>
  2011. <DataType>bigint(21) unsigned|0s</DataType>
  2012. <NotNull>1</NotNull>
  2013. </column>
  2014. <column id="498" parent="288" name="MODIFIED_DATABASE_PAGES">
  2015. <Position>6</Position>
  2016. <DataType>bigint(21) unsigned|0s</DataType>
  2017. <NotNull>1</NotNull>
  2018. </column>
  2019. <column id="499" parent="288" name="PENDING_DECOMPRESS">
  2020. <Position>7</Position>
  2021. <DataType>bigint(21) unsigned|0s</DataType>
  2022. <NotNull>1</NotNull>
  2023. </column>
  2024. <column id="500" parent="288" name="PENDING_READS">
  2025. <Position>8</Position>
  2026. <DataType>bigint(21) unsigned|0s</DataType>
  2027. <NotNull>1</NotNull>
  2028. </column>
  2029. <column id="501" parent="288" name="PENDING_FLUSH_LRU">
  2030. <Position>9</Position>
  2031. <DataType>bigint(21) unsigned|0s</DataType>
  2032. <NotNull>1</NotNull>
  2033. </column>
  2034. <column id="502" parent="288" name="PENDING_FLUSH_LIST">
  2035. <Position>10</Position>
  2036. <DataType>bigint(21) unsigned|0s</DataType>
  2037. <NotNull>1</NotNull>
  2038. </column>
  2039. <column id="503" parent="288" name="PAGES_MADE_YOUNG">
  2040. <Position>11</Position>
  2041. <DataType>bigint(21) unsigned|0s</DataType>
  2042. <NotNull>1</NotNull>
  2043. </column>
  2044. <column id="504" parent="288" name="PAGES_NOT_MADE_YOUNG">
  2045. <Position>12</Position>
  2046. <DataType>bigint(21) unsigned|0s</DataType>
  2047. <NotNull>1</NotNull>
  2048. </column>
  2049. <column id="505" parent="288" name="PAGES_MADE_YOUNG_RATE">
  2050. <Position>13</Position>
  2051. <DataType>float(12)|0s</DataType>
  2052. <NotNull>1</NotNull>
  2053. </column>
  2054. <column id="506" parent="288" name="PAGES_MADE_NOT_YOUNG_RATE">
  2055. <Position>14</Position>
  2056. <DataType>float(12)|0s</DataType>
  2057. <NotNull>1</NotNull>
  2058. </column>
  2059. <column id="507" parent="288" name="NUMBER_PAGES_READ">
  2060. <Position>15</Position>
  2061. <DataType>bigint(21) unsigned|0s</DataType>
  2062. <NotNull>1</NotNull>
  2063. </column>
  2064. <column id="508" parent="288" name="NUMBER_PAGES_CREATED">
  2065. <Position>16</Position>
  2066. <DataType>bigint(21) unsigned|0s</DataType>
  2067. <NotNull>1</NotNull>
  2068. </column>
  2069. <column id="509" parent="288" name="NUMBER_PAGES_WRITTEN">
  2070. <Position>17</Position>
  2071. <DataType>bigint(21) unsigned|0s</DataType>
  2072. <NotNull>1</NotNull>
  2073. </column>
  2074. <column id="510" parent="288" name="PAGES_READ_RATE">
  2075. <Position>18</Position>
  2076. <DataType>float(12)|0s</DataType>
  2077. <NotNull>1</NotNull>
  2078. </column>
  2079. <column id="511" parent="288" name="PAGES_CREATE_RATE">
  2080. <Position>19</Position>
  2081. <DataType>float(12)|0s</DataType>
  2082. <NotNull>1</NotNull>
  2083. </column>
  2084. <column id="512" parent="288" name="PAGES_WRITTEN_RATE">
  2085. <Position>20</Position>
  2086. <DataType>float(12)|0s</DataType>
  2087. <NotNull>1</NotNull>
  2088. </column>
  2089. <column id="513" parent="288" name="NUMBER_PAGES_GET">
  2090. <Position>21</Position>
  2091. <DataType>bigint(21) unsigned|0s</DataType>
  2092. <NotNull>1</NotNull>
  2093. </column>
  2094. <column id="514" parent="288" name="HIT_RATE">
  2095. <Position>22</Position>
  2096. <DataType>bigint(21) unsigned|0s</DataType>
  2097. <NotNull>1</NotNull>
  2098. </column>
  2099. <column id="515" parent="288" name="YOUNG_MAKE_PER_THOUSAND_GETS">
  2100. <Position>23</Position>
  2101. <DataType>bigint(21) unsigned|0s</DataType>
  2102. <NotNull>1</NotNull>
  2103. </column>
  2104. <column id="516" parent="288" name="NOT_YOUNG_MAKE_PER_THOUSAND_GETS">
  2105. <Position>24</Position>
  2106. <DataType>bigint(21) unsigned|0s</DataType>
  2107. <NotNull>1</NotNull>
  2108. </column>
  2109. <column id="517" parent="288" name="NUMBER_PAGES_READ_AHEAD">
  2110. <Position>25</Position>
  2111. <DataType>bigint(21) unsigned|0s</DataType>
  2112. <NotNull>1</NotNull>
  2113. </column>
  2114. <column id="518" parent="288" name="NUMBER_READ_AHEAD_EVICTED">
  2115. <Position>26</Position>
  2116. <DataType>bigint(21) unsigned|0s</DataType>
  2117. <NotNull>1</NotNull>
  2118. </column>
  2119. <column id="519" parent="288" name="READ_AHEAD_RATE">
  2120. <Position>27</Position>
  2121. <DataType>float(12)|0s</DataType>
  2122. <NotNull>1</NotNull>
  2123. </column>
  2124. <column id="520" parent="288" name="READ_AHEAD_EVICTED_RATE">
  2125. <Position>28</Position>
  2126. <DataType>float(12)|0s</DataType>
  2127. <NotNull>1</NotNull>
  2128. </column>
  2129. <column id="521" parent="288" name="LRU_IO_TOTAL">
  2130. <Position>29</Position>
  2131. <DataType>bigint(21) unsigned|0s</DataType>
  2132. <NotNull>1</NotNull>
  2133. </column>
  2134. <column id="522" parent="288" name="LRU_IO_CURRENT">
  2135. <Position>30</Position>
  2136. <DataType>bigint(21) unsigned|0s</DataType>
  2137. <NotNull>1</NotNull>
  2138. </column>
  2139. <column id="523" parent="288" name="UNCOMPRESS_TOTAL">
  2140. <Position>31</Position>
  2141. <DataType>bigint(21) unsigned|0s</DataType>
  2142. <NotNull>1</NotNull>
  2143. </column>
  2144. <column id="524" parent="288" name="UNCOMPRESS_CURRENT">
  2145. <Position>32</Position>
  2146. <DataType>bigint(21) unsigned|0s</DataType>
  2147. <NotNull>1</NotNull>
  2148. </column>
  2149. <column id="525" parent="289" name="SPACE_ID">
  2150. <Position>1</Position>
  2151. <DataType>int(11) unsigned|0s</DataType>
  2152. <NotNull>1</NotNull>
  2153. </column>
  2154. <column id="526" parent="289" name="INDEX_ID">
  2155. <Position>2</Position>
  2156. <DataType>bigint(21) unsigned|0s</DataType>
  2157. <NotNull>1</NotNull>
  2158. </column>
  2159. <column id="527" parent="289" name="N_CACHED_PAGES">
  2160. <Position>3</Position>
  2161. <DataType>bigint(21) unsigned|0s</DataType>
  2162. <NotNull>1</NotNull>
  2163. </column>
  2164. <column id="528" parent="290" name="page_size">
  2165. <Position>1</Position>
  2166. <DataType>int(5)|0s</DataType>
  2167. <NotNull>1</NotNull>
  2168. </column>
  2169. <column id="529" parent="290" name="compress_ops">
  2170. <Position>2</Position>
  2171. <DataType>int(11)|0s</DataType>
  2172. <NotNull>1</NotNull>
  2173. </column>
  2174. <column id="530" parent="290" name="compress_ops_ok">
  2175. <Position>3</Position>
  2176. <DataType>int(11)|0s</DataType>
  2177. <NotNull>1</NotNull>
  2178. </column>
  2179. <column id="531" parent="290" name="compress_time">
  2180. <Position>4</Position>
  2181. <DataType>int(11)|0s</DataType>
  2182. <NotNull>1</NotNull>
  2183. </column>
  2184. <column id="532" parent="290" name="uncompress_ops">
  2185. <Position>5</Position>
  2186. <DataType>int(11)|0s</DataType>
  2187. <NotNull>1</NotNull>
  2188. </column>
  2189. <column id="533" parent="290" name="uncompress_time">
  2190. <Position>6</Position>
  2191. <DataType>int(11)|0s</DataType>
  2192. <NotNull>1</NotNull>
  2193. </column>
  2194. <column id="534" parent="291" name="page_size">
  2195. <Position>1</Position>
  2196. <DataType>int(5)|0s</DataType>
  2197. <NotNull>1</NotNull>
  2198. </column>
  2199. <column id="535" parent="291" name="buffer_pool_instance">
  2200. <Position>2</Position>
  2201. <DataType>int(11)|0s</DataType>
  2202. <NotNull>1</NotNull>
  2203. </column>
  2204. <column id="536" parent="291" name="pages_used">
  2205. <Position>3</Position>
  2206. <DataType>int(11)|0s</DataType>
  2207. <NotNull>1</NotNull>
  2208. </column>
  2209. <column id="537" parent="291" name="pages_free">
  2210. <Position>4</Position>
  2211. <DataType>int(11)|0s</DataType>
  2212. <NotNull>1</NotNull>
  2213. </column>
  2214. <column id="538" parent="291" name="relocation_ops">
  2215. <Position>5</Position>
  2216. <DataType>bigint(21)|0s</DataType>
  2217. <NotNull>1</NotNull>
  2218. </column>
  2219. <column id="539" parent="291" name="relocation_time">
  2220. <Position>6</Position>
  2221. <DataType>int(11)|0s</DataType>
  2222. <NotNull>1</NotNull>
  2223. </column>
  2224. <column id="540" parent="292" name="page_size">
  2225. <Position>1</Position>
  2226. <DataType>int(5)|0s</DataType>
  2227. <NotNull>1</NotNull>
  2228. </column>
  2229. <column id="541" parent="292" name="buffer_pool_instance">
  2230. <Position>2</Position>
  2231. <DataType>int(11)|0s</DataType>
  2232. <NotNull>1</NotNull>
  2233. </column>
  2234. <column id="542" parent="292" name="pages_used">
  2235. <Position>3</Position>
  2236. <DataType>int(11)|0s</DataType>
  2237. <NotNull>1</NotNull>
  2238. </column>
  2239. <column id="543" parent="292" name="pages_free">
  2240. <Position>4</Position>
  2241. <DataType>int(11)|0s</DataType>
  2242. <NotNull>1</NotNull>
  2243. </column>
  2244. <column id="544" parent="292" name="relocation_ops">
  2245. <Position>5</Position>
  2246. <DataType>bigint(21)|0s</DataType>
  2247. <NotNull>1</NotNull>
  2248. </column>
  2249. <column id="545" parent="292" name="relocation_time">
  2250. <Position>6</Position>
  2251. <DataType>int(11)|0s</DataType>
  2252. <NotNull>1</NotNull>
  2253. </column>
  2254. <column id="546" parent="293" name="database_name">
  2255. <Position>1</Position>
  2256. <DataType>varchar(192)|0s</DataType>
  2257. <NotNull>1</NotNull>
  2258. </column>
  2259. <column id="547" parent="293" name="table_name">
  2260. <Position>2</Position>
  2261. <DataType>varchar(192)|0s</DataType>
  2262. <NotNull>1</NotNull>
  2263. </column>
  2264. <column id="548" parent="293" name="index_name">
  2265. <Position>3</Position>
  2266. <DataType>varchar(192)|0s</DataType>
  2267. <NotNull>1</NotNull>
  2268. </column>
  2269. <column id="549" parent="293" name="compress_ops">
  2270. <Position>4</Position>
  2271. <DataType>int(11)|0s</DataType>
  2272. <NotNull>1</NotNull>
  2273. </column>
  2274. <column id="550" parent="293" name="compress_ops_ok">
  2275. <Position>5</Position>
  2276. <DataType>int(11)|0s</DataType>
  2277. <NotNull>1</NotNull>
  2278. </column>
  2279. <column id="551" parent="293" name="compress_time">
  2280. <Position>6</Position>
  2281. <DataType>int(11)|0s</DataType>
  2282. <NotNull>1</NotNull>
  2283. </column>
  2284. <column id="552" parent="293" name="uncompress_ops">
  2285. <Position>7</Position>
  2286. <DataType>int(11)|0s</DataType>
  2287. <NotNull>1</NotNull>
  2288. </column>
  2289. <column id="553" parent="293" name="uncompress_time">
  2290. <Position>8</Position>
  2291. <DataType>int(11)|0s</DataType>
  2292. <NotNull>1</NotNull>
  2293. </column>
  2294. <column id="554" parent="294" name="database_name">
  2295. <Position>1</Position>
  2296. <DataType>varchar(192)|0s</DataType>
  2297. <NotNull>1</NotNull>
  2298. </column>
  2299. <column id="555" parent="294" name="table_name">
  2300. <Position>2</Position>
  2301. <DataType>varchar(192)|0s</DataType>
  2302. <NotNull>1</NotNull>
  2303. </column>
  2304. <column id="556" parent="294" name="index_name">
  2305. <Position>3</Position>
  2306. <DataType>varchar(192)|0s</DataType>
  2307. <NotNull>1</NotNull>
  2308. </column>
  2309. <column id="557" parent="294" name="compress_ops">
  2310. <Position>4</Position>
  2311. <DataType>int(11)|0s</DataType>
  2312. <NotNull>1</NotNull>
  2313. </column>
  2314. <column id="558" parent="294" name="compress_ops_ok">
  2315. <Position>5</Position>
  2316. <DataType>int(11)|0s</DataType>
  2317. <NotNull>1</NotNull>
  2318. </column>
  2319. <column id="559" parent="294" name="compress_time">
  2320. <Position>6</Position>
  2321. <DataType>int(11)|0s</DataType>
  2322. <NotNull>1</NotNull>
  2323. </column>
  2324. <column id="560" parent="294" name="uncompress_ops">
  2325. <Position>7</Position>
  2326. <DataType>int(11)|0s</DataType>
  2327. <NotNull>1</NotNull>
  2328. </column>
  2329. <column id="561" parent="294" name="uncompress_time">
  2330. <Position>8</Position>
  2331. <DataType>int(11)|0s</DataType>
  2332. <NotNull>1</NotNull>
  2333. </column>
  2334. <column id="562" parent="295" name="page_size">
  2335. <Position>1</Position>
  2336. <DataType>int(5)|0s</DataType>
  2337. <NotNull>1</NotNull>
  2338. </column>
  2339. <column id="563" parent="295" name="compress_ops">
  2340. <Position>2</Position>
  2341. <DataType>int(11)|0s</DataType>
  2342. <NotNull>1</NotNull>
  2343. </column>
  2344. <column id="564" parent="295" name="compress_ops_ok">
  2345. <Position>3</Position>
  2346. <DataType>int(11)|0s</DataType>
  2347. <NotNull>1</NotNull>
  2348. </column>
  2349. <column id="565" parent="295" name="compress_time">
  2350. <Position>4</Position>
  2351. <DataType>int(11)|0s</DataType>
  2352. <NotNull>1</NotNull>
  2353. </column>
  2354. <column id="566" parent="295" name="uncompress_ops">
  2355. <Position>5</Position>
  2356. <DataType>int(11)|0s</DataType>
  2357. <NotNull>1</NotNull>
  2358. </column>
  2359. <column id="567" parent="295" name="uncompress_time">
  2360. <Position>6</Position>
  2361. <DataType>int(11)|0s</DataType>
  2362. <NotNull>1</NotNull>
  2363. </column>
  2364. <column id="568" parent="296" name="TABLE_ID">
  2365. <Position>1</Position>
  2366. <DataType>bigint(21) unsigned|0s</DataType>
  2367. <NotNull>1</NotNull>
  2368. </column>
  2369. <column id="569" parent="296" name="NAME">
  2370. <Position>2</Position>
  2371. <DataType>varchar(193)|0s</DataType>
  2372. <NotNull>1</NotNull>
  2373. </column>
  2374. <column id="570" parent="296" name="POS">
  2375. <Position>3</Position>
  2376. <DataType>bigint(21) unsigned|0s</DataType>
  2377. <NotNull>1</NotNull>
  2378. </column>
  2379. <column id="571" parent="296" name="MTYPE">
  2380. <Position>4</Position>
  2381. <DataType>int(11)|0s</DataType>
  2382. <NotNull>1</NotNull>
  2383. </column>
  2384. <column id="572" parent="296" name="PRTYPE">
  2385. <Position>5</Position>
  2386. <DataType>int(11)|0s</DataType>
  2387. <NotNull>1</NotNull>
  2388. </column>
  2389. <column id="573" parent="296" name="LEN">
  2390. <Position>6</Position>
  2391. <DataType>int(11)|0s</DataType>
  2392. <NotNull>1</NotNull>
  2393. </column>
  2394. <column id="574" parent="296" name="HAS_DEFAULT">
  2395. <Position>7</Position>
  2396. <DataType>int(1)|0s</DataType>
  2397. <NotNull>1</NotNull>
  2398. </column>
  2399. <column id="575" parent="296" name="DEFAULT_VALUE">
  2400. <Position>8</Position>
  2401. <DataType>text|0s</DataType>
  2402. </column>
  2403. <column id="576" parent="297" name="SPACE">
  2404. <Position>1</Position>
  2405. <DataType>varbinary(256)|0s</DataType>
  2406. </column>
  2407. <column id="577" parent="297" name="PATH">
  2408. <Position>2</Position>
  2409. <DataType>varchar(512)|0s</DataType>
  2410. <NotNull>1</NotNull>
  2411. </column>
  2412. <column id="578" parent="298" name="INDEX_ID">
  2413. <Position>1</Position>
  2414. <DataType>varbinary(256)|0s</DataType>
  2415. </column>
  2416. <column id="579" parent="298" name="NAME">
  2417. <Position>2</Position>
  2418. <DataType>varchar(64)|0s</DataType>
  2419. <NotNull>1</NotNull>
  2420. </column>
  2421. <column id="580" parent="298" name="POS">
  2422. <Position>3</Position>
  2423. <DataType>bigint(11) unsigned|0s</DataType>
  2424. <NotNull>1</NotNull>
  2425. </column>
  2426. <column id="581" parent="299" name="ID">
  2427. <Position>1</Position>
  2428. <DataType>varchar(129)|0s</DataType>
  2429. </column>
  2430. <column id="582" parent="299" name="FOR_NAME">
  2431. <Position>2</Position>
  2432. <DataType>varchar(129)|0s</DataType>
  2433. </column>
  2434. <column id="583" parent="299" name="REF_NAME">
  2435. <Position>3</Position>
  2436. <DataType>varchar(129)|0s</DataType>
  2437. </column>
  2438. <column id="584" parent="299" name="N_COLS">
  2439. <Position>4</Position>
  2440. <DataType>bigint(21)|0s</DataType>
  2441. <NotNull>1</NotNull>
  2442. </column>
  2443. <column id="585" parent="299" name="TYPE">
  2444. <Position>5</Position>
  2445. <DataType>int(1)|0s</DataType>
  2446. <NotNull>1</NotNull>
  2447. </column>
  2448. <column id="586" parent="300" name="ID">
  2449. <Position>1</Position>
  2450. <DataType>varchar(129)|0s</DataType>
  2451. </column>
  2452. <column id="587" parent="300" name="FOR_COL_NAME">
  2453. <Position>2</Position>
  2454. <DataType>varchar(64)|0s</DataType>
  2455. <NotNull>1</NotNull>
  2456. </column>
  2457. <column id="588" parent="300" name="REF_COL_NAME">
  2458. <Position>3</Position>
  2459. <DataType>varchar(64)|0s</DataType>
  2460. <NotNull>1</NotNull>
  2461. </column>
  2462. <column id="589" parent="300" name="POS">
  2463. <Position>4</Position>
  2464. <DataType>int(10) unsigned|0s</DataType>
  2465. <NotNull>1</NotNull>
  2466. </column>
  2467. <column id="590" parent="301" name="DOC_ID">
  2468. <Position>1</Position>
  2469. <DataType>bigint(21) unsigned|0s</DataType>
  2470. <NotNull>1</NotNull>
  2471. </column>
  2472. <column id="591" parent="302" name="KEY">
  2473. <Position>1</Position>
  2474. <DataType>varchar(193)|0s</DataType>
  2475. <NotNull>1</NotNull>
  2476. </column>
  2477. <column id="592" parent="302" name="VALUE">
  2478. <Position>2</Position>
  2479. <DataType>varchar(193)|0s</DataType>
  2480. <NotNull>1</NotNull>
  2481. </column>
  2482. <column id="593" parent="303" name="value">
  2483. <Position>1</Position>
  2484. <DataType>varchar(18)|0s</DataType>
  2485. <NotNull>1</NotNull>
  2486. </column>
  2487. <column id="594" parent="304" name="DOC_ID">
  2488. <Position>1</Position>
  2489. <DataType>bigint(21) unsigned|0s</DataType>
  2490. <NotNull>1</NotNull>
  2491. </column>
  2492. <column id="595" parent="305" name="WORD">
  2493. <Position>1</Position>
  2494. <DataType>varchar(337)|0s</DataType>
  2495. <NotNull>1</NotNull>
  2496. </column>
  2497. <column id="596" parent="305" name="FIRST_DOC_ID">
  2498. <Position>2</Position>
  2499. <DataType>bigint(21) unsigned|0s</DataType>
  2500. <NotNull>1</NotNull>
  2501. </column>
  2502. <column id="597" parent="305" name="LAST_DOC_ID">
  2503. <Position>3</Position>
  2504. <DataType>bigint(21) unsigned|0s</DataType>
  2505. <NotNull>1</NotNull>
  2506. </column>
  2507. <column id="598" parent="305" name="DOC_COUNT">
  2508. <Position>4</Position>
  2509. <DataType>bigint(21) unsigned|0s</DataType>
  2510. <NotNull>1</NotNull>
  2511. </column>
  2512. <column id="599" parent="305" name="DOC_ID">
  2513. <Position>5</Position>
  2514. <DataType>bigint(21) unsigned|0s</DataType>
  2515. <NotNull>1</NotNull>
  2516. </column>
  2517. <column id="600" parent="305" name="POSITION">
  2518. <Position>6</Position>
  2519. <DataType>bigint(21) unsigned|0s</DataType>
  2520. <NotNull>1</NotNull>
  2521. </column>
  2522. <column id="601" parent="306" name="WORD">
  2523. <Position>1</Position>
  2524. <DataType>varchar(337)|0s</DataType>
  2525. <NotNull>1</NotNull>
  2526. </column>
  2527. <column id="602" parent="306" name="FIRST_DOC_ID">
  2528. <Position>2</Position>
  2529. <DataType>bigint(21) unsigned|0s</DataType>
  2530. <NotNull>1</NotNull>
  2531. </column>
  2532. <column id="603" parent="306" name="LAST_DOC_ID">
  2533. <Position>3</Position>
  2534. <DataType>bigint(21) unsigned|0s</DataType>
  2535. <NotNull>1</NotNull>
  2536. </column>
  2537. <column id="604" parent="306" name="DOC_COUNT">
  2538. <Position>4</Position>
  2539. <DataType>bigint(21) unsigned|0s</DataType>
  2540. <NotNull>1</NotNull>
  2541. </column>
  2542. <column id="605" parent="306" name="DOC_ID">
  2543. <Position>5</Position>
  2544. <DataType>bigint(21) unsigned|0s</DataType>
  2545. <NotNull>1</NotNull>
  2546. </column>
  2547. <column id="606" parent="306" name="POSITION">
  2548. <Position>6</Position>
  2549. <DataType>bigint(21) unsigned|0s</DataType>
  2550. <NotNull>1</NotNull>
  2551. </column>
  2552. <column id="607" parent="307" name="INDEX_ID">
  2553. <Position>1</Position>
  2554. <DataType>bigint(21) unsigned|0s</DataType>
  2555. <NotNull>1</NotNull>
  2556. </column>
  2557. <column id="608" parent="307" name="NAME">
  2558. <Position>2</Position>
  2559. <DataType>varchar(193)|0s</DataType>
  2560. <NotNull>1</NotNull>
  2561. </column>
  2562. <column id="609" parent="307" name="TABLE_ID">
  2563. <Position>3</Position>
  2564. <DataType>bigint(21) unsigned|0s</DataType>
  2565. <NotNull>1</NotNull>
  2566. </column>
  2567. <column id="610" parent="307" name="TYPE">
  2568. <Position>4</Position>
  2569. <DataType>int(11)|0s</DataType>
  2570. <NotNull>1</NotNull>
  2571. </column>
  2572. <column id="611" parent="307" name="N_FIELDS">
  2573. <Position>5</Position>
  2574. <DataType>int(11)|0s</DataType>
  2575. <NotNull>1</NotNull>
  2576. </column>
  2577. <column id="612" parent="307" name="PAGE_NO">
  2578. <Position>6</Position>
  2579. <DataType>int(11)|0s</DataType>
  2580. <NotNull>1</NotNull>
  2581. </column>
  2582. <column id="613" parent="307" name="SPACE">
  2583. <Position>7</Position>
  2584. <DataType>int(11)|0s</DataType>
  2585. <NotNull>1</NotNull>
  2586. </column>
  2587. <column id="614" parent="307" name="MERGE_THRESHOLD">
  2588. <Position>8</Position>
  2589. <DataType>int(11)|0s</DataType>
  2590. <NotNull>1</NotNull>
  2591. </column>
  2592. <column id="615" parent="308" name="NAME">
  2593. <Position>1</Position>
  2594. <DataType>varchar(193)|0s</DataType>
  2595. <NotNull>1</NotNull>
  2596. </column>
  2597. <column id="616" parent="308" name="SUBSYSTEM">
  2598. <Position>2</Position>
  2599. <DataType>varchar(193)|0s</DataType>
  2600. <NotNull>1</NotNull>
  2601. </column>
  2602. <column id="617" parent="308" name="COUNT">
  2603. <Position>3</Position>
  2604. <DataType>bigint(21)|0s</DataType>
  2605. <NotNull>1</NotNull>
  2606. </column>
  2607. <column id="618" parent="308" name="MAX_COUNT">
  2608. <Position>4</Position>
  2609. <DataType>bigint(21)|0s</DataType>
  2610. </column>
  2611. <column id="619" parent="308" name="MIN_COUNT">
  2612. <Position>5</Position>
  2613. <DataType>bigint(21)|0s</DataType>
  2614. </column>
  2615. <column id="620" parent="308" name="AVG_COUNT">
  2616. <Position>6</Position>
  2617. <DataType>float(12)|0s</DataType>
  2618. </column>
  2619. <column id="621" parent="308" name="COUNT_RESET">
  2620. <Position>7</Position>
  2621. <DataType>bigint(21)|0s</DataType>
  2622. <NotNull>1</NotNull>
  2623. </column>
  2624. <column id="622" parent="308" name="MAX_COUNT_RESET">
  2625. <Position>8</Position>
  2626. <DataType>bigint(21)|0s</DataType>
  2627. </column>
  2628. <column id="623" parent="308" name="MIN_COUNT_RESET">
  2629. <Position>9</Position>
  2630. <DataType>bigint(21)|0s</DataType>
  2631. </column>
  2632. <column id="624" parent="308" name="AVG_COUNT_RESET">
  2633. <Position>10</Position>
  2634. <DataType>float(12)|0s</DataType>
  2635. </column>
  2636. <column id="625" parent="308" name="TIME_ENABLED">
  2637. <Position>11</Position>
  2638. <DataType>datetime|0s</DataType>
  2639. </column>
  2640. <column id="626" parent="308" name="TIME_DISABLED">
  2641. <Position>12</Position>
  2642. <DataType>datetime|0s</DataType>
  2643. </column>
  2644. <column id="627" parent="308" name="TIME_ELAPSED">
  2645. <Position>13</Position>
  2646. <DataType>bigint(21)|0s</DataType>
  2647. </column>
  2648. <column id="628" parent="308" name="TIME_RESET">
  2649. <Position>14</Position>
  2650. <DataType>datetime|0s</DataType>
  2651. </column>
  2652. <column id="629" parent="308" name="STATUS">
  2653. <Position>15</Position>
  2654. <DataType>varchar(193)|0s</DataType>
  2655. <NotNull>1</NotNull>
  2656. </column>
  2657. <column id="630" parent="308" name="TYPE">
  2658. <Position>16</Position>
  2659. <DataType>varchar(193)|0s</DataType>
  2660. <NotNull>1</NotNull>
  2661. </column>
  2662. <column id="631" parent="308" name="COMMENT">
  2663. <Position>17</Position>
  2664. <DataType>varchar(193)|0s</DataType>
  2665. <NotNull>1</NotNull>
  2666. </column>
  2667. <column id="632" parent="309" name="TABLE_ID">
  2668. <Position>1</Position>
  2669. <DataType>bigint(21) unsigned|0s</DataType>
  2670. <NotNull>1</NotNull>
  2671. </column>
  2672. <column id="633" parent="309" name="NAME">
  2673. <Position>2</Position>
  2674. <DataType>varchar(655)|0s</DataType>
  2675. <NotNull>1</NotNull>
  2676. </column>
  2677. <column id="634" parent="309" name="FLAG">
  2678. <Position>3</Position>
  2679. <DataType>int(11)|0s</DataType>
  2680. <NotNull>1</NotNull>
  2681. </column>
  2682. <column id="635" parent="309" name="N_COLS">
  2683. <Position>4</Position>
  2684. <DataType>int(11)|0s</DataType>
  2685. <NotNull>1</NotNull>
  2686. </column>
  2687. <column id="636" parent="309" name="SPACE">
  2688. <Position>5</Position>
  2689. <DataType>bigint(21)|0s</DataType>
  2690. <NotNull>1</NotNull>
  2691. </column>
  2692. <column id="637" parent="309" name="ROW_FORMAT">
  2693. <Position>6</Position>
  2694. <DataType>varchar(12)|0s</DataType>
  2695. </column>
  2696. <column id="638" parent="309" name="ZIP_PAGE_SIZE">
  2697. <Position>7</Position>
  2698. <DataType>int(11) unsigned|0s</DataType>
  2699. <NotNull>1</NotNull>
  2700. </column>
  2701. <column id="639" parent="309" name="SPACE_TYPE">
  2702. <Position>8</Position>
  2703. <DataType>varchar(10)|0s</DataType>
  2704. </column>
  2705. <column id="640" parent="309" name="INSTANT_COLS">
  2706. <Position>9</Position>
  2707. <DataType>int(11)|0s</DataType>
  2708. <NotNull>1</NotNull>
  2709. </column>
  2710. <column id="641" parent="310" name="SPACE">
  2711. <Position>1</Position>
  2712. <DataType>int(11) unsigned|0s</DataType>
  2713. <NotNull>1</NotNull>
  2714. </column>
  2715. <column id="642" parent="310" name="NAME">
  2716. <Position>2</Position>
  2717. <DataType>varchar(655)|0s</DataType>
  2718. <NotNull>1</NotNull>
  2719. </column>
  2720. <column id="643" parent="310" name="FLAG">
  2721. <Position>3</Position>
  2722. <DataType>int(11) unsigned|0s</DataType>
  2723. <NotNull>1</NotNull>
  2724. </column>
  2725. <column id="644" parent="310" name="ROW_FORMAT">
  2726. <Position>4</Position>
  2727. <DataType>varchar(22)|0s</DataType>
  2728. </column>
  2729. <column id="645" parent="310" name="PAGE_SIZE">
  2730. <Position>5</Position>
  2731. <DataType>int(11) unsigned|0s</DataType>
  2732. <NotNull>1</NotNull>
  2733. </column>
  2734. <column id="646" parent="310" name="ZIP_PAGE_SIZE">
  2735. <Position>6</Position>
  2736. <DataType>int(11) unsigned|0s</DataType>
  2737. <NotNull>1</NotNull>
  2738. </column>
  2739. <column id="647" parent="310" name="SPACE_TYPE">
  2740. <Position>7</Position>
  2741. <DataType>varchar(10)|0s</DataType>
  2742. </column>
  2743. <column id="648" parent="310" name="FS_BLOCK_SIZE">
  2744. <Position>8</Position>
  2745. <DataType>int(11) unsigned|0s</DataType>
  2746. <NotNull>1</NotNull>
  2747. </column>
  2748. <column id="649" parent="310" name="FILE_SIZE">
  2749. <Position>9</Position>
  2750. <DataType>bigint(21) unsigned|0s</DataType>
  2751. <NotNull>1</NotNull>
  2752. </column>
  2753. <column id="650" parent="310" name="ALLOCATED_SIZE">
  2754. <Position>10</Position>
  2755. <DataType>bigint(21) unsigned|0s</DataType>
  2756. <NotNull>1</NotNull>
  2757. </column>
  2758. <column id="651" parent="310" name="SERVER_VERSION">
  2759. <Position>11</Position>
  2760. <DataType>varchar(10)|0s</DataType>
  2761. </column>
  2762. <column id="652" parent="310" name="SPACE_VERSION">
  2763. <Position>12</Position>
  2764. <DataType>int(11) unsigned|0s</DataType>
  2765. <NotNull>1</NotNull>
  2766. </column>
  2767. <column id="653" parent="311" name="SPACE">
  2768. <Position>1</Position>
  2769. <DataType>varbinary(256)|0s</DataType>
  2770. </column>
  2771. <column id="654" parent="311" name="NAME">
  2772. <Position>2</Position>
  2773. <DataType>varchar(259)|0s</DataType>
  2774. <NotNull>1</NotNull>
  2775. </column>
  2776. <column id="655" parent="311" name="PATH">
  2777. <Position>3</Position>
  2778. <DataType>varchar(512)|0s</DataType>
  2779. <NotNull>1</NotNull>
  2780. </column>
  2781. <column id="656" parent="311" name="FLAG">
  2782. <Position>4</Position>
  2783. <DataType>varbinary(256)|0s</DataType>
  2784. </column>
  2785. <column id="657" parent="311" name="SPACE_TYPE">
  2786. <Position>5</Position>
  2787. <DataType>varchar(7)|0s</DataType>
  2788. <NotNull>1</NotNull>
  2789. </column>
  2790. <column id="658" parent="312" name="TABLE_ID">
  2791. <Position>1</Position>
  2792. <DataType>bigint(21) unsigned|0s</DataType>
  2793. <NotNull>1</NotNull>
  2794. </column>
  2795. <column id="659" parent="312" name="NAME">
  2796. <Position>2</Position>
  2797. <DataType>varchar(193)|0s</DataType>
  2798. <NotNull>1</NotNull>
  2799. </column>
  2800. <column id="660" parent="312" name="STATS_INITIALIZED">
  2801. <Position>3</Position>
  2802. <DataType>varchar(193)|0s</DataType>
  2803. <NotNull>1</NotNull>
  2804. </column>
  2805. <column id="661" parent="312" name="NUM_ROWS">
  2806. <Position>4</Position>
  2807. <DataType>bigint(21) unsigned|0s</DataType>
  2808. <NotNull>1</NotNull>
  2809. </column>
  2810. <column id="662" parent="312" name="CLUST_INDEX_SIZE">
  2811. <Position>5</Position>
  2812. <DataType>bigint(21) unsigned|0s</DataType>
  2813. <NotNull>1</NotNull>
  2814. </column>
  2815. <column id="663" parent="312" name="OTHER_INDEX_SIZE">
  2816. <Position>6</Position>
  2817. <DataType>bigint(21) unsigned|0s</DataType>
  2818. <NotNull>1</NotNull>
  2819. </column>
  2820. <column id="664" parent="312" name="MODIFIED_COUNTER">
  2821. <Position>7</Position>
  2822. <DataType>bigint(21) unsigned|0s</DataType>
  2823. <NotNull>1</NotNull>
  2824. </column>
  2825. <column id="665" parent="312" name="AUTOINC">
  2826. <Position>8</Position>
  2827. <DataType>bigint(21) unsigned|0s</DataType>
  2828. <NotNull>1</NotNull>
  2829. </column>
  2830. <column id="666" parent="312" name="REF_COUNT">
  2831. <Position>9</Position>
  2832. <DataType>int(11)|0s</DataType>
  2833. <NotNull>1</NotNull>
  2834. </column>
  2835. <column id="667" parent="313" name="TABLE_ID">
  2836. <Position>1</Position>
  2837. <DataType>bigint(21) unsigned|0s</DataType>
  2838. <NotNull>1</NotNull>
  2839. </column>
  2840. <column id="668" parent="313" name="NAME">
  2841. <Position>2</Position>
  2842. <DataType>varchar(64)|0s</DataType>
  2843. </column>
  2844. <column id="669" parent="313" name="N_COLS">
  2845. <Position>3</Position>
  2846. <DataType>int(11) unsigned|0s</DataType>
  2847. <NotNull>1</NotNull>
  2848. </column>
  2849. <column id="670" parent="313" name="SPACE">
  2850. <Position>4</Position>
  2851. <DataType>int(11) unsigned|0s</DataType>
  2852. <NotNull>1</NotNull>
  2853. </column>
  2854. <column id="671" parent="314" name="trx_id">
  2855. <Position>1</Position>
  2856. <DataType>varchar(18)|0s</DataType>
  2857. <NotNull>1</NotNull>
  2858. </column>
  2859. <column id="672" parent="314" name="trx_state">
  2860. <Position>2</Position>
  2861. <DataType>varchar(13)|0s</DataType>
  2862. <NotNull>1</NotNull>
  2863. </column>
  2864. <column id="673" parent="314" name="trx_started">
  2865. <Position>3</Position>
  2866. <DataType>datetime|0s</DataType>
  2867. <NotNull>1</NotNull>
  2868. </column>
  2869. <column id="674" parent="314" name="trx_requested_lock_id">
  2870. <Position>4</Position>
  2871. <DataType>varchar(81)|0s</DataType>
  2872. </column>
  2873. <column id="675" parent="314" name="trx_wait_started">
  2874. <Position>5</Position>
  2875. <DataType>datetime|0s</DataType>
  2876. </column>
  2877. <column id="676" parent="314" name="trx_weight">
  2878. <Position>6</Position>
  2879. <DataType>bigint(21) unsigned|0s</DataType>
  2880. <NotNull>1</NotNull>
  2881. </column>
  2882. <column id="677" parent="314" name="trx_mysql_thread_id">
  2883. <Position>7</Position>
  2884. <DataType>bigint(21) unsigned|0s</DataType>
  2885. <NotNull>1</NotNull>
  2886. </column>
  2887. <column id="678" parent="314" name="trx_query">
  2888. <Position>8</Position>
  2889. <DataType>varchar(1024)|0s</DataType>
  2890. </column>
  2891. <column id="679" parent="314" name="trx_operation_state">
  2892. <Position>9</Position>
  2893. <DataType>varchar(64)|0s</DataType>
  2894. </column>
  2895. <column id="680" parent="314" name="trx_tables_in_use">
  2896. <Position>10</Position>
  2897. <DataType>bigint(21) unsigned|0s</DataType>
  2898. <NotNull>1</NotNull>
  2899. </column>
  2900. <column id="681" parent="314" name="trx_tables_locked">
  2901. <Position>11</Position>
  2902. <DataType>bigint(21) unsigned|0s</DataType>
  2903. <NotNull>1</NotNull>
  2904. </column>
  2905. <column id="682" parent="314" name="trx_lock_structs">
  2906. <Position>12</Position>
  2907. <DataType>bigint(21) unsigned|0s</DataType>
  2908. <NotNull>1</NotNull>
  2909. </column>
  2910. <column id="683" parent="314" name="trx_lock_memory_bytes">
  2911. <Position>13</Position>
  2912. <DataType>bigint(21) unsigned|0s</DataType>
  2913. <NotNull>1</NotNull>
  2914. </column>
  2915. <column id="684" parent="314" name="trx_rows_locked">
  2916. <Position>14</Position>
  2917. <DataType>bigint(21) unsigned|0s</DataType>
  2918. <NotNull>1</NotNull>
  2919. </column>
  2920. <column id="685" parent="314" name="trx_rows_modified">
  2921. <Position>15</Position>
  2922. <DataType>bigint(21) unsigned|0s</DataType>
  2923. <NotNull>1</NotNull>
  2924. </column>
  2925. <column id="686" parent="314" name="trx_concurrency_tickets">
  2926. <Position>16</Position>
  2927. <DataType>bigint(21) unsigned|0s</DataType>
  2928. <NotNull>1</NotNull>
  2929. </column>
  2930. <column id="687" parent="314" name="trx_isolation_level">
  2931. <Position>17</Position>
  2932. <DataType>varchar(16)|0s</DataType>
  2933. <NotNull>1</NotNull>
  2934. </column>
  2935. <column id="688" parent="314" name="trx_unique_checks">
  2936. <Position>18</Position>
  2937. <DataType>int(1)|0s</DataType>
  2938. <NotNull>1</NotNull>
  2939. </column>
  2940. <column id="689" parent="314" name="trx_foreign_key_checks">
  2941. <Position>19</Position>
  2942. <DataType>int(1)|0s</DataType>
  2943. <NotNull>1</NotNull>
  2944. </column>
  2945. <column id="690" parent="314" name="trx_last_foreign_key_error">
  2946. <Position>20</Position>
  2947. <DataType>varchar(256)|0s</DataType>
  2948. </column>
  2949. <column id="691" parent="314" name="trx_adaptive_hash_latched">
  2950. <Position>21</Position>
  2951. <DataType>int(1)|0s</DataType>
  2952. <NotNull>1</NotNull>
  2953. </column>
  2954. <column id="692" parent="314" name="trx_adaptive_hash_timeout">
  2955. <Position>22</Position>
  2956. <DataType>bigint(21) unsigned|0s</DataType>
  2957. <NotNull>1</NotNull>
  2958. </column>
  2959. <column id="693" parent="314" name="trx_is_read_only">
  2960. <Position>23</Position>
  2961. <DataType>int(1)|0s</DataType>
  2962. <NotNull>1</NotNull>
  2963. </column>
  2964. <column id="694" parent="314" name="trx_autocommit_non_locking">
  2965. <Position>24</Position>
  2966. <DataType>int(1)|0s</DataType>
  2967. <NotNull>1</NotNull>
  2968. </column>
  2969. <column id="695" parent="315" name="TABLE_ID">
  2970. <Position>1</Position>
  2971. <DataType>bigint(21) unsigned|0s</DataType>
  2972. <NotNull>1</NotNull>
  2973. </column>
  2974. <column id="696" parent="315" name="POS">
  2975. <Position>2</Position>
  2976. <DataType>int(11) unsigned|0s</DataType>
  2977. <NotNull>1</NotNull>
  2978. </column>
  2979. <column id="697" parent="315" name="BASE_POS">
  2980. <Position>3</Position>
  2981. <DataType>int(11) unsigned|0s</DataType>
  2982. <NotNull>1</NotNull>
  2983. </column>
  2984. <column id="698" parent="316" name="WORD">
  2985. <Position>1</Position>
  2986. <DataType>varchar(29)|0s</DataType>
  2987. </column>
  2988. <column id="699" parent="316" name="RESERVED">
  2989. <Position>2</Position>
  2990. <DataType>int(11)|0s</DataType>
  2991. </column>
  2992. <column id="700" parent="317" name="CONSTRAINT_CATALOG">
  2993. <Position>1</Position>
  2994. <DataType>varchar(64)|0s</DataType>
  2995. </column>
  2996. <column id="701" parent="317" name="CONSTRAINT_SCHEMA">
  2997. <Position>2</Position>
  2998. <DataType>varchar(64)|0s</DataType>
  2999. </column>
  3000. <column id="702" parent="317" name="CONSTRAINT_NAME">
  3001. <Position>3</Position>
  3002. <DataType>varchar(64)|0s</DataType>
  3003. </column>
  3004. <column id="703" parent="317" name="TABLE_CATALOG">
  3005. <Position>4</Position>
  3006. <DataType>varchar(64)|0s</DataType>
  3007. </column>
  3008. <column id="704" parent="317" name="TABLE_SCHEMA">
  3009. <Position>5</Position>
  3010. <DataType>varchar(64)|0s</DataType>
  3011. </column>
  3012. <column id="705" parent="317" name="TABLE_NAME">
  3013. <Position>6</Position>
  3014. <DataType>varchar(64)|0s</DataType>
  3015. </column>
  3016. <column id="706" parent="317" name="COLUMN_NAME">
  3017. <Position>7</Position>
  3018. <DataType>varchar(64)|0s</DataType>
  3019. </column>
  3020. <column id="707" parent="317" name="ORDINAL_POSITION">
  3021. <Position>8</Position>
  3022. <DataType>int(10) unsigned|0s</DataType>
  3023. <NotNull>1</NotNull>
  3024. </column>
  3025. <column id="708" parent="317" name="POSITION_IN_UNIQUE_CONSTRAINT">
  3026. <Position>9</Position>
  3027. <DataType>binary(0)|0s</DataType>
  3028. </column>
  3029. <column id="709" parent="317" name="REFERENCED_TABLE_SCHEMA">
  3030. <Position>10</Position>
  3031. <DataType>binary(0)|0s</DataType>
  3032. </column>
  3033. <column id="710" parent="317" name="REFERENCED_TABLE_NAME">
  3034. <Position>11</Position>
  3035. <DataType>binary(0)|0s</DataType>
  3036. </column>
  3037. <column id="711" parent="317" name="REFERENCED_COLUMN_NAME">
  3038. <Position>12</Position>
  3039. <DataType>binary(0)|0s</DataType>
  3040. </column>
  3041. <column id="712" parent="318" name="QUERY">
  3042. <Position>1</Position>
  3043. <DataType>varchar(65535)|0s</DataType>
  3044. <NotNull>1</NotNull>
  3045. </column>
  3046. <column id="713" parent="318" name="TRACE">
  3047. <Position>2</Position>
  3048. <DataType>varchar(65535)|0s</DataType>
  3049. <NotNull>1</NotNull>
  3050. </column>
  3051. <column id="714" parent="318" name="MISSING_BYTES_BEYOND_MAX_MEM_SIZE">
  3052. <Position>3</Position>
  3053. <DataType>int(20)|0s</DataType>
  3054. <NotNull>1</NotNull>
  3055. </column>
  3056. <column id="715" parent="318" name="INSUFFICIENT_PRIVILEGES">
  3057. <Position>4</Position>
  3058. <DataType>tinyint(1)|0s</DataType>
  3059. <NotNull>1</NotNull>
  3060. </column>
  3061. <column id="716" parent="319" name="SPECIFIC_CATALOG">
  3062. <Position>1</Position>
  3063. <DataType>varchar(64)|0s</DataType>
  3064. <NotNull>1</NotNull>
  3065. </column>
  3066. <column id="717" parent="319" name="SPECIFIC_SCHEMA">
  3067. <Position>2</Position>
  3068. <DataType>varchar(64)|0s</DataType>
  3069. <NotNull>1</NotNull>
  3070. </column>
  3071. <column id="718" parent="319" name="SPECIFIC_NAME">
  3072. <Position>3</Position>
  3073. <DataType>varchar(64)|0s</DataType>
  3074. <NotNull>1</NotNull>
  3075. </column>
  3076. <column id="719" parent="319" name="ORDINAL_POSITION">
  3077. <Position>4</Position>
  3078. <DataType>bigint(11) unsigned|0s</DataType>
  3079. <NotNull>1</NotNull>
  3080. </column>
  3081. <column id="720" parent="319" name="PARAMETER_MODE">
  3082. <Position>5</Position>
  3083. <DataType>varchar(5)|0s</DataType>
  3084. </column>
  3085. <column id="721" parent="319" name="PARAMETER_NAME">
  3086. <Position>6</Position>
  3087. <DataType>varchar(64)|0s</DataType>
  3088. </column>
  3089. <column id="722" parent="319" name="DATA_TYPE">
  3090. <Position>7</Position>
  3091. <DataType>longtext|0s</DataType>
  3092. </column>
  3093. <column id="723" parent="319" name="CHARACTER_MAXIMUM_LENGTH">
  3094. <Position>8</Position>
  3095. <DataType>bigint(21)|0s</DataType>
  3096. </column>
  3097. <column id="724" parent="319" name="CHARACTER_OCTET_LENGTH">
  3098. <Position>9</Position>
  3099. <DataType>bigint(21)|0s</DataType>
  3100. </column>
  3101. <column id="725" parent="319" name="NUMERIC_PRECISION">
  3102. <Position>10</Position>
  3103. <DataType>int(10) unsigned|0s</DataType>
  3104. </column>
  3105. <column id="726" parent="319" name="NUMERIC_SCALE">
  3106. <Position>11</Position>
  3107. <DataType>bigint(11)|0s</DataType>
  3108. </column>
  3109. <column id="727" parent="319" name="DATETIME_PRECISION">
  3110. <Position>12</Position>
  3111. <DataType>int(10) unsigned|0s</DataType>
  3112. </column>
  3113. <column id="728" parent="319" name="CHARACTER_SET_NAME">
  3114. <Position>13</Position>
  3115. <DataType>varchar(64)|0s</DataType>
  3116. </column>
  3117. <column id="729" parent="319" name="COLLATION_NAME">
  3118. <Position>14</Position>
  3119. <DataType>varchar(64)|0s</DataType>
  3120. </column>
  3121. <column id="730" parent="319" name="DTD_IDENTIFIER">
  3122. <Position>15</Position>
  3123. <DataType>mediumtext|0s</DataType>
  3124. <NotNull>1</NotNull>
  3125. </column>
  3126. <column id="731" parent="319" name="ROUTINE_TYPE">
  3127. <Position>16</Position>
  3128. <DataType>enum(&apos;FUNCTION&apos;, &apos;PROCEDURE&apos;)|0e</DataType>
  3129. <NotNull>1</NotNull>
  3130. </column>
  3131. <column id="732" parent="320" name="TABLE_CATALOG">
  3132. <Position>1</Position>
  3133. <DataType>varchar(64)|0s</DataType>
  3134. <NotNull>1</NotNull>
  3135. </column>
  3136. <column id="733" parent="320" name="TABLE_SCHEMA">
  3137. <Position>2</Position>
  3138. <DataType>varchar(64)|0s</DataType>
  3139. <NotNull>1</NotNull>
  3140. </column>
  3141. <column id="734" parent="320" name="TABLE_NAME">
  3142. <Position>3</Position>
  3143. <DataType>varchar(64)|0s</DataType>
  3144. <NotNull>1</NotNull>
  3145. </column>
  3146. <column id="735" parent="320" name="PARTITION_NAME">
  3147. <Position>4</Position>
  3148. <DataType>varchar(64)|0s</DataType>
  3149. </column>
  3150. <column id="736" parent="320" name="SUBPARTITION_NAME">
  3151. <Position>5</Position>
  3152. <DataType>varchar(64)|0s</DataType>
  3153. </column>
  3154. <column id="737" parent="320" name="PARTITION_ORDINAL_POSITION">
  3155. <Position>6</Position>
  3156. <DataType>int(6) unsigned|0s</DataType>
  3157. </column>
  3158. <column id="738" parent="320" name="SUBPARTITION_ORDINAL_POSITION">
  3159. <Position>7</Position>
  3160. <DataType>int(6) unsigned|0s</DataType>
  3161. </column>
  3162. <column id="739" parent="320" name="PARTITION_METHOD">
  3163. <Position>8</Position>
  3164. <DataType>varchar(13)|0s</DataType>
  3165. </column>
  3166. <column id="740" parent="320" name="SUBPARTITION_METHOD">
  3167. <Position>9</Position>
  3168. <DataType>varchar(13)|0s</DataType>
  3169. </column>
  3170. <column id="741" parent="320" name="PARTITION_EXPRESSION">
  3171. <Position>10</Position>
  3172. <DataType>varchar(2048)|0s</DataType>
  3173. </column>
  3174. <column id="742" parent="320" name="SUBPARTITION_EXPRESSION">
  3175. <Position>11</Position>
  3176. <DataType>varchar(2048)|0s</DataType>
  3177. </column>
  3178. <column id="743" parent="320" name="PARTITION_DESCRIPTION">
  3179. <Position>12</Position>
  3180. <DataType>text|0s</DataType>
  3181. </column>
  3182. <column id="744" parent="320" name="TABLE_ROWS">
  3183. <Position>13</Position>
  3184. <DataType>bigint(21) unsigned|0s</DataType>
  3185. </column>
  3186. <column id="745" parent="320" name="AVG_ROW_LENGTH">
  3187. <Position>14</Position>
  3188. <DataType>bigint(21) unsigned|0s</DataType>
  3189. </column>
  3190. <column id="746" parent="320" name="DATA_LENGTH">
  3191. <Position>15</Position>
  3192. <DataType>bigint(21) unsigned|0s</DataType>
  3193. </column>
  3194. <column id="747" parent="320" name="MAX_DATA_LENGTH">
  3195. <Position>16</Position>
  3196. <DataType>bigint(21) unsigned|0s</DataType>
  3197. </column>
  3198. <column id="748" parent="320" name="INDEX_LENGTH">
  3199. <Position>17</Position>
  3200. <DataType>bigint(21) unsigned|0s</DataType>
  3201. </column>
  3202. <column id="749" parent="320" name="DATA_FREE">
  3203. <Position>18</Position>
  3204. <DataType>bigint(21) unsigned|0s</DataType>
  3205. </column>
  3206. <column id="750" parent="320" name="CREATE_TIME">
  3207. <Position>19</Position>
  3208. <DataType>timestamp|0s</DataType>
  3209. <NotNull>1</NotNull>
  3210. </column>
  3211. <column id="751" parent="320" name="UPDATE_TIME">
  3212. <Position>20</Position>
  3213. <DataType>datetime|0s</DataType>
  3214. </column>
  3215. <column id="752" parent="320" name="CHECK_TIME">
  3216. <Position>21</Position>
  3217. <DataType>datetime|0s</DataType>
  3218. </column>
  3219. <column id="753" parent="320" name="CHECKSUM">
  3220. <Position>22</Position>
  3221. <DataType>bigint(21)|0s</DataType>
  3222. </column>
  3223. <column id="754" parent="320" name="PARTITION_COMMENT">
  3224. <Position>23</Position>
  3225. <DataType>text|0s</DataType>
  3226. <NotNull>1</NotNull>
  3227. </column>
  3228. <column id="755" parent="320" name="NODEGROUP">
  3229. <Position>24</Position>
  3230. <DataType>varchar(256)|0s</DataType>
  3231. </column>
  3232. <column id="756" parent="320" name="TABLESPACE_NAME">
  3233. <Position>25</Position>
  3234. <DataType>varchar(259)|0s</DataType>
  3235. </column>
  3236. <column id="757" parent="321" name="PLUGIN_NAME">
  3237. <Position>1</Position>
  3238. <DataType>varchar(64)|0s</DataType>
  3239. <NotNull>1</NotNull>
  3240. </column>
  3241. <column id="758" parent="321" name="PLUGIN_VERSION">
  3242. <Position>2</Position>
  3243. <DataType>varchar(20)|0s</DataType>
  3244. <NotNull>1</NotNull>
  3245. </column>
  3246. <column id="759" parent="321" name="PLUGIN_STATUS">
  3247. <Position>3</Position>
  3248. <DataType>varchar(10)|0s</DataType>
  3249. <NotNull>1</NotNull>
  3250. </column>
  3251. <column id="760" parent="321" name="PLUGIN_TYPE">
  3252. <Position>4</Position>
  3253. <DataType>varchar(80)|0s</DataType>
  3254. <NotNull>1</NotNull>
  3255. </column>
  3256. <column id="761" parent="321" name="PLUGIN_TYPE_VERSION">
  3257. <Position>5</Position>
  3258. <DataType>varchar(20)|0s</DataType>
  3259. <NotNull>1</NotNull>
  3260. </column>
  3261. <column id="762" parent="321" name="PLUGIN_LIBRARY">
  3262. <Position>6</Position>
  3263. <DataType>varchar(64)|0s</DataType>
  3264. </column>
  3265. <column id="763" parent="321" name="PLUGIN_LIBRARY_VERSION">
  3266. <Position>7</Position>
  3267. <DataType>varchar(20)|0s</DataType>
  3268. </column>
  3269. <column id="764" parent="321" name="PLUGIN_AUTHOR">
  3270. <Position>8</Position>
  3271. <DataType>varchar(64)|0s</DataType>
  3272. </column>
  3273. <column id="765" parent="321" name="PLUGIN_DESCRIPTION">
  3274. <Position>9</Position>
  3275. <DataType>varchar(65535)|0s</DataType>
  3276. </column>
  3277. <column id="766" parent="321" name="PLUGIN_LICENSE">
  3278. <Position>10</Position>
  3279. <DataType>varchar(80)|0s</DataType>
  3280. </column>
  3281. <column id="767" parent="321" name="LOAD_OPTION">
  3282. <Position>11</Position>
  3283. <DataType>varchar(64)|0s</DataType>
  3284. <NotNull>1</NotNull>
  3285. </column>
  3286. <column id="768" parent="322" name="ID">
  3287. <Position>1</Position>
  3288. <DataType>bigint(21) unsigned|0s</DataType>
  3289. <NotNull>1</NotNull>
  3290. </column>
  3291. <column id="769" parent="322" name="USER">
  3292. <Position>2</Position>
  3293. <DataType>varchar(32)|0s</DataType>
  3294. <NotNull>1</NotNull>
  3295. </column>
  3296. <column id="770" parent="322" name="HOST">
  3297. <Position>3</Position>
  3298. <DataType>varchar(64)|0s</DataType>
  3299. <NotNull>1</NotNull>
  3300. </column>
  3301. <column id="771" parent="322" name="DB">
  3302. <Position>4</Position>
  3303. <DataType>varchar(64)|0s</DataType>
  3304. </column>
  3305. <column id="772" parent="322" name="COMMAND">
  3306. <Position>5</Position>
  3307. <DataType>varchar(16)|0s</DataType>
  3308. <NotNull>1</NotNull>
  3309. </column>
  3310. <column id="773" parent="322" name="TIME">
  3311. <Position>6</Position>
  3312. <DataType>int(7)|0s</DataType>
  3313. <NotNull>1</NotNull>
  3314. </column>
  3315. <column id="774" parent="322" name="STATE">
  3316. <Position>7</Position>
  3317. <DataType>varchar(64)|0s</DataType>
  3318. </column>
  3319. <column id="775" parent="322" name="INFO">
  3320. <Position>8</Position>
  3321. <DataType>varchar(65535)|0s</DataType>
  3322. </column>
  3323. <column id="776" parent="323" name="QUERY_ID">
  3324. <Position>1</Position>
  3325. <DataType>int(20)|0s</DataType>
  3326. <NotNull>1</NotNull>
  3327. </column>
  3328. <column id="777" parent="323" name="SEQ">
  3329. <Position>2</Position>
  3330. <DataType>int(20)|0s</DataType>
  3331. <NotNull>1</NotNull>
  3332. </column>
  3333. <column id="778" parent="323" name="STATE">
  3334. <Position>3</Position>
  3335. <DataType>varchar(30)|0s</DataType>
  3336. <NotNull>1</NotNull>
  3337. </column>
  3338. <column id="779" parent="323" name="DURATION">
  3339. <Position>4</Position>
  3340. <DataType>decimal(905)|0s</DataType>
  3341. <NotNull>1</NotNull>
  3342. </column>
  3343. <column id="780" parent="323" name="CPU_USER">
  3344. <Position>5</Position>
  3345. <DataType>decimal(905)|0s</DataType>
  3346. </column>
  3347. <column id="781" parent="323" name="CPU_SYSTEM">
  3348. <Position>6</Position>
  3349. <DataType>decimal(905)|0s</DataType>
  3350. </column>
  3351. <column id="782" parent="323" name="CONTEXT_VOLUNTARY">
  3352. <Position>7</Position>
  3353. <DataType>int(20)|0s</DataType>
  3354. </column>
  3355. <column id="783" parent="323" name="CONTEXT_INVOLUNTARY">
  3356. <Position>8</Position>
  3357. <DataType>int(20)|0s</DataType>
  3358. </column>
  3359. <column id="784" parent="323" name="BLOCK_OPS_IN">
  3360. <Position>9</Position>
  3361. <DataType>int(20)|0s</DataType>
  3362. </column>
  3363. <column id="785" parent="323" name="BLOCK_OPS_OUT">
  3364. <Position>10</Position>
  3365. <DataType>int(20)|0s</DataType>
  3366. </column>
  3367. <column id="786" parent="323" name="MESSAGES_SENT">
  3368. <Position>11</Position>
  3369. <DataType>int(20)|0s</DataType>
  3370. </column>
  3371. <column id="787" parent="323" name="MESSAGES_RECEIVED">
  3372. <Position>12</Position>
  3373. <DataType>int(20)|0s</DataType>
  3374. </column>
  3375. <column id="788" parent="323" name="PAGE_FAULTS_MAJOR">
  3376. <Position>13</Position>
  3377. <DataType>int(20)|0s</DataType>
  3378. </column>
  3379. <column id="789" parent="323" name="PAGE_FAULTS_MINOR">
  3380. <Position>14</Position>
  3381. <DataType>int(20)|0s</DataType>
  3382. </column>
  3383. <column id="790" parent="323" name="SWAPS">
  3384. <Position>15</Position>
  3385. <DataType>int(20)|0s</DataType>
  3386. </column>
  3387. <column id="791" parent="323" name="SOURCE_FUNCTION">
  3388. <Position>16</Position>
  3389. <DataType>varchar(30)|0s</DataType>
  3390. </column>
  3391. <column id="792" parent="323" name="SOURCE_FILE">
  3392. <Position>17</Position>
  3393. <DataType>varchar(20)|0s</DataType>
  3394. </column>
  3395. <column id="793" parent="323" name="SOURCE_LINE">
  3396. <Position>18</Position>
  3397. <DataType>int(20)|0s</DataType>
  3398. </column>
  3399. <column id="794" parent="324" name="CONSTRAINT_CATALOG">
  3400. <Position>1</Position>
  3401. <DataType>varchar(64)|0s</DataType>
  3402. <NotNull>1</NotNull>
  3403. </column>
  3404. <column id="795" parent="324" name="CONSTRAINT_SCHEMA">
  3405. <Position>2</Position>
  3406. <DataType>varchar(64)|0s</DataType>
  3407. <NotNull>1</NotNull>
  3408. </column>
  3409. <column id="796" parent="324" name="CONSTRAINT_NAME">
  3410. <Position>3</Position>
  3411. <DataType>varchar(64)|0s</DataType>
  3412. <NotNull>1</NotNull>
  3413. </column>
  3414. <column id="797" parent="324" name="UNIQUE_CONSTRAINT_CATALOG">
  3415. <Position>4</Position>
  3416. <DataType>varchar(64)|0s</DataType>
  3417. <NotNull>1</NotNull>
  3418. </column>
  3419. <column id="798" parent="324" name="UNIQUE_CONSTRAINT_SCHEMA">
  3420. <Position>5</Position>
  3421. <DataType>varchar(64)|0s</DataType>
  3422. <NotNull>1</NotNull>
  3423. </column>
  3424. <column id="799" parent="324" name="UNIQUE_CONSTRAINT_NAME">
  3425. <Position>6</Position>
  3426. <DataType>varchar(64)|0s</DataType>
  3427. </column>
  3428. <column id="800" parent="324" name="MATCH_OPTION">
  3429. <Position>7</Position>
  3430. <DataType>enum(&apos;NONE&apos;, &apos;PARTIAL&apos;, &apos;FULL&apos;)|0e</DataType>
  3431. <NotNull>1</NotNull>
  3432. </column>
  3433. <column id="801" parent="324" name="UPDATE_RULE">
  3434. <Position>8</Position>
  3435. <DataType>enum(&apos;NO ACTION&apos;, &apos;RESTRICT&apos;, &apos;CASCADE&apos;, &apos;SET NULL&apos;, &apos;SET DEFAULT&apos;)|0e</DataType>
  3436. <NotNull>1</NotNull>
  3437. </column>
  3438. <column id="802" parent="324" name="DELETE_RULE">
  3439. <Position>9</Position>
  3440. <DataType>enum(&apos;NO ACTION&apos;, &apos;RESTRICT&apos;, &apos;CASCADE&apos;, &apos;SET NULL&apos;, &apos;SET DEFAULT&apos;)|0e</DataType>
  3441. <NotNull>1</NotNull>
  3442. </column>
  3443. <column id="803" parent="324" name="TABLE_NAME">
  3444. <Position>10</Position>
  3445. <DataType>varchar(64)|0s</DataType>
  3446. <NotNull>1</NotNull>
  3447. </column>
  3448. <column id="804" parent="324" name="REFERENCED_TABLE_NAME">
  3449. <Position>11</Position>
  3450. <DataType>varchar(64)|0s</DataType>
  3451. <NotNull>1</NotNull>
  3452. </column>
  3453. <column id="805" parent="325" name="RESOURCE_GROUP_NAME">
  3454. <Position>1</Position>
  3455. <DataType>varchar(64)|0s</DataType>
  3456. <NotNull>1</NotNull>
  3457. </column>
  3458. <column id="806" parent="325" name="RESOURCE_GROUP_TYPE">
  3459. <Position>2</Position>
  3460. <DataType>enum(&apos;SYSTEM&apos;, &apos;USER&apos;)|0e</DataType>
  3461. <NotNull>1</NotNull>
  3462. </column>
  3463. <column id="807" parent="325" name="RESOURCE_GROUP_ENABLED">
  3464. <Position>3</Position>
  3465. <DataType>tinyint(1)|0s</DataType>
  3466. <NotNull>1</NotNull>
  3467. </column>
  3468. <column id="808" parent="325" name="VCPU_IDS">
  3469. <Position>4</Position>
  3470. <DataType>blob|0s</DataType>
  3471. </column>
  3472. <column id="809" parent="325" name="THREAD_PRIORITY">
  3473. <Position>5</Position>
  3474. <DataType>int(11)|0s</DataType>
  3475. <NotNull>1</NotNull>
  3476. </column>
  3477. <column id="810" parent="326" name="SPECIFIC_NAME">
  3478. <Position>1</Position>
  3479. <DataType>varchar(64)|0s</DataType>
  3480. <NotNull>1</NotNull>
  3481. </column>
  3482. <column id="811" parent="326" name="ROUTINE_CATALOG">
  3483. <Position>2</Position>
  3484. <DataType>varchar(64)|0s</DataType>
  3485. <NotNull>1</NotNull>
  3486. </column>
  3487. <column id="812" parent="326" name="ROUTINE_SCHEMA">
  3488. <Position>3</Position>
  3489. <DataType>varchar(64)|0s</DataType>
  3490. <NotNull>1</NotNull>
  3491. </column>
  3492. <column id="813" parent="326" name="ROUTINE_NAME">
  3493. <Position>4</Position>
  3494. <DataType>varchar(64)|0s</DataType>
  3495. <NotNull>1</NotNull>
  3496. </column>
  3497. <column id="814" parent="326" name="ROUTINE_TYPE">
  3498. <Position>5</Position>
  3499. <DataType>enum(&apos;FUNCTION&apos;, &apos;PROCEDURE&apos;)|0e</DataType>
  3500. <NotNull>1</NotNull>
  3501. </column>
  3502. <column id="815" parent="326" name="DATA_TYPE">
  3503. <Position>6</Position>
  3504. <DataType>longtext|0s</DataType>
  3505. </column>
  3506. <column id="816" parent="326" name="CHARACTER_MAXIMUM_LENGTH">
  3507. <Position>7</Position>
  3508. <DataType>bigint(21)|0s</DataType>
  3509. </column>
  3510. <column id="817" parent="326" name="CHARACTER_OCTET_LENGTH">
  3511. <Position>8</Position>
  3512. <DataType>bigint(21)|0s</DataType>
  3513. </column>
  3514. <column id="818" parent="326" name="NUMERIC_PRECISION">
  3515. <Position>9</Position>
  3516. <DataType>int(10) unsigned|0s</DataType>
  3517. </column>
  3518. <column id="819" parent="326" name="NUMERIC_SCALE">
  3519. <Position>10</Position>
  3520. <DataType>int(10) unsigned|0s</DataType>
  3521. </column>
  3522. <column id="820" parent="326" name="DATETIME_PRECISION">
  3523. <Position>11</Position>
  3524. <DataType>int(10) unsigned|0s</DataType>
  3525. </column>
  3526. <column id="821" parent="326" name="CHARACTER_SET_NAME">
  3527. <Position>12</Position>
  3528. <DataType>varchar(64)|0s</DataType>
  3529. </column>
  3530. <column id="822" parent="326" name="COLLATION_NAME">
  3531. <Position>13</Position>
  3532. <DataType>varchar(64)|0s</DataType>
  3533. </column>
  3534. <column id="823" parent="326" name="DTD_IDENTIFIER">
  3535. <Position>14</Position>
  3536. <DataType>longtext|0s</DataType>
  3537. </column>
  3538. <column id="824" parent="326" name="ROUTINE_BODY">
  3539. <Position>15</Position>
  3540. <DataType>varchar(3)|0s</DataType>
  3541. <NotNull>1</NotNull>
  3542. </column>
  3543. <column id="825" parent="326" name="ROUTINE_DEFINITION">
  3544. <Position>16</Position>
  3545. <DataType>longtext|0s</DataType>
  3546. </column>
  3547. <column id="826" parent="326" name="EXTERNAL_NAME">
  3548. <Position>17</Position>
  3549. <DataType>binary(0)|0s</DataType>
  3550. </column>
  3551. <column id="827" parent="326" name="EXTERNAL_LANGUAGE">
  3552. <Position>18</Position>
  3553. <DataType>varchar(64)|0s</DataType>
  3554. <NotNull>1</NotNull>
  3555. </column>
  3556. <column id="828" parent="326" name="PARAMETER_STYLE">
  3557. <Position>19</Position>
  3558. <DataType>varchar(3)|0s</DataType>
  3559. <NotNull>1</NotNull>
  3560. </column>
  3561. <column id="829" parent="326" name="IS_DETERMINISTIC">
  3562. <Position>20</Position>
  3563. <DataType>varchar(3)|0s</DataType>
  3564. <NotNull>1</NotNull>
  3565. </column>
  3566. <column id="830" parent="326" name="SQL_DATA_ACCESS">
  3567. <Position>21</Position>
  3568. <DataType>enum(&apos;CONTAINS SQL&apos;, &apos;NO SQL&apos;, &apos;READS SQL DATA&apos;, &apos;MODIFIES SQL DATA&apos;)|0e</DataType>
  3569. <NotNull>1</NotNull>
  3570. </column>
  3571. <column id="831" parent="326" name="SQL_PATH">
  3572. <Position>22</Position>
  3573. <DataType>binary(0)|0s</DataType>
  3574. </column>
  3575. <column id="832" parent="326" name="SECURITY_TYPE">
  3576. <Position>23</Position>
  3577. <DataType>enum(&apos;DEFAULT&apos;, &apos;INVOKER&apos;, &apos;DEFINER&apos;)|0e</DataType>
  3578. <NotNull>1</NotNull>
  3579. </column>
  3580. <column id="833" parent="326" name="CREATED">
  3581. <Position>24</Position>
  3582. <DataType>timestamp|0s</DataType>
  3583. <NotNull>1</NotNull>
  3584. </column>
  3585. <column id="834" parent="326" name="LAST_ALTERED">
  3586. <Position>25</Position>
  3587. <DataType>timestamp|0s</DataType>
  3588. <NotNull>1</NotNull>
  3589. </column>
  3590. <column id="835" parent="326" name="SQL_MODE">
  3591. <Position>26</Position>
  3592. <DataType>set(&apos;REAL_AS_FLOAT&apos;, &apos;PIPES_AS_CONCAT&apos;, &apos;ANSI_QUOTES&apos;, &apos;IGNORE_SPACE&apos;, &apos;NOT_USED&apos;, &apos;ONLY_FULL_GROUP_BY&apos;, &apos;NO_UNSIGNED_SUBTRACTION&apos;, &apos;NO_DIR_IN_CREATE&apos;, &apos;NOT_USED_9&apos;, &apos;NOT_USED_10&apos;, &apos;NOT_USED_11&apos;, &apos;NOT_USED_12&apos;, &apos;NOT_USED_13&apos;, &apos;NOT_USED_14&apos;, &apos;NOT_USED_15&apos;, &apos;NOT_USED_16&apos;, &apos;NOT_USED_17&apos;, &apos;NOT_USED_18&apos;, &apos;ANSI&apos;, &apos;NO_AUTO_VALUE_ON_ZERO&apos;, &apos;NO_BACKSLASH_ESCAPES&apos;, &apos;STRICT_TRANS_TABLES&apos;, &apos;STRICT_ALL_TABLES&apos;, &apos;NO_ZERO_IN_DATE&apos;, &apos;NO_ZERO_DATE&apos;, &apos;INVALID_DATES&apos;, &apos;ERROR_FOR_DIVISION_BY_ZERO&apos;, &apos;TRADITIONAL&apos;, &apos;NOT_USED_29&apos;, &apos;HIGH_NOT_PRECEDENCE&apos;, &apos;NO_ENGINE_SUBSTITUTION&apos;, &apos;PAD_CHAR_TO_FULL_LENGTH&apos;, &apos;TIME_TRUNCATE_FRACTIONAL&apos;)|0e</DataType>
  3593. <NotNull>1</NotNull>
  3594. </column>
  3595. <column id="836" parent="326" name="ROUTINE_COMMENT">
  3596. <Position>27</Position>
  3597. <DataType>text|0s</DataType>
  3598. <NotNull>1</NotNull>
  3599. </column>
  3600. <column id="837" parent="326" name="DEFINER">
  3601. <Position>28</Position>
  3602. <DataType>varchar(93)|0s</DataType>
  3603. <NotNull>1</NotNull>
  3604. </column>
  3605. <column id="838" parent="326" name="CHARACTER_SET_CLIENT">
  3606. <Position>29</Position>
  3607. <DataType>varchar(64)|0s</DataType>
  3608. <NotNull>1</NotNull>
  3609. </column>
  3610. <column id="839" parent="326" name="COLLATION_CONNECTION">
  3611. <Position>30</Position>
  3612. <DataType>varchar(64)|0s</DataType>
  3613. <NotNull>1</NotNull>
  3614. </column>
  3615. <column id="840" parent="326" name="DATABASE_COLLATION">
  3616. <Position>31</Position>
  3617. <DataType>varchar(64)|0s</DataType>
  3618. <NotNull>1</NotNull>
  3619. </column>
  3620. <column id="841" parent="327" name="CATALOG_NAME">
  3621. <Position>1</Position>
  3622. <DataType>varchar(64)|0s</DataType>
  3623. </column>
  3624. <column id="842" parent="327" name="SCHEMA_NAME">
  3625. <Position>2</Position>
  3626. <DataType>varchar(64)|0s</DataType>
  3627. </column>
  3628. <column id="843" parent="327" name="DEFAULT_CHARACTER_SET_NAME">
  3629. <Position>3</Position>
  3630. <DataType>varchar(64)|0s</DataType>
  3631. <NotNull>1</NotNull>
  3632. </column>
  3633. <column id="844" parent="327" name="DEFAULT_COLLATION_NAME">
  3634. <Position>4</Position>
  3635. <DataType>varchar(64)|0s</DataType>
  3636. <NotNull>1</NotNull>
  3637. </column>
  3638. <column id="845" parent="327" name="SQL_PATH">
  3639. <Position>5</Position>
  3640. <DataType>binary(0)|0s</DataType>
  3641. </column>
  3642. <column id="846" parent="328" name="GRANTEE">
  3643. <Position>1</Position>
  3644. <DataType>varchar(81)|0s</DataType>
  3645. <NotNull>1</NotNull>
  3646. </column>
  3647. <column id="847" parent="328" name="TABLE_CATALOG">
  3648. <Position>2</Position>
  3649. <DataType>varchar(512)|0s</DataType>
  3650. <NotNull>1</NotNull>
  3651. </column>
  3652. <column id="848" parent="328" name="TABLE_SCHEMA">
  3653. <Position>3</Position>
  3654. <DataType>varchar(64)|0s</DataType>
  3655. <NotNull>1</NotNull>
  3656. </column>
  3657. <column id="849" parent="328" name="PRIVILEGE_TYPE">
  3658. <Position>4</Position>
  3659. <DataType>varchar(64)|0s</DataType>
  3660. <NotNull>1</NotNull>
  3661. </column>
  3662. <column id="850" parent="328" name="IS_GRANTABLE">
  3663. <Position>5</Position>
  3664. <DataType>varchar(3)|0s</DataType>
  3665. <NotNull>1</NotNull>
  3666. </column>
  3667. <column id="851" parent="329" name="TABLE_CATALOG">
  3668. <Position>1</Position>
  3669. <DataType>varchar(64)|0s</DataType>
  3670. </column>
  3671. <column id="852" parent="329" name="TABLE_SCHEMA">
  3672. <Position>2</Position>
  3673. <DataType>varchar(64)|0s</DataType>
  3674. </column>
  3675. <column id="853" parent="329" name="TABLE_NAME">
  3676. <Position>3</Position>
  3677. <DataType>varchar(64)|0s</DataType>
  3678. </column>
  3679. <column id="854" parent="329" name="NON_UNIQUE">
  3680. <Position>4</Position>
  3681. <DataType>int(1)|0s</DataType>
  3682. <NotNull>1</NotNull>
  3683. </column>
  3684. <column id="855" parent="329" name="INDEX_SCHEMA">
  3685. <Position>5</Position>
  3686. <DataType>varchar(64)|0s</DataType>
  3687. </column>
  3688. <column id="856" parent="329" name="INDEX_NAME">
  3689. <Position>6</Position>
  3690. <DataType>varchar(64)|0s</DataType>
  3691. </column>
  3692. <column id="857" parent="329" name="SEQ_IN_INDEX">
  3693. <Position>7</Position>
  3694. <DataType>int(10) unsigned|0s</DataType>
  3695. <NotNull>1</NotNull>
  3696. </column>
  3697. <column id="858" parent="329" name="COLUMN_NAME">
  3698. <Position>8</Position>
  3699. <DataType>varchar(64)|0s</DataType>
  3700. </column>
  3701. <column id="859" parent="329" name="COLLATION">
  3702. <Position>9</Position>
  3703. <DataType>varchar(1)|0s</DataType>
  3704. </column>
  3705. <column id="860" parent="329" name="CARDINALITY">
  3706. <Position>10</Position>
  3707. <DataType>bigint(21)|0s</DataType>
  3708. </column>
  3709. <column id="861" parent="329" name="SUB_PART">
  3710. <Position>11</Position>
  3711. <DataType>bigint(21)|0s</DataType>
  3712. </column>
  3713. <column id="862" parent="329" name="PACKED">
  3714. <Position>12</Position>
  3715. <DataType>binary(0)|0s</DataType>
  3716. </column>
  3717. <column id="863" parent="329" name="NULLABLE">
  3718. <Position>13</Position>
  3719. <DataType>varchar(3)|0s</DataType>
  3720. <NotNull>1</NotNull>
  3721. </column>
  3722. <column id="864" parent="329" name="INDEX_TYPE">
  3723. <Position>14</Position>
  3724. <DataType>varchar(11)|0s</DataType>
  3725. <NotNull>1</NotNull>
  3726. </column>
  3727. <column id="865" parent="329" name="COMMENT">
  3728. <Position>15</Position>
  3729. <DataType>varchar(8)|0s</DataType>
  3730. <NotNull>1</NotNull>
  3731. </column>
  3732. <column id="866" parent="329" name="INDEX_COMMENT">
  3733. <Position>16</Position>
  3734. <DataType>varchar(2048)|0s</DataType>
  3735. <NotNull>1</NotNull>
  3736. </column>
  3737. <column id="867" parent="329" name="IS_VISIBLE">
  3738. <Position>17</Position>
  3739. <DataType>varchar(3)|0s</DataType>
  3740. <NotNull>1</NotNull>
  3741. </column>
  3742. <column id="868" parent="330" name="TABLE_CATALOG">
  3743. <Position>1</Position>
  3744. <DataType>varchar(64)|0s</DataType>
  3745. </column>
  3746. <column id="869" parent="330" name="TABLE_SCHEMA">
  3747. <Position>2</Position>
  3748. <DataType>varchar(64)|0s</DataType>
  3749. </column>
  3750. <column id="870" parent="330" name="TABLE_NAME">
  3751. <Position>3</Position>
  3752. <DataType>varchar(64)|0s</DataType>
  3753. </column>
  3754. <column id="871" parent="330" name="COLUMN_NAME">
  3755. <Position>4</Position>
  3756. <DataType>varchar(64)|0s</DataType>
  3757. </column>
  3758. <column id="872" parent="330" name="SRS_NAME">
  3759. <Position>5</Position>
  3760. <DataType>varchar(80)|0s</DataType>
  3761. </column>
  3762. <column id="873" parent="330" name="SRS_ID">
  3763. <Position>6</Position>
  3764. <DataType>int(10) unsigned|0s</DataType>
  3765. </column>
  3766. <column id="874" parent="330" name="GEOMETRY_TYPE_NAME">
  3767. <Position>7</Position>
  3768. <DataType>longtext|0s</DataType>
  3769. </column>
  3770. <column id="875" parent="331" name="SRS_NAME">
  3771. <Position>1</Position>
  3772. <DataType>varchar(80)|0s</DataType>
  3773. <NotNull>1</NotNull>
  3774. </column>
  3775. <column id="876" parent="331" name="SRS_ID">
  3776. <Position>2</Position>
  3777. <DataType>int(10) unsigned|0s</DataType>
  3778. <NotNull>1</NotNull>
  3779. </column>
  3780. <column id="877" parent="331" name="ORGANIZATION">
  3781. <Position>3</Position>
  3782. <DataType>varchar(256)|0s</DataType>
  3783. </column>
  3784. <column id="878" parent="331" name="ORGANIZATION_COORDSYS_ID">
  3785. <Position>4</Position>
  3786. <DataType>int(10) unsigned|0s</DataType>
  3787. </column>
  3788. <column id="879" parent="331" name="DEFINITION">
  3789. <Position>5</Position>
  3790. <DataType>varchar(4096)|0s</DataType>
  3791. <NotNull>1</NotNull>
  3792. </column>
  3793. <column id="880" parent="331" name="DESCRIPTION">
  3794. <Position>6</Position>
  3795. <DataType>varchar(2048)|0s</DataType>
  3796. </column>
  3797. <column id="881" parent="332" name="TABLE_CATALOG">
  3798. <Position>1</Position>
  3799. <DataType>varchar(64)|0s</DataType>
  3800. </column>
  3801. <column id="882" parent="332" name="TABLE_SCHEMA">
  3802. <Position>2</Position>
  3803. <DataType>varchar(64)|0s</DataType>
  3804. </column>
  3805. <column id="883" parent="332" name="TABLE_NAME">
  3806. <Position>3</Position>
  3807. <DataType>varchar(64)|0s</DataType>
  3808. </column>
  3809. <column id="884" parent="332" name="TABLE_TYPE">
  3810. <Position>4</Position>
  3811. <DataType>enum(&apos;BASE TABLE&apos;, &apos;VIEW&apos;, &apos;SYSTEM VIEW&apos;)|0e</DataType>
  3812. <NotNull>1</NotNull>
  3813. </column>
  3814. <column id="885" parent="332" name="ENGINE">
  3815. <Position>5</Position>
  3816. <DataType>varchar(64)|0s</DataType>
  3817. </column>
  3818. <column id="886" parent="332" name="VERSION">
  3819. <Position>6</Position>
  3820. <DataType>int(2)|0s</DataType>
  3821. </column>
  3822. <column id="887" parent="332" name="ROW_FORMAT">
  3823. <Position>7</Position>
  3824. <DataType>enum(&apos;Fixed&apos;, &apos;Dynamic&apos;, &apos;Compressed&apos;, &apos;Redundant&apos;, &apos;Compact&apos;, &apos;Paged&apos;)|0e</DataType>
  3825. </column>
  3826. <column id="888" parent="332" name="TABLE_ROWS">
  3827. <Position>8</Position>
  3828. <DataType>bigint(21) unsigned|0s</DataType>
  3829. </column>
  3830. <column id="889" parent="332" name="AVG_ROW_LENGTH">
  3831. <Position>9</Position>
  3832. <DataType>bigint(21) unsigned|0s</DataType>
  3833. </column>
  3834. <column id="890" parent="332" name="DATA_LENGTH">
  3835. <Position>10</Position>
  3836. <DataType>bigint(21) unsigned|0s</DataType>
  3837. </column>
  3838. <column id="891" parent="332" name="MAX_DATA_LENGTH">
  3839. <Position>11</Position>
  3840. <DataType>bigint(21) unsigned|0s</DataType>
  3841. </column>
  3842. <column id="892" parent="332" name="INDEX_LENGTH">
  3843. <Position>12</Position>
  3844. <DataType>bigint(21) unsigned|0s</DataType>
  3845. </column>
  3846. <column id="893" parent="332" name="DATA_FREE">
  3847. <Position>13</Position>
  3848. <DataType>bigint(21) unsigned|0s</DataType>
  3849. </column>
  3850. <column id="894" parent="332" name="AUTO_INCREMENT">
  3851. <Position>14</Position>
  3852. <DataType>bigint(21) unsigned|0s</DataType>
  3853. </column>
  3854. <column id="895" parent="332" name="CREATE_TIME">
  3855. <Position>15</Position>
  3856. <DataType>timestamp|0s</DataType>
  3857. <NotNull>1</NotNull>
  3858. </column>
  3859. <column id="896" parent="332" name="UPDATE_TIME">
  3860. <Position>16</Position>
  3861. <DataType>datetime|0s</DataType>
  3862. </column>
  3863. <column id="897" parent="332" name="CHECK_TIME">
  3864. <Position>17</Position>
  3865. <DataType>datetime|0s</DataType>
  3866. </column>
  3867. <column id="898" parent="332" name="TABLE_COLLATION">
  3868. <Position>18</Position>
  3869. <DataType>varchar(64)|0s</DataType>
  3870. </column>
  3871. <column id="899" parent="332" name="CHECKSUM">
  3872. <Position>19</Position>
  3873. <DataType>bigint(21)|0s</DataType>
  3874. </column>
  3875. <column id="900" parent="332" name="CREATE_OPTIONS">
  3876. <Position>20</Position>
  3877. <DataType>varchar(256)|0s</DataType>
  3878. </column>
  3879. <column id="901" parent="332" name="TABLE_COMMENT">
  3880. <Position>21</Position>
  3881. <DataType>varchar(256)|0s</DataType>
  3882. </column>
  3883. <column id="902" parent="333" name="TABLESPACE_NAME">
  3884. <Position>1</Position>
  3885. <DataType>varchar(64)|0s</DataType>
  3886. <NotNull>1</NotNull>
  3887. </column>
  3888. <column id="903" parent="333" name="ENGINE">
  3889. <Position>2</Position>
  3890. <DataType>varchar(64)|0s</DataType>
  3891. <NotNull>1</NotNull>
  3892. </column>
  3893. <column id="904" parent="333" name="TABLESPACE_TYPE">
  3894. <Position>3</Position>
  3895. <DataType>varchar(64)|0s</DataType>
  3896. </column>
  3897. <column id="905" parent="333" name="LOGFILE_GROUP_NAME">
  3898. <Position>4</Position>
  3899. <DataType>varchar(64)|0s</DataType>
  3900. </column>
  3901. <column id="906" parent="333" name="EXTENT_SIZE">
  3902. <Position>5</Position>
  3903. <DataType>bigint(21) unsigned|0s</DataType>
  3904. </column>
  3905. <column id="907" parent="333" name="AUTOEXTEND_SIZE">
  3906. <Position>6</Position>
  3907. <DataType>bigint(21) unsigned|0s</DataType>
  3908. </column>
  3909. <column id="908" parent="333" name="MAXIMUM_SIZE">
  3910. <Position>7</Position>
  3911. <DataType>bigint(21) unsigned|0s</DataType>
  3912. </column>
  3913. <column id="909" parent="333" name="NODEGROUP_ID">
  3914. <Position>8</Position>
  3915. <DataType>bigint(21) unsigned|0s</DataType>
  3916. </column>
  3917. <column id="910" parent="333" name="TABLESPACE_COMMENT">
  3918. <Position>9</Position>
  3919. <DataType>varchar(2048)|0s</DataType>
  3920. </column>
  3921. <column id="911" parent="334" name="CONSTRAINT_CATALOG">
  3922. <Position>1</Position>
  3923. <DataType>varchar(64)|0s</DataType>
  3924. </column>
  3925. <column id="912" parent="334" name="CONSTRAINT_SCHEMA">
  3926. <Position>2</Position>
  3927. <DataType>varchar(64)|0s</DataType>
  3928. </column>
  3929. <column id="913" parent="334" name="CONSTRAINT_NAME">
  3930. <Position>3</Position>
  3931. <DataType>varchar(64)|0s</DataType>
  3932. </column>
  3933. <column id="914" parent="334" name="TABLE_SCHEMA">
  3934. <Position>4</Position>
  3935. <DataType>varchar(64)|0s</DataType>
  3936. </column>
  3937. <column id="915" parent="334" name="TABLE_NAME">
  3938. <Position>5</Position>
  3939. <DataType>varchar(64)|0s</DataType>
  3940. </column>
  3941. <column id="916" parent="334" name="CONSTRAINT_TYPE">
  3942. <Position>6</Position>
  3943. <DataType>varchar(11)|0s</DataType>
  3944. <NotNull>1</NotNull>
  3945. </column>
  3946. <column id="917" parent="335" name="GRANTEE">
  3947. <Position>1</Position>
  3948. <DataType>varchar(81)|0s</DataType>
  3949. <NotNull>1</NotNull>
  3950. </column>
  3951. <column id="918" parent="335" name="TABLE_CATALOG">
  3952. <Position>2</Position>
  3953. <DataType>varchar(512)|0s</DataType>
  3954. <NotNull>1</NotNull>
  3955. </column>
  3956. <column id="919" parent="335" name="TABLE_SCHEMA">
  3957. <Position>3</Position>
  3958. <DataType>varchar(64)|0s</DataType>
  3959. <NotNull>1</NotNull>
  3960. </column>
  3961. <column id="920" parent="335" name="TABLE_NAME">
  3962. <Position>4</Position>
  3963. <DataType>varchar(64)|0s</DataType>
  3964. <NotNull>1</NotNull>
  3965. </column>
  3966. <column id="921" parent="335" name="PRIVILEGE_TYPE">
  3967. <Position>5</Position>
  3968. <DataType>varchar(64)|0s</DataType>
  3969. <NotNull>1</NotNull>
  3970. </column>
  3971. <column id="922" parent="335" name="IS_GRANTABLE">
  3972. <Position>6</Position>
  3973. <DataType>varchar(3)|0s</DataType>
  3974. <NotNull>1</NotNull>
  3975. </column>
  3976. <column id="923" parent="336" name="TRIGGER_CATALOG">
  3977. <Position>1</Position>
  3978. <DataType>varchar(64)|0s</DataType>
  3979. <NotNull>1</NotNull>
  3980. </column>
  3981. <column id="924" parent="336" name="TRIGGER_SCHEMA">
  3982. <Position>2</Position>
  3983. <DataType>varchar(64)|0s</DataType>
  3984. <NotNull>1</NotNull>
  3985. </column>
  3986. <column id="925" parent="336" name="TRIGGER_NAME">
  3987. <Position>3</Position>
  3988. <DataType>varchar(64)|0s</DataType>
  3989. <NotNull>1</NotNull>
  3990. </column>
  3991. <column id="926" parent="336" name="EVENT_MANIPULATION">
  3992. <Position>4</Position>
  3993. <DataType>enum(&apos;INSERT&apos;, &apos;UPDATE&apos;, &apos;DELETE&apos;)|0e</DataType>
  3994. <NotNull>1</NotNull>
  3995. </column>
  3996. <column id="927" parent="336" name="EVENT_OBJECT_CATALOG">
  3997. <Position>5</Position>
  3998. <DataType>varchar(64)|0s</DataType>
  3999. <NotNull>1</NotNull>
  4000. </column>
  4001. <column id="928" parent="336" name="EVENT_OBJECT_SCHEMA">
  4002. <Position>6</Position>
  4003. <DataType>varchar(64)|0s</DataType>
  4004. <NotNull>1</NotNull>
  4005. </column>
  4006. <column id="929" parent="336" name="EVENT_OBJECT_TABLE">
  4007. <Position>7</Position>
  4008. <DataType>varchar(64)|0s</DataType>
  4009. <NotNull>1</NotNull>
  4010. </column>
  4011. <column id="930" parent="336" name="ACTION_ORDER">
  4012. <Position>8</Position>
  4013. <DataType>int(10) unsigned|0s</DataType>
  4014. <NotNull>1</NotNull>
  4015. </column>
  4016. <column id="931" parent="336" name="ACTION_CONDITION">
  4017. <Position>9</Position>
  4018. <DataType>binary(0)|0s</DataType>
  4019. </column>
  4020. <column id="932" parent="336" name="ACTION_STATEMENT">
  4021. <Position>10</Position>
  4022. <DataType>longtext|0s</DataType>
  4023. <NotNull>1</NotNull>
  4024. </column>
  4025. <column id="933" parent="336" name="ACTION_ORIENTATION">
  4026. <Position>11</Position>
  4027. <DataType>varchar(3)|0s</DataType>
  4028. <NotNull>1</NotNull>
  4029. </column>
  4030. <column id="934" parent="336" name="ACTION_TIMING">
  4031. <Position>12</Position>
  4032. <DataType>enum(&apos;BEFORE&apos;, &apos;AFTER&apos;)|0e</DataType>
  4033. <NotNull>1</NotNull>
  4034. </column>
  4035. <column id="935" parent="336" name="ACTION_REFERENCE_OLD_TABLE">
  4036. <Position>13</Position>
  4037. <DataType>binary(0)|0s</DataType>
  4038. </column>
  4039. <column id="936" parent="336" name="ACTION_REFERENCE_NEW_TABLE">
  4040. <Position>14</Position>
  4041. <DataType>binary(0)|0s</DataType>
  4042. </column>
  4043. <column id="937" parent="336" name="ACTION_REFERENCE_OLD_ROW">
  4044. <Position>15</Position>
  4045. <DataType>varchar(3)|0s</DataType>
  4046. <NotNull>1</NotNull>
  4047. </column>
  4048. <column id="938" parent="336" name="ACTION_REFERENCE_NEW_ROW">
  4049. <Position>16</Position>
  4050. <DataType>varchar(3)|0s</DataType>
  4051. <NotNull>1</NotNull>
  4052. </column>
  4053. <column id="939" parent="336" name="CREATED">
  4054. <Position>17</Position>
  4055. <DataType>timestamp(2)|0s</DataType>
  4056. <NotNull>1</NotNull>
  4057. </column>
  4058. <column id="940" parent="336" name="SQL_MODE">
  4059. <Position>18</Position>
  4060. <DataType>set(&apos;REAL_AS_FLOAT&apos;, &apos;PIPES_AS_CONCAT&apos;, &apos;ANSI_QUOTES&apos;, &apos;IGNORE_SPACE&apos;, &apos;NOT_USED&apos;, &apos;ONLY_FULL_GROUP_BY&apos;, &apos;NO_UNSIGNED_SUBTRACTION&apos;, &apos;NO_DIR_IN_CREATE&apos;, &apos;NOT_USED_9&apos;, &apos;NOT_USED_10&apos;, &apos;NOT_USED_11&apos;, &apos;NOT_USED_12&apos;, &apos;NOT_USED_13&apos;, &apos;NOT_USED_14&apos;, &apos;NOT_USED_15&apos;, &apos;NOT_USED_16&apos;, &apos;NOT_USED_17&apos;, &apos;NOT_USED_18&apos;, &apos;ANSI&apos;, &apos;NO_AUTO_VALUE_ON_ZERO&apos;, &apos;NO_BACKSLASH_ESCAPES&apos;, &apos;STRICT_TRANS_TABLES&apos;, &apos;STRICT_ALL_TABLES&apos;, &apos;NO_ZERO_IN_DATE&apos;, &apos;NO_ZERO_DATE&apos;, &apos;INVALID_DATES&apos;, &apos;ERROR_FOR_DIVISION_BY_ZERO&apos;, &apos;TRADITIONAL&apos;, &apos;NOT_USED_29&apos;, &apos;HIGH_NOT_PRECEDENCE&apos;, &apos;NO_ENGINE_SUBSTITUTION&apos;, &apos;PAD_CHAR_TO_FULL_LENGTH&apos;)|0e</DataType>
  4061. <NotNull>1</NotNull>
  4062. </column>
  4063. <column id="941" parent="336" name="DEFINER">
  4064. <Position>19</Position>
  4065. <DataType>varchar(93)|0s</DataType>
  4066. <NotNull>1</NotNull>
  4067. </column>
  4068. <column id="942" parent="336" name="CHARACTER_SET_CLIENT">
  4069. <Position>20</Position>
  4070. <DataType>varchar(64)|0s</DataType>
  4071. <NotNull>1</NotNull>
  4072. </column>
  4073. <column id="943" parent="336" name="COLLATION_CONNECTION">
  4074. <Position>21</Position>
  4075. <DataType>varchar(64)|0s</DataType>
  4076. <NotNull>1</NotNull>
  4077. </column>
  4078. <column id="944" parent="336" name="DATABASE_COLLATION">
  4079. <Position>22</Position>
  4080. <DataType>varchar(64)|0s</DataType>
  4081. <NotNull>1</NotNull>
  4082. </column>
  4083. <column id="945" parent="337" name="GRANTEE">
  4084. <Position>1</Position>
  4085. <DataType>varchar(81)|0s</DataType>
  4086. <NotNull>1</NotNull>
  4087. </column>
  4088. <column id="946" parent="337" name="TABLE_CATALOG">
  4089. <Position>2</Position>
  4090. <DataType>varchar(512)|0s</DataType>
  4091. <NotNull>1</NotNull>
  4092. </column>
  4093. <column id="947" parent="337" name="PRIVILEGE_TYPE">
  4094. <Position>3</Position>
  4095. <DataType>varchar(64)|0s</DataType>
  4096. <NotNull>1</NotNull>
  4097. </column>
  4098. <column id="948" parent="337" name="IS_GRANTABLE">
  4099. <Position>4</Position>
  4100. <DataType>varchar(3)|0s</DataType>
  4101. <NotNull>1</NotNull>
  4102. </column>
  4103. <column id="949" parent="338" name="TABLE_CATALOG">
  4104. <Position>1</Position>
  4105. <DataType>varchar(64)|0s</DataType>
  4106. </column>
  4107. <column id="950" parent="338" name="TABLE_SCHEMA">
  4108. <Position>2</Position>
  4109. <DataType>varchar(64)|0s</DataType>
  4110. </column>
  4111. <column id="951" parent="338" name="TABLE_NAME">
  4112. <Position>3</Position>
  4113. <DataType>varchar(64)|0s</DataType>
  4114. </column>
  4115. <column id="952" parent="338" name="VIEW_DEFINITION">
  4116. <Position>4</Position>
  4117. <DataType>longtext|0s</DataType>
  4118. </column>
  4119. <column id="953" parent="338" name="CHECK_OPTION">
  4120. <Position>5</Position>
  4121. <DataType>enum(&apos;NONE&apos;, &apos;LOCAL&apos;, &apos;CASCADED&apos;)|0e</DataType>
  4122. </column>
  4123. <column id="954" parent="338" name="IS_UPDATABLE">
  4124. <Position>6</Position>
  4125. <DataType>enum(&apos;NO&apos;, &apos;YES&apos;)|0e</DataType>
  4126. </column>
  4127. <column id="955" parent="338" name="DEFINER">
  4128. <Position>7</Position>
  4129. <DataType>varchar(93)|0s</DataType>
  4130. </column>
  4131. <column id="956" parent="338" name="SECURITY_TYPE">
  4132. <Position>8</Position>
  4133. <DataType>varchar(7)|0s</DataType>
  4134. </column>
  4135. <column id="957" parent="338" name="CHARACTER_SET_CLIENT">
  4136. <Position>9</Position>
  4137. <DataType>varchar(64)|0s</DataType>
  4138. <NotNull>1</NotNull>
  4139. </column>
  4140. <column id="958" parent="338" name="COLLATION_CONNECTION">
  4141. <Position>10</Position>
  4142. <DataType>varchar(64)|0s</DataType>
  4143. <NotNull>1</NotNull>
  4144. </column>
  4145. </database-model>
  4146. </dataSource>