my_create_tables.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:25k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #include <stdio.h>
  2. #include <errno.h>
  3. #ifndef __WIN__
  4. #include <dirent.h>
  5. #endif
  6. #include <string.h>
  7. #ifdef __NETWARE__
  8. #include <screen.h>
  9. #include <proc.h>
  10. #else
  11. #include <sys/types.h>
  12. #ifndef __WIN__
  13. #include <sys/wait.h>
  14. #include <unistd.h>
  15. #else
  16. #include <direct.h>
  17. #include <stdlib.h>
  18. #include <stdio.h>
  19. #endif
  20. #endif
  21. #include <ctype.h>
  22. #include <sys/stat.h>
  23. #include <fcntl.h>
  24. #include <assert.h>
  25. #include "my_manage.h"
  26. /*
  27.  Synopsis:
  28.   This function testes a exist file 
  29. Arguments:
  30.   mdata:       path to data
  31.   file_name:   name of file
  32. Output:
  33.   A zero value indicates that file is exist. 
  34. */
  35. bool test_sys_file(const char *mdata,const char *file_name)
  36. {
  37.   struct stat file;
  38.   char path_file_name[PATH_MAX];
  39.   snprintf(path_file_name, PATH_MAX, "%s/%s", mdata, file_name);
  40.   return(stat(path_file_name,&file));
  41. }
  42. /*
  43.  Synopsis:
  44.   This function creates a file with sql requstes for creating 
  45.   system data files.
  46. Arguments:
  47.   mdata:         path to data
  48.   output_file:   file name for output file
  49.   test:          to create system files with test data
  50. Output:
  51.   A zero value indicates a success. 
  52. */
  53. bool create_system_files(const char *mdata,const char *output_file, bool test)
  54. {
  55.   FILE *out;
  56.   out = fopen(output_file, "w+");
  57.   if (!out)
  58.     return 1;
  59.   
  60.   if (test_sys_file(mdata,"mysql"))
  61.   {
  62.     fprintf(out,"CREATE DATABASE mysql;n");
  63.   }
  64.   if (test && test_sys_file(mdata,"test"))
  65.   {
  66.     fprintf(out,"CREATE DATABASE test;n");
  67.   }
  68.   fprintf(out,"USE mysql;n");
  69.   if (test_sys_file(mdata,"mysql/db.frm"))
  70.   {
  71.     fprintf(out,
  72.       "CREATE TABLE db ("
  73.       "Host char(60) binary DEFAULT '' NOT NULL,"
  74.       "Db char(64) binary DEFAULT '' NOT NULL,"
  75.       "User char(16) binary DEFAULT '' NOT NULL,"
  76.       "Select_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  77.       "Insert_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  78.       "Update_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  79.       "Delete_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  80.       "Create_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  81.       "Drop_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  82.       "Grant_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  83.       "References_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  84.       "Index_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  85.       "Alter_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  86.       "Create_tmp_table_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  87.       "Lock_tables_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  88.       "PRIMARY KEY Host (Host,Db,User),"
  89.       "KEY User (User))"
  90.       "engine=MyISAM "
  91.       "CHARACTER SET utf8 COLLATE utf8_bin "
  92.       "comment='Database privileges';n");
  93.     if (test)
  94.     {
  95.       fprintf(out,"INSERT INTO db VALUES ('%%','test','','Y','Y','Y','Y'"
  96.                   ",'Y','Y','N','Y','Y','Y','Y','Y');n");
  97.       fprintf(out,"INSERT INTO db VALUES ('%%','test\_%%','','Y','Y','Y'"
  98.                   ",'Y','Y','Y','N','Y','Y','Y','Y','Y');n");
  99.     }
  100.   }
  101.   if (test_sys_file(mdata,"mysql/host.frm"))
  102.   {
  103.     fprintf(out,
  104.       "CREATE TABLE host ("
  105.       "Host char(60) binary DEFAULT '' NOT NULL,"
  106.       "Db char(64) binary DEFAULT '' NOT NULL,"
  107.       "Select_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  108.       "Insert_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  109.       "Update_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  110.       "Delete_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  111.       "Create_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  112.       "Drop_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  113.       "Grant_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  114.       "References_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  115.       "Index_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  116.       "Alter_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  117.       "Create_tmp_table_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  118.       "Lock_tables_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  119.       "PRIMARY KEY Host (Host,Db))"
  120.       "engine=MyISAM "
  121.       "CHARACTER SET utf8 COLLATE utf8_bin "
  122.       "comment='Host privileges;  Merged with database privileges';n");
  123.   }
  124.   if (test_sys_file(mdata,"mysql/user.frm"))
  125.   {
  126. #ifdef __WIN__
  127.     WSADATA wsa_data;
  128. #endif
  129.     char hostname[FN_REFLEN];
  130. #ifdef __WIN__
  131.     if (WSAStartup(MAKEWORD( 2, 2 ),&wsa_data))
  132.       return 1;
  133. #endif
  134.     if (gethostname(hostname, FN_REFLEN))
  135.       return 1;
  136. #ifdef __WIN__
  137.     WSACleanup( );
  138. #endif
  139.     if (strchr(hostname, '.') == NULL)
  140.       strcat(hostname, "%");  
  141.     fprintf(out,
  142.       "CREATE TABLE user ("
  143.       "Host char(60) binary DEFAULT '' NOT NULL,"
  144.       "User char(16) binary DEFAULT '' NOT NULL,"
  145.       "Password char(41) binary DEFAULT '' NOT NULL,"
  146.       "Select_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  147.       "Insert_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  148.       "Update_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  149.       "Delete_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  150.       "Create_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  151.       "Drop_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  152.       "Reload_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  153.       "Shutdown_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  154.       "Process_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  155.       "File_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  156.       "Grant_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  157.       "References_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  158.       "Index_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  159.       "Alter_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  160.       "Show_db_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  161.       "Super_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  162.       "Create_tmp_table_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  163.       "Lock_tables_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  164.       "Execute_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  165.       "Repl_slave_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  166.       "Repl_client_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  167.       "ssl_type enum('','ANY','X509', 'SPECIFIED') DEFAULT '' NOT NULL,"
  168.       "ssl_cipher BLOB NOT NULL,"
  169.       "x509_issuer BLOB NOT NULL,"
  170.       "x509_subject BLOB NOT NULL,"
  171.       "max_questions int(11) unsigned DEFAULT 0  NOT NULL,"
  172.       "max_updates int(11) unsigned DEFAULT 0  NOT NULL,"
  173.       "max_connections int(11) unsigned DEFAULT 0  NOT NULL,"
  174.       "PRIMARY KEY Host (Host,User)"
  175.       ") engine=MyISAM "
  176.       "CHARACTER SET utf8 COLLATE utf8_bin "
  177.       "comment='Users and global privileges';n");
  178.     if (test)
  179.     {
  180.       fprintf(out,
  181.         "INSERT INTO user VALUES ('localhost','root',''"
  182.         ",'Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'"
  183.         ",'Y','Y','Y','Y','Y','','','','',0,0,0);n");
  184.       fprintf(out,
  185.         "INSERT INTO user VALUES ('%s','root','','Y','Y',"
  186.         "'Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y',"
  187.         "'Y','Y','Y','Y','','','','',0,0,0);n",hostname);
  188.       fprintf(out,
  189.         "REPLACE INTO user VALUES ('127.0.0.1','root','',"
  190.         "'Y','Y','Y','Y','Y','Y',"
  191.         "'Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'"
  192.         ",'Y','','','','',0,0,0);n");
  193.       fprintf(out,"INSERT INTO user (host,user) values ('localhost','');n");
  194.       fprintf(out,"INSERT INTO user (host,user) values ('%s','');n",hostname);
  195.     }
  196.     else
  197.     {
  198.       fprintf(out,
  199.         "INSERT INTO user VALUES ('localhost','root','',"
  200.         "'Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y',"
  201.         "'Y','Y','Y','Y','','','','',0,0,0);n");
  202. #ifndef __WIN__    
  203.       fprintf(out,
  204.         "INSERT INTO user VALUES ('%s','root','','Y','Y',"
  205.         "'Y','Y','Y','Y','Y','Y'"
  206.         "'Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','',''"
  207.         ",'','',0,0,0);n",hostname);
  208.       fprintf(out,"INSERT INTO user (host,user) values ('%s','');n",hostname);
  209.       fprintf(out,"INSERT INTO user (host,user) values ('localhost','');n");
  210. #else
  211.       fprintf(out,
  212.         "INSERT INTO user VALUES ('localhost','','','Y','Y','Y'"
  213.         ",'Y','Y','Y','Y','Y','Y'"
  214.         ",'Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','',"
  215.         "'','',0,0,0);n");
  216. #endif
  217.     }
  218.   }
  219.   
  220.   
  221.   if (test_sys_file(mdata,"mysql/func.frm"))
  222.   {
  223.     fprintf(out,
  224.       "CREATE TABLE func ("
  225.       "name char(64) binary DEFAULT '' NOT NULL,"
  226.       "ret tinyint(1) DEFAULT '0' NOT NULL,"
  227.       "dl char(128) DEFAULT '' NOT NULL,"
  228.       "type enum ('function','aggregate') NOT NULL,"
  229.       "PRIMARY KEY (name)"
  230.       ") engine=MyISAM "
  231.       "CHARACTER SET utf8 COLLATE utf8_bin "
  232.       "comment='User defined functions';n");
  233.   }
  234.   if (test_sys_file(mdata,"mysql/tables_priv.frm"))
  235.   {
  236.     fprintf(out,
  237.       "CREATE TABLE tables_priv ("
  238.       "Host char(60) binary DEFAULT '' NOT NULL,"
  239.       "Db char(64) binary DEFAULT '' NOT NULL,"
  240.       "User char(16) binary DEFAULT '' NOT NULL,"
  241.       "Table_name char(64) binary DEFAULT '' NOT NULL,"
  242.       "Grantor char(77) DEFAULT '' NOT NULL,"
  243.       "Timestamp timestamp(14),"
  244.       "Table_priv set('Select','Insert','Update','Delete',"
  245.       "'Create','Drop','Grant','References','Index','Alter')"
  246.       " DEFAULT '' NOT NULL,"
  247.       "Column_priv set('Select','Insert','Update','References')"
  248.       "  DEFAULT '' NOT NULL,"
  249.       "PRIMARY KEY (Host,Db,User,Table_name),"
  250.       "KEY Grantor (Grantor)"
  251.       ") engine=MyISAM "
  252.       "CHARACTER SET utf8 COLLATE utf8_bin "
  253.       "comment='Table privileges';n");
  254.   }
  255.   if (test_sys_file(mdata,"mysql/columns_priv.frm"))
  256.   {
  257.     fprintf(out,
  258.       "CREATE TABLE columns_priv ("
  259.       "Host char(60) binary DEFAULT '' NOT NULL,"
  260.       "Db char(64) binary DEFAULT '' NOT NULL,"
  261.       "User char(16) binary DEFAULT '' NOT NULL,"
  262.       "Table_name char(64) binary DEFAULT '' NOT NULL,"
  263.       "Column_name char(64) binary DEFAULT '' NOT NULL,"
  264.       "Timestamp timestamp(14),"
  265.       "Column_priv set('Select','Insert','Update','References')"
  266.       " DEFAULT '' NOT NULL,"
  267.       "PRIMARY KEY (Host,Db,User,Table_name,Column_name)"
  268.       ") engine=MyISAM "
  269.       "CHARACTER SET utf8 COLLATE utf8_bin "
  270.       "comment='Column privileges';n");
  271.   }
  272.   if (test_sys_file(mdata,"mysql/help_topic.frm"))
  273.   {
  274.     fprintf(out,
  275.       "CREATE TABLE help_topic ("
  276.       "help_topic_id    int unsigned not null,"
  277.       "name             varchar(64) not null,"
  278.       "help_category_id smallint unsigned not null,"
  279.       "description      text not null,"
  280.       "example          text not null,"
  281.       "url              varchar(128) not null,"
  282.       "primary key      (help_topic_id),"
  283.       "unique index     (name)"
  284.       ") engine=MyISAM "
  285.       "CHARACTER SET utf8 "
  286.       "comment='help topics';n");
  287.   }
  288.   if (test_sys_file(mdata,"mysql/help_category.frm"))
  289.   {
  290.     fprintf(out,
  291.       "CREATE TABLE help_category ("
  292.       "help_category_id   smallint unsigned not null,"
  293.       "name               varchar(64) not null,"
  294.       "parent_category_id smallint unsigned null,"
  295.       "url                varchar(128) not null,"
  296.       "primary key        (help_category_id),"
  297.       "unique index       (name)"
  298.       ") engine=MyISAM "
  299.       "CHARACTER SET utf8 "
  300.       "comment='help categories';n");
  301.   }
  302.   if (test_sys_file(mdata,"mysql/help_keyword.frm"))
  303.   {
  304.     fprintf(out,
  305.       "CREATE TABLE help_keyword ("
  306.       "help_keyword_id  int unsigned not null,"
  307.       "name             varchar(64) not null,"
  308.       "primary key      (help_keyword_id),"
  309.       "unique index     (name)"
  310.       ") engine=MyISAM "
  311.       "CHARACTER SET utf8 "
  312.       "comment='help keywords';n");
  313.   }
  314.     
  315.   if (test_sys_file(mdata,"mysql/help_relation.frm"))
  316.   {
  317.     fprintf(out,
  318.       "CREATE TABLE help_relation ("
  319.       "help_topic_id int unsigned not null references help_topic,"
  320.       "help_keyword_id int unsigned not null references help_keyword,"
  321.       "primary key      (help_keyword_id, help_topic_id)"
  322.       ") engine=MyISAM "
  323.       "CHARACTER SET utf8 "
  324.       "comment='keyword-topic relation';n");
  325.   }
  326.   if (test_sys_file(mdata,"mysql/time_zone_name.frm"))
  327.   {
  328.     fprintf(out,
  329.       "CREATE TABLE time_zone_name ("
  330.       "Name char(64) NOT NULL,"
  331.       "Time_zone_id int unsigned NOT NULL,"
  332.       "PRIMARY KEY Name (Name)"
  333.       ") engine=MyISAM CHARACTER SET utf8 "
  334.       "comment='Time zone names';n");
  335.   
  336.     if (test)
  337.     {
  338.       fprintf(out,
  339.         "INSERT INTO time_zone_name (Name, Time_Zone_id) VALUES"
  340.         "('MET', 1), ('UTC', 2), ('Universal', 2), "
  341.         "('Europe/Moscow',3), ('leap/Europe/Moscow',4),"
  342.         "('Japan', 5);n");
  343.     }
  344.   }
  345.   if (test_sys_file(mdata,"mysql/time_zone.frm"))
  346.   {
  347.     fprintf(out,
  348.       "CREATE TABLE time_zone ("
  349.       "Time_zone_id int unsigned NOT NULL auto_increment,"
  350.       "Use_leap_seconds enum('Y','N') DEFAULT 'N' NOT NULL,"
  351.       "PRIMARY KEY TzId (Time_zone_id)"
  352.       ") engine=MyISAM CHARACTER SET utf8 "
  353.       "comment='Time zones';n");
  354.   
  355.     if (test)
  356.     {
  357.       fprintf(out,"INSERT INTO time_zone (Time_zone_id, Use_leap_seconds)"
  358.                   "VALUES (1,'N'), (2,'N'), (3,'N'), (4,'Y'), (5,'N');n");
  359.     }
  360.   }
  361.   if (test_sys_file(mdata,"mysql/time_zone_transition.frm"))
  362.   {
  363.     fprintf(out,
  364.       "CREATE TABLE time_zone_transition ("
  365.       "Time_zone_id int unsigned NOT NULL,"
  366.       "Transition_time bigint signed NOT NULL,"
  367.       "Transition_type_id int unsigned NOT NULL,"
  368.       "PRIMARY KEY TzIdTranTime (Time_zone_id, Transition_time)"
  369.       ") engine=MyISAM CHARACTER SET utf8 "
  370.       "comment='Time zone transitions';n");
  371.   
  372.     if (test)
  373.     {
  374.       fprintf(out,
  375.        "INSERT INTO time_zone_transition"
  376.        "(Time_zone_id, Transition_time, Transition_type_id)"
  377.        "VALUES"
  378.        " (1, -1693706400, 0) ,(1, -1680483600, 1)"
  379.        ",(1, -1663455600, 2) ,(1, -1650150000, 3)"
  380.        ",(1, -1632006000, 2) ,(1, -1618700400, 3)"
  381.        ",(1, -938905200, 2) ,(1, -857257200, 3)"
  382.        ",(1, -844556400, 2) ,(1, -828226800, 3)"
  383.        ",(1, -812502000, 2) ,(1, -796777200, 3)"
  384.        ",(1, 228877200, 2) ,(1, 243997200, 3)"
  385.        ",(1, 260326800, 2) ,(1, 276051600, 3)"
  386.        ",(1, 291776400, 2) ,(1, 307501200, 3)"
  387.        ",(1, 323830800, 2) ,(1, 338950800, 3)"
  388.        ",(1, 354675600, 2) ,(1, 370400400, 3)"
  389.        ",(1, 386125200, 2) ,(1, 401850000, 3)"
  390.        ",(1, 417574800, 2) ,(1, 433299600, 3)"
  391.        ",(1, 449024400, 2) ,(1, 465354000, 3)"
  392.        ",(1, 481078800, 2) ,(1, 496803600, 3)"
  393.        ",(1, 512528400, 2) ,(1, 528253200, 3)"
  394.        ",(1, 543978000, 2) ,(1, 559702800, 3)"
  395.        ",(1, 575427600, 2) ,(1, 591152400, 3)"
  396.        ",(1, 606877200, 2) ,(1, 622602000, 3)"
  397.        ",(1, 638326800, 2) ,(1, 654656400, 3)"
  398.        ",(1, 670381200, 2) ,(1, 686106000, 3)"
  399.        ",(1, 701830800, 2) ,(1, 717555600, 3)"
  400.        ",(1, 733280400, 2) ,(1, 749005200, 3)"
  401.        ",(1, 764730000, 2) ,(1, 780454800, 3)"
  402.        ",(1, 796179600, 2) ,(1, 811904400, 3)"
  403.        ",(1, 828234000, 2) ,(1, 846378000, 3)"
  404.        ",(1, 859683600, 2) ,(1, 877827600, 3)"
  405.        ",(1, 891133200, 2) ,(1, 909277200, 3)"
  406.        ",(1, 922582800, 2) ,(1, 941331600, 3)"
  407.        ",(1, 954032400, 2) ,(1, 972781200, 3)"
  408.        ",(1, 985482000, 2) ,(1, 1004230800, 3)"
  409.        ",(1, 1017536400, 2) ,(1, 1035680400, 3)"
  410.        ",(1, 1048986000, 2) ,(1, 1067130000, 3)"
  411.        ",(1, 1080435600, 2) ,(1, 1099184400, 3)"
  412.        ",(1, 1111885200, 2) ,(1, 1130634000, 3)"
  413.        ",(1, 1143334800, 2) ,(1, 1162083600, 3)"
  414.        ",(1, 1174784400, 2) ,(1, 1193533200, 3)"
  415.        ",(1, 1206838800, 2) ,(1, 1224982800, 3)"
  416.        ",(1, 1238288400, 2) ,(1, 1256432400, 3)"
  417.        ",(1, 1269738000, 2) ,(1, 1288486800, 3)"
  418.        ",(1, 1301187600, 2) ,(1, 1319936400, 3)"
  419.        ",(1, 1332637200, 2) ,(1, 1351386000, 3)"
  420.        ",(1, 1364691600, 2) ,(1, 1382835600, 3)"
  421.        ",(1, 1396141200, 2) ,(1, 1414285200, 3)"
  422.        ",(1, 1427590800, 2) ,(1, 1445734800, 3)"
  423.        ",(1, 1459040400, 2) ,(1, 1477789200, 3)"
  424.        ",(1, 1490490000, 2) ,(1, 1509238800, 3)"
  425.        ",(1, 1521939600, 2) ,(1, 1540688400, 3)"
  426.        ",(1, 1553994000, 2) ,(1, 1572138000, 3)"
  427.        ",(1, 1585443600, 2) ,(1, 1603587600, 3)"
  428.        ",(1, 1616893200, 2) ,(1, 1635642000, 3)"
  429.        ",(1, 1648342800, 2) ,(1, 1667091600, 3)"
  430.        ",(1, 1679792400, 2) ,(1, 1698541200, 3)"
  431.        ",(1, 1711846800, 2) ,(1, 1729990800, 3)"
  432.        ",(1, 1743296400, 2) ,(1, 1761440400, 3)"
  433.        ",(1, 1774746000, 2) ,(1, 1792890000, 3)"
  434.        ",(1, 1806195600, 2) ,(1, 1824944400, 3)"
  435.        ",(1, 1837645200, 2) ,(1, 1856394000, 3)"
  436.        ",(1, 1869094800, 2) ,(1, 1887843600, 3)"
  437.        ",(1, 1901149200, 2) ,(1, 1919293200, 3)"
  438.        ",(1, 1932598800, 2) ,(1, 1950742800, 3)"
  439.        ",(1, 1964048400, 2) ,(1, 1982797200, 3)"
  440.        ",(1, 1995498000, 2) ,(1, 2014246800, 3)"
  441.        ",(1, 2026947600, 2) ,(1, 2045696400, 3)"
  442.        ",(1, 2058397200, 2) ,(1, 2077146000, 3)"
  443.        ",(1, 2090451600, 2) ,(1, 2108595600, 3)"
  444.        ",(1, 2121901200, 2) ,(1, 2140045200, 3)"
  445.        ",(3, -1688265000, 2) ,(3, -1656819048, 1)"
  446.        ",(3, -1641353448, 2) ,(3, -1627965048, 3)"
  447.        ",(3, -1618716648, 1) ,(3, -1596429048, 3)"
  448.        ",(3, -1593829848, 5) ,(3, -1589860800, 4)"
  449.        ",(3, -1542427200, 5) ,(3, -1539493200, 6)"
  450.        ",(3, -1525323600, 5) ,(3, -1522728000, 4)"
  451.        ",(3, -1491188400, 7) ,(3, -1247536800, 4)"
  452.        ",(3, 354920400, 5) ,(3, 370728000, 4)"
  453.        ",(3, 386456400, 5) ,(3, 402264000, 4)"
  454.        ",(3, 417992400, 5) ,(3, 433800000, 4)"
  455.        ",(3, 449614800, 5) ,(3, 465346800, 8)"
  456.        ",(3, 481071600, 9) ,(3, 496796400, 8)"
  457.        ",(3, 512521200, 9) ,(3, 528246000, 8)"
  458.        ",(3, 543970800, 9) ,(3, 559695600, 8)"
  459.        ",(3, 575420400, 9) ,(3, 591145200, 8)"
  460.        ",(3, 606870000, 9) ,(3, 622594800, 8)"
  461.        ",(3, 638319600, 9) ,(3, 654649200, 8)"
  462.        ",(3, 670374000, 10) ,(3, 686102400, 11)"
  463.        ",(3, 695779200, 8) ,(3, 701812800, 5)"
  464.        ",(3, 717534000, 4) ,(3, 733273200, 9)"
  465.        ",(3, 748998000, 8) ,(3, 764722800, 9)"
  466.        ",(3, 780447600, 8) ,(3, 796172400, 9)"
  467.        ",(3, 811897200, 8) ,(3, 828226800, 9)"
  468.        ",(3, 846370800, 8) ,(3, 859676400, 9)"
  469.        ",(3, 877820400, 8) ,(3, 891126000, 9)"
  470.        ",(3, 909270000, 8) ,(3, 922575600, 9)"
  471.        ",(3, 941324400, 8) ,(3, 954025200, 9)"
  472.        ",(3, 972774000, 8) ,(3, 985474800, 9)"
  473.        ",(3, 1004223600, 8) ,(3, 1017529200, 9)"
  474.        ",(3, 1035673200, 8) ,(3, 1048978800, 9)"
  475.        ",(3, 1067122800, 8) ,(3, 1080428400, 9)"
  476.        ",(3, 1099177200, 8) ,(3, 1111878000, 9)"
  477.        ",(3, 1130626800, 8) ,(3, 1143327600, 9)"
  478.        ",(3, 1162076400, 8) ,(3, 1174777200, 9)"
  479.        ",(3, 1193526000, 8) ,(3, 1206831600, 9)"
  480.        ",(3, 1224975600, 8) ,(3, 1238281200, 9)"
  481.        ",(3, 1256425200, 8) ,(3, 1269730800, 9)"
  482.        ",(3, 1288479600, 8) ,(3, 1301180400, 9)"
  483.        ",(3, 1319929200, 8) ,(3, 1332630000, 9)"
  484.        ",(3, 1351378800, 8) ,(3, 1364684400, 9)"
  485.        ",(3, 1382828400, 8) ,(3, 1396134000, 9)"
  486.        ",(3, 1414278000, 8) ,(3, 1427583600, 9)"
  487.        ",(3, 1445727600, 8) ,(3, 1459033200, 9)"
  488.        ",(3, 1477782000, 8) ,(3, 1490482800, 9)"
  489.        ",(3, 1509231600, 8) ,(3, 1521932400, 9)"
  490.        ",(3, 1540681200, 8) ,(3, 1553986800, 9)"
  491.        ",(3, 1572130800, 8) ,(3, 1585436400, 9)"
  492.        ",(3, 1603580400, 8) ,(3, 1616886000, 9)"
  493.        ",(3, 1635634800, 8) ,(3, 1648335600, 9)"
  494.        ",(3, 1667084400, 8) ,(3, 1679785200, 9)"
  495.        ",(3, 1698534000, 8) ,(3, 1711839600, 9)"
  496.        ",(3, 1729983600, 8) ,(3, 1743289200, 9)"
  497.        ",(3, 1761433200, 8) ,(3, 1774738800, 9)"
  498.        ",(3, 1792882800, 8) ,(3, 1806188400, 9)"
  499.        ",(3, 1824937200, 8) ,(3, 1837638000, 9)"
  500.        ",(3, 1856386800, 8) ,(3, 1869087600, 9)"
  501.        ",(3, 1887836400, 8) ,(3, 1901142000, 9)"
  502.        ",(3, 1919286000, 8) ,(3, 1932591600, 9)"
  503.        ",(3, 1950735600, 8) ,(3, 1964041200, 9)"
  504.        ",(3, 1982790000, 8) ,(3, 1995490800, 9)"
  505.        ",(3, 2014239600, 8) ,(3, 2026940400, 9)"
  506.        ",(3, 2045689200, 8) ,(3, 2058390000, 9)"
  507.        ",(3, 2077138800, 8) ,(3, 2090444400, 9)"
  508.        ",(3, 2108588400, 8) ,(3, 2121894000, 9)"
  509.        ",(3, 2140038000, 8)"
  510.        ",(4, -1688265000, 2) ,(4, -1656819048, 1)"
  511.        ",(4, -1641353448, 2) ,(4, -1627965048, 3)"
  512.        ",(4, -1618716648, 1) ,(4, -1596429048, 3)"
  513.        ",(4, -1593829848, 5) ,(4, -1589860800, 4)"
  514.        ",(4, -1542427200, 5) ,(4, -1539493200, 6)"
  515.        ",(4, -1525323600, 5) ,(4, -1522728000, 4)"
  516.        ",(4, -1491188400, 7) ,(4, -1247536800, 4)"
  517.        ",(4, 354920409, 5) ,(4, 370728010, 4)"
  518.        ",(4, 386456410, 5) ,(4, 402264011, 4)"
  519.        ",(4, 417992411, 5) ,(4, 433800012, 4)"
  520.        ",(4, 449614812, 5) ,(4, 465346812, 8)"
  521.        ",(4, 481071612, 9) ,(4, 496796413, 8)"
  522.        ",(4, 512521213, 9) ,(4, 528246013, 8)"
  523.        ",(4, 543970813, 9) ,(4, 559695613, 8)"
  524.        ",(4, 575420414, 9) ,(4, 591145214, 8)"
  525.        ",(4, 606870014, 9) ,(4, 622594814, 8)"
  526.        ",(4, 638319615, 9) ,(4, 654649215, 8)"
  527.        ",(4, 670374016, 10) ,(4, 686102416, 11)"
  528.        ",(4, 695779216, 8) ,(4, 701812816, 5)"
  529.        ",(4, 717534017, 4) ,(4, 733273217, 9)"
  530.        ",(4, 748998018, 8) ,(4, 764722818, 9)"
  531.        ",(4, 780447619, 8) ,(4, 796172419, 9)"
  532.        ",(4, 811897219, 8) ,(4, 828226820, 9)"
  533.        ",(4, 846370820, 8) ,(4, 859676420, 9)"
  534.        ",(4, 877820421, 8) ,(4, 891126021, 9)"
  535.        ",(4, 909270021, 8) ,(4, 922575622, 9)"
  536.        ",(4, 941324422, 8) ,(4, 954025222, 9)"
  537.        ",(4, 972774022, 8) ,(4, 985474822, 9)"
  538.        ",(4, 1004223622, 8) ,(4, 1017529222, 9)"
  539.        ",(4, 1035673222, 8) ,(4, 1048978822, 9)"
  540.        ",(4, 1067122822, 8) ,(4, 1080428422, 9)"
  541.        ",(4, 1099177222, 8) ,(4, 1111878022, 9)"
  542.        ",(4, 1130626822, 8) ,(4, 1143327622, 9)"
  543.        ",(4, 1162076422, 8) ,(4, 1174777222, 9)"
  544.        ",(4, 1193526022, 8) ,(4, 1206831622, 9)"
  545.        ",(4, 1224975622, 8) ,(4, 1238281222, 9)"
  546.        ",(4, 1256425222, 8) ,(4, 1269730822, 9)"
  547.        ",(4, 1288479622, 8) ,(4, 1301180422, 9)"
  548.        ",(4, 1319929222, 8) ,(4, 1332630022, 9)"
  549.        ",(4, 1351378822, 8) ,(4, 1364684422, 9)"
  550.        ",(4, 1382828422, 8) ,(4, 1396134022, 9)"
  551.        ",(4, 1414278022, 8) ,(4, 1427583622, 9)"
  552.        ",(4, 1445727622, 8) ,(4, 1459033222, 9)"
  553.        ",(4, 1477782022, 8) ,(4, 1490482822, 9)"
  554.        ",(4, 1509231622, 8) ,(4, 1521932422, 9)"
  555.        ",(4, 1540681222, 8) ,(4, 1553986822, 9)"
  556.        ",(4, 1572130822, 8) ,(4, 1585436422, 9)"
  557.        ",(4, 1603580422, 8) ,(4, 1616886022, 9)"
  558.        ",(4, 1635634822, 8) ,(4, 1648335622, 9)"
  559.        ",(4, 1667084422, 8) ,(4, 1679785222, 9)"
  560.        ",(4, 1698534022, 8) ,(4, 1711839622, 9)"
  561.        ",(4, 1729983622, 8) ,(4, 1743289222, 9)"
  562.        ",(4, 1761433222, 8) ,(4, 1774738822, 9)"
  563.        ",(4, 1792882822, 8) ,(4, 1806188422, 9)"
  564.        ",(4, 1824937222, 8) ,(4, 1837638022, 9)"
  565.        ",(4, 1856386822, 8) ,(4, 1869087622, 9)"
  566.        ",(4, 1887836422, 8) ,(4, 1901142022, 9)"
  567.        ",(4, 1919286022, 8) ,(4, 1932591622, 9)"
  568.        ",(4, 1950735622, 8) ,(4, 1964041222, 9)"
  569.        ",(4, 1982790022, 8) ,(4, 1995490822, 9)"
  570.        ",(4, 2014239622, 8) ,(4, 2026940422, 9)"
  571.        ",(4, 2045689222, 8) ,(4, 2058390022, 9)"
  572.        ",(4, 2077138822, 8) ,(4, 2090444422, 9)"
  573.        ",(4, 2108588422, 8) ,(4, 2121894022, 9)"
  574.        ",(4, 2140038022, 8), (5, -1009875600, 1);n");
  575.        
  576.        
  577.     }
  578.   }
  579.   if (test_sys_file(mdata,"mysql/time_zone_transition_type.frm"))
  580.   {
  581.     fprintf(out,
  582.       "CREATE TABLE time_zone_transition_type ("
  583.       "Time_zone_id int unsigned NOT NULL,"
  584.       "Transition_type_id int unsigned NOT NULL,"
  585.       "Offset int signed DEFAULT 0 NOT NULL,"
  586.       "Is_DST tinyint unsigned DEFAULT 0 NOT NULL,"
  587.       "Abbreviation char(8) DEFAULT '' NOT NULL,"
  588.       "PRIMARY KEY TzIdTrTId (Time_zone_id, Transition_type_id)"
  589.       ") engine=MyISAM CHARACTER SET utf8 "
  590.       "comment='Time zone transition types';n");
  591.   
  592.     if (test)
  593.     {
  594.       fprintf(out,
  595.         "INSERT INTO time_zone_transition_type (Time_zone_id,"
  596.         "Transition_type_id, Offset, Is_DST, Abbreviation) VALUES"
  597.         "(1, 0, 7200, 1, 'MEST') ,(1, 1, 3600, 0, 'MET')"
  598.         ",(1, 2, 7200, 1, 'MEST') ,(1, 3, 3600, 0, 'MET')"
  599.         ",(2, 0, 0, 0, 'UTC')"
  600.         ",(3, 0, 9000, 0, 'MMT') ,(3, 1, 12648, 1, 'MST')"
  601.         ",(3, 2, 9048, 0, 'MMT') ,(3, 3, 16248, 1, 'MDST')"
  602.         ",(3, 4, 10800, 0, 'MSK') ,(3, 5, 14400, 1, 'MSD')"
  603.         ",(3, 6, 18000, 1, 'MSD') ,(3, 7, 7200, 0, 'EET')"
  604.         ",(3, 8, 10800, 0, 'MSK') ,(3, 9, 14400, 1, 'MSD')"
  605.         ",(3, 10, 10800, 1, 'EEST') ,(3, 11, 7200, 0, 'EET')"
  606.         ",(4, 0, 9000, 0, 'MMT') ,(4, 1, 12648, 1, 'MST')"
  607.         ",(4, 2, 9048, 0, 'MMT') ,(4, 3, 16248, 1, 'MDST')"
  608.         ",(4, 4, 10800, 0, 'MSK') ,(4, 5, 14400, 1, 'MSD')"
  609.         ",(4, 6, 18000, 1, 'MSD') ,(4, 7, 7200, 0, 'EET')"
  610.         ",(4, 8, 10800, 0, 'MSK') ,(4, 9, 14400, 1, 'MSD')"
  611.         ",(4, 10, 10800, 1, 'EEST') ,(4, 11, 7200, 0, 'EET')"
  612.         ",(5, 0, 32400, 0, 'CJT') ,(5, 1, 32400, 0, 'JST');n");
  613.     }
  614.   }
  615.   if (test_sys_file(mdata,"mysql/time_zone_leap_second.frm"))
  616.   {
  617.     fprintf(out,
  618.       "CREATE TABLE time_zone_leap_second ("
  619.       "Transition_time bigint signed NOT NULL,"
  620.       "Correction int signed NOT NULL,"
  621.       "PRIMARY KEY TranTime (Transition_time)"
  622.       ") engine=MyISAM CHARACTER SET utf8 "
  623.       "comment='Leap seconds information for time zones';n");
  624.   
  625.     if (test)
  626.     {
  627.       fprintf(out,
  628.         "INSERT INTO time_zone_leap_second "
  629.         "(Transition_time, Correction) VALUES "
  630.         "(78796800, 1) ,(94694401, 2) ,(126230402, 3)"
  631.         ",(157766403, 4) ,(189302404, 5) ,(220924805, 6)"
  632.         ",(252460806, 7) ,(283996807, 8) ,(315532808, 9)"
  633.         ",(362793609, 10) ,(394329610, 11) ,(425865611, 12)"
  634.         ",(489024012, 13) ,(567993613, 14) ,(631152014, 15)"
  635.         ",(662688015, 16) ,(709948816, 17) ,(741484817, 18)"
  636.         ",(773020818, 19) ,(820454419, 20) ,(867715220, 21)"
  637.         ",(915148821, 22);n");
  638.     }
  639.   }
  640.   return fclose(out);
  641. }