home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win.exe / DATA1.CAB / Benchmark_Files / bench / crash-me < prev    next >
Text File  |  2000-11-22  |  104KB  |  3,465 lines

  1. #!/my/gnu/bin/perl5
  2. # Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  3. #
  4. # This library is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU Library General Public
  6. # License as published by the Free Software Foundation; either
  7. # version 2 of the License, or (at your option) any later version.
  8. #
  9. # This library is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. # Library General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU Library General Public
  15. # License along with this library; if not, write to the Free
  16. # Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  17. # MA 02111-1307, USA
  18.  
  19. # Written by Monty for the TCX/Monty Program/Detron benchmark suite.
  20. # Empress and PostgreSQL patches by Luuk de Boer
  21. # Extensions for ANSI SQL and Mimer by Bengt Gunne
  22. # Some additions and corrections by Matthias Urlich
  23. #
  24. # This programs tries to find all limits for a sql server
  25. # It gets the name from what it does to most servers :)
  26. #
  27. # Be sure to use --help before running this!
  28. #
  29. # If you want to add support for another server, add a new package for the
  30. # server in server-cfg.  You only have to support the 'new' and 'version'
  31. # functions. new doesn't need to have any limits if one doesn't want to
  32. # use the benchmarks.
  33. #
  34.  
  35. # TODO:
  36. # CMT includes types and functions which are synonyms for other types
  37. # and functions, including those in SQL9x. It should label those synonyms
  38. # as such, and clarify ones such as "mediumint" with comments such as
  39. # "3-byte int" or "same as xxx".
  40.  
  41.  
  42. $version="1.51";
  43.  
  44. use DBI;
  45. use Getopt::Long;
  46. chomp($pwd = `pwd`); $pwd = "." if ($pwd eq '');
  47. require "$pwd/server-cfg" || die "Can't read Configuration file: $!\n";
  48.  
  49. $opt_server="mysql"; $opt_host="localhost"; $opt_database="test";
  50. $opt_dir="limits";
  51. $opt_debug=$opt_help=$opt_Information=$opt_restart=$opt_force=$opt_quick=0;
  52. $opt_log_all_queries=$opt_fix_limit_file=$opt_batch_mode=0;
  53. $opt_db_start_cmd="";           # the db server start command
  54. $opt_sleep=10;                  # time to sleep while starting the db server
  55. $limit_changed=0;               # For configure file
  56. $reconnect_count=0;
  57. $opt_comment=$opt_config_file=$opt_log_queries_to_file="";
  58. $limits{'crash_me_safe'}='yes';
  59. $prompts{'crash_me_safe'}='crash me safe';
  60. $limits{'operating_system'}= machine();
  61. $prompts{'operating_system'}='crash-me tested on';
  62. $retry_limit=3;
  63.  
  64. GetOptions("Information","help","server=s","debug","user=s","password=s","database=s","restart","force","quick","log-all-queries","comment=s","host=s","fix-limit-file","dir=s","db-start-cmd=s","sleep=s","batch-mode","config-file=s","log-queries-to-file=s") || usage();
  65. usage() if ($opt_help || $opt_Information);
  66.  
  67. $opt_config_file="$pwd/$opt_dir/$opt_server.cfg" if (length($opt_config_file) == 0);
  68.  
  69. if ($opt_fix_limit_file)
  70. {
  71.   print "Fixing limit file for $opt_server\n";
  72.   read_config_data();
  73.   $limit_changed=1;
  74.   save_all_config_data();
  75.   exit 0;
  76. }
  77.  
  78. $server=get_server($opt_server,$opt_host,$opt_database);
  79. $opt_server=$server->{'cmp_name'};
  80.  
  81. $|=1;                           # For debugging
  82.  
  83. print "Running $0 $version on '",($server_version=$server->version()),"'\n\n";
  84. print "I hope you didn't have anything important running on this server....\n";
  85. read_config_data();
  86. if ($limit_changed)             # Must have been restarted
  87. {
  88.   save_config_data('crash_me_safe','no',"crash me safe");
  89. }
  90.  
  91. if (!$opt_force && !$opt_batch_mode)
  92. {
  93.   server_info();
  94. }
  95. else
  96. {
  97.   print "Using --force.  I assume you know what you are doing...\n";
  98. }
  99. print "\n";
  100.  
  101. save_config_data('crash_me_version',$version,"crash me version");
  102. if ($server_version)
  103. {
  104.   save_config_data('server_version',$server_version,"server version");
  105. }
  106. if (length($opt_comment))
  107. {
  108.   save_config_data('user_comment',$opt_comment,"comment");
  109. }
  110.  
  111. $opt_log=0;
  112. if (length($opt_log_queries_to_file))
  113. {
  114.   open(LOG,">$opt_log_queries_to_file") || die "Can't open file $opt_log_queries_to_file\n";
  115.   $opt_log=1;
  116. }
  117.  
  118. #
  119. # Set up some limits that's regared as unlimited
  120. # We don't want to take up all resources from the server...
  121. #
  122.  
  123. $max_connections="+1000";       # Number of simultaneous connections
  124. $max_buffer_size="+16000000";   # size of communication buffer.
  125. $max_string_size="+8000000";    # Enough for this test
  126. $max_name_length="+512";        # Actually 256, but ...
  127. $max_keys="+64";                # Probably too big.
  128. $max_join_tables="+64";         # Probably too big.
  129. $max_columns="+8192";           # Probably too big.
  130. $max_row_length=$max_string_size;
  131. $max_key_length="+8192";        # Big enough
  132. $max_order_by="+64";        # Big enough
  133. $max_expressions="+10000";
  134. $max_big_expressions="+100";
  135. $max_stacked_expressions="+2000";
  136. $query_size=$max_buffer_size;
  137. $longreadlen=16000000;        # For retrieval buffer
  138.  
  139. #
  140. # First do some checks that needed for the rest of the benchmark
  141. #
  142. use sigtrap;               # Must be removed with perl5.005_2 on Win98
  143. $SIG{PIPE} = 'IGNORE';
  144. $SIG{SEGV} = sub {warn('SEGFAULT')};
  145. $dbh=safe_connect();
  146. $dbh->do("drop table crash_me");        # Remove old run
  147. $dbh->do("drop table crash_me2");        # Remove old run
  148. $dbh->do("drop table crash_me3");        # Remove old run
  149. $dbh->do("drop table crash_q");         # Remove old run
  150. $dbh->do("drop table crash_q1");         # Remove old run
  151.  
  152. $prompt="Tables without primary key";
  153. if (!safe_query(["create table crash_me (a integer not null,b char(10) not null)",
  154.          "insert into crash_me (a,b) values (1,'a')"]))
  155. {
  156.   if (!safe_query(["create table crash_me (a integer not null,b char(10) not null, primary key (a))",
  157.            "insert into crash_me (a,b) values (1,'a')"]))
  158.   {
  159.     die "Can't create table 'crash_me' with one record: $DBI::errstr\n";
  160.   }
  161.   save_config_data('no_primary_key',"no",$prompt);
  162. }
  163. else
  164. {
  165.   save_config_data('no_primary_key',"yes",$prompt);
  166. }
  167. #
  168. #  Define strings for character NULL and numeric NULL used in expressions
  169. #
  170. $char_null=$server->{'char_null'};
  171. $numeric_null=$server->{'numeric_null'};
  172. if ($char_null eq '')
  173. {
  174.   $char_null="NULL";
  175. }
  176. if ($numeric_null eq '')
  177. {
  178.   $numeric_null="NULL";
  179. }
  180.  
  181. print "$prompt: $limits{'no_primary_key'}\n";
  182.  
  183. report("SELECT without FROM",'select_without_from',"select 1");
  184. if ($limits{'select_without_from'} ne "yes")
  185. {
  186.   $end_query=" from crash_me";
  187.   $check_connect="select a from crash_me";
  188. }
  189. else
  190. {
  191.   $end_query="";
  192.   $check_connect="select 1";
  193. }
  194.  
  195. assert($check_connect);
  196. assert("select a from crash_me where b<'b'");
  197.  
  198. report("Select constants",'select_constants',"select 1 $end_query");
  199. report("Select table_name.*",'table_wildcard',
  200.        "select crash_me.* from crash_me");
  201. report("Allows \' and \" as string markers",'quote_with_"',
  202.        'select a from crash_me where b<"c"');
  203. check_and_report("Double '' as ' in strings",'double_quotes',[],
  204.          "select 'Walker''s' $end_query",[],"Walker's",1);
  205. check_and_report("Multiple line strings","multi_strings",[],
  206.          "select a from crash_me where b < 'a'\n'b'",[],"1",0);
  207. check_and_report("\" as identifier quote (ANSI SQL)",'quote_ident_with_"',[],
  208.          'select "A" from crash_me',[],"1",0);
  209. check_and_report("\` as identifier quote",'quote_ident_with_`',[],
  210.          'select `A` from crash_me',[],"1",0);
  211. check_and_report("[] as identifier quote",'quote_ident_with_[',[],
  212.          'select [A] from crash_me',[],"1",0);
  213.  
  214. report("Column alias","column_alias","select a as ab from crash_me");
  215. report("Table alias","table_alias","select b.a from crash_me as b");
  216. report("Functions",'functions',"select 1+1 $end_query");
  217. report("Group functions",'group_functions',"select count(*) from crash_me");
  218. report("Group functions with distinct",'group_distinct_functions',
  219.        "select count(distinct a) from crash_me");
  220. report("Group by",'group_by',"select a from crash_me group by a");
  221. report("Group by position",'group_by_position',
  222.        "select a from crash_me group by 1");
  223. report("Group by alias",'group_by_alias',
  224.        "select a as ab from crash_me group by ab");
  225. report("Order by",'order_by',"select a from crash_me order by a");
  226. report("Order by position",'order_by_position',
  227.        "select a from crash_me order by 1");
  228. report("Order by function","order_by_function",
  229.        "select a from crash_me order by a+1");
  230. check_and_report("Order by DESC is remembered",'order_by_remember_desc',
  231.          ["create table crash_q (s int,s1 int)",
  232.           "insert into crash_q values(1,1)",
  233.           "insert into crash_q values(3,1)",
  234.           "insert into crash_q values(2,1)"],
  235.          "select s,s1 from crash_q order by s1 DESC,s",
  236.          ["drop table crash_q"],[3,2,1],7,undef(),3);
  237. report("Compute",'compute',
  238.        "select a from crash_me order by a compute sum(a) by a");
  239. report("Value lists in INSERT",'multi_value_insert',
  240.        "create table crash_q (s char(10))",
  241.        "insert into crash_q values ('a'),('b')",
  242.        "drop table crash_q");
  243. report("INSERT with set syntax",'insert_with_set',
  244.        "create table crash_q (a integer)",
  245.        "insert into crash_q SET a=1",
  246.        "drop table crash_q");
  247. report("allows end ';'","end_colon", "select * from crash_me;");
  248. try_and_report("LIMIT number of rows","select_limit",
  249.            ["with LIMIT",
  250.         "select * from crash_me limit 1"],
  251.            ["with TOP",
  252.         "select TOP 1 * from crash_me"]);
  253. report("SELECT with LIMIT #,#","select_limit2", "select * from crash_me limit 1,1");
  254.  
  255. # The following alter table commands MUST be kept together!
  256. if ($dbh->do("create table crash_q (a integer, b integer,c CHAR(10))"))
  257. {
  258.   report("Alter table add column",'alter_add_col',
  259.      "alter table crash_q add d integer");
  260.   report_one("Alter table add many columns",'alter_add_multi_col',
  261.          [["alter table crash_q add (f integer,g integer)","yes"],
  262.           ["alter table crash_q add f integer, add g integer","with add"],
  263.           ["alter table crash_q add f integer,g integer","without add"]] );
  264.   report("Alter table change column",'alter_change_col',
  265.      "alter table crash_q change a e char(50)");
  266.  
  267.   # informix can only change data type with modify
  268.   report_one("Alter table modify column",'alter_modify_col',
  269.          [["alter table crash_q modify c CHAR(20)","yes"],
  270.           ["alter table crash_q alter c CHAR(20)","with alter"]]);
  271.   report("Alter table alter column default",'alter_alter_col',
  272.      "alter table crash_q alter b set default 10",
  273.      "alter table crash_q alter b set default NULL");
  274.   report_one("Alter table drop column",'alter_drop_col',
  275.          [["alter table crash_q drop column b","yes"],
  276.           ["alter table crash_q drop column b restrict","with restrict/cascade"]]);
  277.   report("Alter table rename table",'alter_rename_table',
  278.      "alter table crash_q rename to crash_q1");
  279. }
  280. # Make sure both tables will be dropped, even if rename fails.
  281. $dbh->do("drop table crash_q1");
  282. $dbh->do("drop table crash_q");
  283.  
  284. report("rename table","rename_table",
  285.        "create table crash_q (a integer, b integer,c CHAR(10))",
  286.        "rename table crash_q to crash_q1",
  287.        "drop table crash_q1");
  288. # Make sure both tables will be dropped, even if rename fails.
  289. $dbh->do("drop table crash_q1");
  290. $dbh->do("drop table crash_q");
  291.  
  292. report("truncate","truncate_table",
  293.        "create table crash_q (a integer, b integer,c CHAR(10))",
  294.        "truncate crash_q",
  295.        "drop table crash_q");
  296.  
  297. if ($dbh->do("create table crash_q (a integer, b integer,c CHAR(10))") &&
  298.     $dbh->do("create table crash_q1 (a integer, b integer,c CHAR(10) not null)"))
  299. {
  300.   report("Alter table add constraint",'alter_add_constraint',
  301.      "alter table crash_q add constraint c1 check(a > b)");
  302.   report("Alter table drop constraint",'alter_drop_constraint',
  303.      "alter table crash_q drop constraint c1");
  304.   report("Alter table add unique",'alter_add_unique',
  305.      "alter table crash_q add constraint u1 unique(c)");
  306.   try_and_report("Alter table drop unique",'alter_drop_unique',
  307.          ["with constraint",
  308.           "alter table crash_q drop constraint u1"],
  309.          ["with drop key",
  310.           "alter table crash_q drop key c"]);
  311.   try_and_report("Alter table add primary key",'alter_add_primary_key',
  312.          ["with constraint",
  313.           "alter table crash_q1 add constraint p1 primary key(c)"],
  314.          ["with add primary key",
  315.           "alter table crash_q1 add primary key(c)"]);
  316.   report("Alter table add foreign key",'alter_add_foreign_key',
  317.      "alter table crash_q add constraint f1 foreign key(c) references crash_q1(c)");
  318.   try_and_report("Alter table drop foreign key",'alter_drop_foreign_key',
  319.          ["with drop constraint",
  320.           "alter table crash_q drop constraint f1"],
  321.          ["with drop foreign key",
  322.           "alter table crash_q drop foreign key f1"]);
  323.   try_and_report("Alter table drop primary key",'alter_drop_primary_key',
  324.          ["drop constraint",
  325.           "alter table crash_q1 drop constraint p1 restrict"],
  326.          ["drop primary key",
  327.           "alter table crash_q1 drop primary key"]);
  328. }
  329. $dbh->do("drop table crash_q");
  330. $dbh->do("drop table crash_q1");
  331.  
  332. check_and_report("case insensitive compare","case_insensitive_strings",
  333.          [],"select b from crash_me where b = 'A'",[],'a',1);
  334. check_and_report("ignore end space in compare","ignore_end_space",
  335.          [],"select b from crash_me where b = 'a '",[],'a',1);
  336. check_and_report("group on column with null values",'group_by_null',
  337.          ["create table crash_q (s char(10))",
  338.           "insert into crash_q values(null)",
  339.           "insert into crash_q values(null)"],
  340.          "select count(*) from crash_q group by s",
  341.          ["drop table crash_q"],2,0);
  342.  
  343. $prompt="Having";
  344. if (!defined($limits{'having'}))
  345. {                               # Complicated because of postgreSQL
  346.   if (!safe_query_result("select a from crash_me group by a having a > 0",1,0))
  347.   {
  348.     if (!safe_query_result("select a from crash_me group by a having a < 0",
  349.                1,0))
  350.     { save_config_data("having","error",$prompt); }
  351.     else
  352.     { save_config_data("having","yes",$prompt); }
  353.   }
  354.   else
  355.   { save_config_data("having","no",$prompt); }
  356. }
  357. print "$prompt: $limits{'having'}\n";
  358.  
  359. if ($limits{'having'} eq 'yes')
  360. {
  361.   report("Having with group function","having_with_group",
  362.      "select a from crash_me group by a having count(*) = 1");
  363. }
  364.  
  365. if ($limits{'column_alias'} eq 'yes')
  366. {
  367.   report("Order by alias",'order_by_alias',
  368.      "select a as ab from crash_me order by ab");
  369.   if ($limits{'having'} eq 'yes')
  370.   {
  371.     report("Having on alias","having_with_alias",
  372.        "select a as ab from crash_me group by a having ab > 0");
  373.   }
  374. }
  375. report("binary numbers (0b1001)","binary_numbers","select 0b1001 $end_query");
  376. report("hex numbers (0x41)","hex_numbers","select 0x41 $end_query");
  377. report("binary strings (b'0110')","binary_strings","select b'0110' $end_query");
  378. report("hex strings (x'1ace')","hex_strings","select x'1ace' $end_query");
  379.  
  380. report_result("Value of logical operation (1=1)","logical_value",
  381.           "select (1=1) $end_query");
  382.  
  383. $logical_value= $limits{'logical_value'};
  384.  
  385. $false=0;
  386. $result="no";
  387. if ($res=safe_query("select (1=1)=true $end_query")) {
  388.   $false="false";
  389.   $result="yes";
  390. }
  391. save_config_data('has_true_false',$result,"TRUE and FALSE");
  392.  
  393. #
  394. # Check how many connections the server can handle:
  395. # We can't test unlimited connections, because this may take down the
  396. # server...
  397. #
  398.  
  399. $prompt="Simultaneous connections (installation default)";
  400. print "$prompt: ";
  401. if (defined($limits{'connections'}))
  402. {
  403.   print "$limits{'connections'}\n";
  404. }
  405. else
  406. {
  407.   @connect=($dbh);
  408.  
  409.   for ($i=1; $i < $max_connections ; $i++)
  410.   {
  411.     if (!($dbh=DBI->connect($server->{'data_source'},$opt_user,$opt_password,
  412.               { PrintError => 0})))
  413.     {
  414.       print "Last connect error: $DBI::errstr\n" if ($opt_debug);
  415.       last;
  416.     }
  417.     $dbh->{LongReadLen}= $longreadlen; # Set retrieval buffer
  418.     print "." if ($opt_debug);
  419.     push(@connect,$dbh);
  420.   }
  421.   print "$i\n";
  422.   save_config_data('connections',$i,$prompt);
  423.   foreach $dbh (@connect)
  424.   {
  425.     print "#" if ($opt_debug);
  426.     $dbh->disconnect || warn $dbh->errstr;           # close connection
  427.   }
  428.  
  429.   $#connect=-1;                 # Free connections
  430.  
  431.   if ($i == 0)
  432.   {
  433.     print "Can't connect to server: $DBI::errstr.  Please start it and try again\n";
  434.     exit 1;
  435.   }
  436.   $dbh=safe_connect();
  437. }
  438.  
  439.  
  440. #
  441. # Check size of communication buffer, strings...
  442. #
  443.  
  444. $prompt="query size";
  445. print "$prompt: ";
  446. if (!defined($limits{'query_size'}))
  447. {
  448.   $query="select ";
  449.   $first=64;
  450.   $end=$max_buffer_size;
  451.   $select= $limits{'select_without_from'} eq 'yes' ? 1 : 'a';
  452.  
  453.   assert($query . "$select$end_query");
  454.  
  455.   $first=$limits{'restart'}{'low'} if ($limits{'restart'}{'low'});
  456.  
  457.   if ($limits{'restart'}{'tohigh'})
  458.   {
  459.     $end = $limits{'restart'}{'tohigh'} - 1;
  460.     print "\nRestarting this with low limit: $first and high limit: $end\n";
  461.     delete $limits{'restart'};
  462.     $first=$first+int(($end-$first+4)/5);           # Prefere lower on errors
  463.   }
  464.   for ($i=$first ; $i < $end ; $i*=2)
  465.   {
  466.     last if (!safe_query($query . (" " x ($i - length($query)-length($end_query) -1)) . "$select$end_query"));
  467.     $first=$i;
  468.     save_config_data("restart",$i,"") if ($opt_restart);
  469.   }
  470.   $end=$i;
  471.  
  472.   if ($i < $max_buffer_size)
  473.   {
  474.     while ($first != $end)
  475.     {
  476.       $i=int(($first+$end+1)/2);
  477.       if (safe_query($query .
  478.              (" " x ($i - length($query)-length($end_query) -1)) .
  479.              "$select$end_query"))
  480.       {
  481.     $first=$i;
  482.       }
  483.       else
  484.       {
  485.     $end=$i-1;
  486.       }
  487.     }
  488.   }
  489.   save_config_data('query_size',$end,$prompt);
  490. }
  491. $query_size=$limits{'query_size'};
  492.  
  493. print "$limits{'query_size'}\n";
  494. #
  495. # Test database types
  496. #
  497.  
  498. @sql_types=("character(1)","char(1)","char varying(1)", "character varying(1)",
  499.         "boolean",
  500.         "varchar(1)",
  501.         "integer","int","smallint",
  502.         "numeric(9,2)","decimal(6,2)","dec(6,2)",
  503.         "bit", "bit(2)","bit varying(2)","float","float(8)","real",
  504.         "double precision", "date","time","timestamp",
  505.         "interval year", "interval year to month",
  506.             "interval month",
  507.             "interval day", "interval day to hour", "interval day to minute",
  508.             "interval day to second",
  509.             "interval hour", "interval hour to minute", "interval hour to second",
  510.             "interval minute", "interval minute to second",
  511.             "interval second",
  512.         "national character varying(20)",
  513.         "national character(20)","nchar(1)",
  514.         "national char varying(20)","nchar varying(20)",
  515.         "national character varying(20)",
  516.         "timestamp with time zone");
  517. @odbc_types=("binary(1)","varbinary(1)","tinyint","bigint",
  518.          "datetime");
  519. @extra_types=("blob","byte","long varbinary","image","text","text(10)",
  520.           "mediumtext",
  521.           "long varchar(1)", "varchar2(257)",
  522.           "mediumint","middleint","int unsigned",
  523.           "int1","int2","int3","int4","int8","uint",
  524.           "money","smallmoney","float4","float8","smallfloat",
  525.           "float(6,2)","double",
  526.           "enum('red')","set('red')", "int(5) zerofill", "serial",
  527.           "char(10) binary","int not null auto_increment,unique(q)",
  528.           "abstime","year","datetime","smalldatetime","timespan","reltime",
  529.           # Sybase types
  530.           "int not null identity,unique(q)",
  531.           # postgres types
  532.           "box","bool","circle","polygon","point","line","lseg","path",
  533.           "interval", "serial", "inet", "cidr", "macaddr",
  534.  
  535.           # oracle types
  536.           "varchar2(16)","nvarchar2(16)","number(9,2)","number(9)",
  537.           "number", "long","raw(16)","long raw","rowid","mlslabel","clob",
  538.           "nclob","bfile"
  539.           );
  540.  
  541. @types=(["sql",\@sql_types],
  542.     ["odbc",\@odbc_types],
  543.     ["extra",\@extra_types]);
  544.  
  545. foreach $types (@types)
  546. {
  547.   print "\nSupported $types->[0] types\n";
  548.   $tmp=@$types->[1];
  549.   foreach $use_type (@$tmp)
  550.   {
  551.     $type=$use_type;
  552.     $type =~ s/\(.*\)/(1 arg)/;
  553.     if (index($use_type,",")>= 0)
  554.     {
  555.       $type =~ s/\(1 arg\)/(2 arg)/;
  556.     }
  557.     if (($tmp2=index($type,",unique")) >= 0)
  558.     {
  559.       $type=substr($type,0,$tmp2);
  560.     }
  561.     $tmp2=$type;
  562.     $tmp2 =~ s/ /_/g;
  563.     $tmp2 =~ s/_not_null//g;
  564.     report("Type $type","type_$types->[0]_$tmp2",
  565.        "create table crash_q (q $use_type)",
  566.        "drop table crash_q");
  567.   }
  568. }
  569.  
  570. #
  571. # Test some type limits
  572. #
  573.  
  574. check_and_report("Remembers end space in char()","remember_end_space",
  575.          ["create table crash_q (a char(10))",
  576.           "insert into crash_q values('hello ')"],
  577.          "select a from crash_q where a = 'hello '",
  578.          ["drop table crash_q"],
  579.          'hello ',6);
  580.  
  581. check_and_report("Remembers end space in varchar()",
  582.          "remember_end_space_varchar",
  583.          ["create table crash_q (a varchar(10))",
  584.           "insert into crash_q values('hello ')"],
  585.          "select a from crash_q where a = 'hello '",
  586.          ["drop table crash_q"],
  587.          'hello ',6);
  588.  
  589. check_and_report("Supports 0000-00-00 dates","date_zero",
  590.          ["create table crash_me2 (a date not null)",
  591.           "insert into crash_me2 values ('0000-00-00')"],
  592.          "select a from crash_me2",
  593.          ["drop table crash_me2"],
  594.          "0000-00-00",1);
  595.  
  596. check_and_report("Supports 0001-01-01 dates","date_one",
  597.          ["create table crash_me2 (a date not null)",
  598.           "insert into crash_me2 values (DATE '0001-01-01')"],
  599.          "select a from crash_me2",
  600.          ["drop table crash_me2"],
  601.          "0001-01-01",1);
  602.  
  603. check_and_report("Supports 9999-12-31 dates","date_last",
  604.          ["create table crash_me2 (a date not null)",
  605.           "insert into crash_me2 values (DATE '9999-12-31')"],
  606.          "select a from crash_me2",
  607.          ["drop table crash_me2"],
  608.          "9999-12-31",1);
  609.  
  610. check_and_report("Supports 'infinity dates","date_infinity",
  611.          ["create table crash_me2 (a date not null)",
  612.           "insert into crash_me2 values ('infinity')"],
  613.          "select a from crash_me2",
  614.          ["drop table crash_me2"],
  615.          "infinity",1);
  616.  
  617. if (!defined($limits{'date_with_YY'}))
  618. {
  619.     check_and_report("Supports YY-MM-DD dates","date_with_YY",
  620.              ["create table crash_me2 (a date not null)",
  621.               "insert into crash_me2 values ('98-03-03')"],
  622.              "select a from crash_me2",
  623.              ["drop table crash_me2"],
  624.              "1998-03-03",5);
  625.     if ($limits{'date_with_YY'} eq "yes")
  626.     {
  627.     undef($limits{'date_with_YY'});
  628.     check_and_report("Supports YY-MM-DD 2000 compilant dates",
  629.              "date_with_YY",
  630.              ["create table crash_me2 (a date not null)",
  631.               "insert into crash_me2 values ('10-03-03')"],
  632.              "select a from crash_me2",
  633.              ["drop table crash_me2"],
  634.              "2010-03-03",5);
  635.     }
  636. }
  637.  
  638. if (($limits{'type_extra_float(2_arg)'} eq "yes" ||
  639.     $limits{'type_sql_decimal(2_arg)'} eq "yes") &&
  640.     (!defined($limits{'storage_of_float'})))
  641. {
  642.   my $type=$limits{'type_extra_float(2_arg)'} eq "yes" ? "float(4,1)" :
  643.     "decimal(4,1)";
  644.   my $result="undefined";
  645.   if (execute_and_check(["create table crash_q (q1 $type)",
  646.              "insert into crash_q values(1.14)"],
  647.             "select q1 from crash_q",
  648.             ["drop table crash_q"],1.1,0) &&
  649.       execute_and_check(["create table crash_q (q1 $type)",
  650.              "insert into crash_q values(1.16)"],
  651.             "select q1 from crash_q",
  652.             ["drop table crash_q"],1.1,0))
  653.   {
  654.     $result="truncate";
  655.   }
  656.   elsif (execute_and_check(["create table crash_q (q1 $type)",
  657.                 "insert into crash_q values(1.14)"],
  658.                "select q1 from crash_q",
  659.                ["drop table crash_q"],1.1,0) &&
  660.      execute_and_check(["create table crash_q (q1 $type)",
  661.                 "insert into crash_q values(1.16)"],
  662.                "select q1 from crash_q",
  663.                ["drop table crash_q"],1.2,0))
  664.   {
  665.     $result="round";
  666.   }
  667.   elsif (execute_and_check(["create table crash_q (q1 $type)",
  668.                 "insert into crash_q values(1.14)"],
  669.                "select q1 from crash_q",
  670.                ["drop table crash_q"],1.14,0) &&
  671.      execute_and_check(["create table crash_q (q1 $type)",
  672.                 "insert into crash_q values(1.16)"],
  673.                "select q1 from crash_q",
  674.                ["drop table crash_q"],1.16,0))
  675.   {
  676.     $result="exact";
  677.   }
  678.   $prompt="Storage of float values";
  679.   print "$prompt: $result\n";
  680.   save_config_data("storage_of_float", $result, $prompt);
  681. }
  682.  
  683. try_and_report("Type for row id", "rowid",
  684.            ["rowid",
  685.         "create table crash_q (a rowid)","drop table crash_q"],
  686.            ["auto_increment",
  687.         "create table crash_q (a int not null auto_increment, primary key(a))","drop table crash_q"],
  688.            ["oid",
  689.         "create table crash_q (a oid, primary key(a))","drop table crash_q"],
  690.            ["serial",
  691.         "create table crash_q (a serial, primary key(a))","drop table crash_q"]);
  692.  
  693. try_and_report("Automatic rowid", "automatic_rowid",
  694.            ["_rowid",
  695.         "create table crash_q (a int not null, primary key(a))",
  696.         "insert into crash_q values (1)",
  697.         "select _rowid from crash_q",
  698.         "drop table crash_q"]);
  699.  
  700. #
  701. # Test functions
  702. #
  703.  
  704. @sql_functions=
  705.   (["+, -, * and /","+","5*3-4/2+1",14,0],
  706.    ["ANSI SQL SUBSTRING","substring","substring('abcd' from 2 for 2)","bc",1],
  707.    ["BIT_LENGTH","bit_length","bit_length('abc')",24,0],
  708.    ["searched CASE","searched_case","case when 1 > 2 then 'false' when 2 > 1 then 'true' end", "true",1],
  709.    ["simple CASE","simple_case","case 2 when 1 then 'false' when 2 then 'true' end", "true",1],
  710.    ["CAST","cast","CAST(1 as CHAR)","1",1],
  711.    ["CHARACTER_LENGTH","character_length","character_length('abcd')","4",0],
  712.    ["CHAR_LENGTH","char_length","char_length(b)","10",0],
  713.    ["CHAR_LENGTH(constant)","char_length(constant)","char_length('abcd')","4",0],
  714.    ["COALESCE","coalesce","coalesce($char_null,'bcd','qwe')","bcd",1],
  715.    ["CURRENT_DATE","current_date","current_date",0,2],
  716.    ["CURRENT_TIME","current_time","current_time",0,2],
  717.    ["CURRENT_TIMESTAMP","current_timestamp","current_timestamp",0,2],
  718.    ["CURRENT_USER","current_user","current_user",0,2],
  719.    ["EXTRACT","extract_sql","extract(minute from timestamp '2000-02-23 18:43:12.987')",43,0],
  720.    ["LOCALTIME","localtime","localtime",0,2],
  721.    ["LOCALTIMESTAMP","localtimestamp","localtimestamp",0,2],
  722.    ["LOWER","lower","LOWER('ABC')","abc",1],
  723.    ["NULLIF with strings","nullif_string","NULLIF(NULLIF('first','second'),'first')",undef(),4],
  724.    ["NULLIF with numbers","nullif_num","NULLIF(NULLIF(1,2),1)",undef(),4],
  725.    ["OCTET_LENGTH","octet_length","octet_length('abc')",3,0],
  726.    ["POSITION","position","position('ll' in 'hello')",3,0],
  727.    ["SESSION_USER","session_user","session_user",0,2],
  728.    ["SYSTEM_USER","system_user","system_user",0,2],
  729.    ["TRIM","trim","trim(trailing from trim(LEADING FROM ' abc '))","abc",3],
  730.    ["UPPER","upper","UPPER('abc')","ABC",1],
  731.    ["USER","user","user"],
  732.    ["concatenation with ||","concat_as_||","'abc' || 'def'","abcdef",1],
  733.    );
  734.  
  735. @odbc_functions=
  736.   (["ASCII", "ascii", "ASCII('A')","65",0],
  737.    ["CHAR", "char", "CHAR(65)"  ,"A",1],
  738.    ["CONCAT(2 arg)","concat", "concat('a','b')","ab",1],
  739.    ["DIFFERENCE()","difference","difference('abc','abe')",0,2],
  740.    ["INSERT","insert","insert('abcd',2,2,'ef')","aefd",1],
  741.    ["LEFT","left","left('abcd',2)","ab",1],
  742.    ["LTRIM","ltrim","ltrim('   abcd')","abcd",1],
  743.    ["REAL LENGTH","length","length('abcd ')","5",0],
  744.    ["ODBC LENGTH","length_without_space","length('abcd ')","4",0],
  745.    ["LOCATE(2 arg)","locate_2","locate('bcd','abcd')","2",0],
  746.    ["LOCATE(3 arg)","locate_3","locate('bcd','abcd',3)","0",0],
  747.    ["LCASE","lcase","lcase('ABC')","abc",1],
  748.    ["REPEAT","repeat","repeat('ab',3)","ababab",1],
  749.    ["REPLACE","replace","replace('abbaab','ab','ba')","bababa",1],
  750.    ["RIGHT","right","right('abcd',2)","cd",1],
  751.    ["RTRIM","rtrim","rtrim(' abcd  ')"," abcd",1],
  752.    ["SPACE","space","space(5)","     ",3],
  753.    ["SOUNDEX","soundex","soundex('hello')",0,2],
  754.    ["ODBC SUBSTRING","substring","substring('abcd',3,2)","cd",1],
  755.    ["UCASE","ucase","ucase('abc')","ABC",1],
  756.  
  757.    ["ABS","abs","abs(-5)",5,0],
  758.    ["ACOS","acos","acos(0)","1.570796",0],
  759.    ["ASIN","asin","asin(1)","1.570796",0],
  760.    ["ATAN","atan","atan(1)","0.785398",0],
  761.    ["ATAN2","atan2","atan2(1,0)","1.570796",0],
  762.    ["CEILING","ceiling","ceiling(-4.5)",-4,0],
  763.    ["COS","cos","cos(0)","1.00000",0],
  764.    ["COT","cot","cot(1)","0.64209262",0],
  765.    ["DEGREES","degrees","degrees(6.283185)","360",0],
  766.    ["EXP","exp","exp(1.0)","2.718282",0],
  767.    ["FLOOR","floor","floor(2.5)","2",0],
  768.    ["LOG","log","log(2)","0.693147",0],
  769.    ["LOG10","log10","log10(10)","1",0],
  770.    ["MOD","mod","mod(11,7)","4",0],
  771.    ["PI","pi","pi()","3.141593",0],
  772.    ["POWER","power","power(2,4)","16",0],
  773.    ["RAND","rand","rand(1)",0,2],       # Any value is acceptable
  774.    ["RADIANS","radians","radians(360)","6.283185",0],
  775.    ["ROUND(2 arg)","round","round(5.63,2)","5.6",0],
  776.    ["SIGN","sign","sign(-5)",-1,0],
  777.    ["SIN","sin","sin(1)","0.841471",0],
  778.    ["SQRT","sqrt","sqrt(4)",2,0],
  779.    ["TAN","tan","tan(1)","1.557408",0],
  780.    ["TRUNCATE","truncate","truncate(18.18,-1)",10,0],
  781.    ["NOW","now","now()",0,2],           # Any value is acceptable
  782.    ["CURDATE","curdate","curdate()",0,2],
  783.    ["DAYNAME","dayname","dayname(DATE '1997-02-01')","",2],
  784.    ["MONTH","month","month(DATE '1997-02-01')","",2],
  785.    ["MONTHNAME","monthname","monthname(DATE '1997-02-01')","",2],
  786.    ["DAYOFMONTH","dayofmonth","dayofmonth(DATE '1997-02-01')",1,0],
  787.    ["DAYOFWEEK","dayofweek","dayofweek(DATE '1997-02-01')",7,0],
  788.    ["DAYOFYEAR","dayofyear","dayofyear(DATE '1997-02-01')",32,0],
  789.    ["QUARTER","quarter","quarter(DATE '1997-02-01')",1,0],
  790.    ["WEEK","week","week(DATE '1997-02-01')",5,0],
  791.    ["YEAR","year","year(DATE '1997-02-01')",1997,0],
  792.    ["CURTIME","curtime","curtime()",0,2],
  793.    ["HOUR","hour","hour('12:13:14')",12,0],
  794.    ["ANSI HOUR","hour_time","hour(TIME '12:13:14')",12,0],
  795.    ["MINUTE","minute","minute('12:13:14')",13,0],
  796.    ["SECOND","second","second('12:13:14')",14,0],
  797.    ["TIMESTAMPADD","timestampadd",
  798.     "timestampadd(SQL_TSI_SECOND,1,'1997-01-01 00:00:00')",
  799.     "1997-01-01 00:00:01",1],
  800.    ["TIMESTAMPDIFF","timestampdiff",
  801.     "timestampdiff(SQL_TSI_SECOND,'1997-01-01 00:00:02', '1997-01-01 00:00:01')","1",0],
  802.    ["USER()","user()","user()",0,2],
  803.    ["DATABASE","database","database()",0,2],
  804.    ["IFNULL","ifnull","ifnull(2,3)",2,0],
  805.    ["ODBC syntax LEFT & RIGHT", "fn_left",
  806.     "{ fn LEFT( { fn RIGHT('abcd',2) },1) }","c",1],
  807.    );
  808.  
  809. @extra_functions=
  810.   (
  811.    ["& (bitwise and)",'&',"5 & 3",1,0],
  812.    ["| (bitwise or)",'|',"1 | 2",3,0],
  813.    ["<< and >> (bitwise shifts)",'binary_shifts',"(1 << 4) >> 2",4,0],
  814.    ["<> in SELECT","<>","1<>1","0",0],
  815.    ["=","=","(1=1)",1,$logical_value],
  816.    ["~* (case insensitive compare)","~*","'hi' ~* 'HI'",1,$logical_value],
  817.    ["ADD_MONTHS","add_months","add_months('1997-01-01',1)","1997-02-01",0], # oracle the date plus n months
  818.    ["AND and OR in SELECT","and_or","1=1 AND 2=2",$logical_value,0],
  819.    ["AND as '&&'",'&&',"1=1 && 2=2",$logical_value,0],
  820.    ["ASCII_CHAR", "ascii_char", "ASCII_CHAR(65)","A",1],
  821.    ["ASCII_CODE", "ascii_code", "ASCII_CODE('A')","65",0],
  822.    ["ATN2","atn2","atn2(1,0)","1.570796",0],
  823.    ["BETWEEN in SELECT","between","5 between 4 and 6",$logical_value,0],
  824.    ["BIT_COUNT","bit_count","bit_count(5)",2,0],
  825.    ["CEIL","ceil","ceil(-4.5)",-4,0], # oracle
  826.    ["CHARINDEX","charindex","charindex('a','crash')",3,0],
  827.    ["CHR", "chr", "CHR(65)"  ,"A",1], # oracle
  828.    ["CONCAT(list)","concat_list", "concat('a','b','c','d')","abcd",1],
  829.    ["CONVERT","convert","convert(CHAR,5)","5",1],
  830.    ["COSH","cosh","cosh(0)","1",0], # oracle hyperbolic cosine of n.
  831.    ["DATEADD","dateadd","dateadd(day,3,'Nov 30 1997')",0,2],
  832.    ["DATEDIFF","datediff","datediff(month,'Oct 21 1997','Nov 30 1997')",0,2],
  833.    ["DATENAME","datename","datename(month,'Nov 30 1997')",0,2],
  834.    ["DATEPART","datepart","datepart(month,'July 20 1997')",0,2],
  835.    ["DATE_FORMAT","date_format", "date_format('1997-01-02 03:04:05','M W D Y y m d h i s w')", 0,2],
  836.    ["ELT","elt","elt(2,'ONE','TWO','THREE')","TWO",1],
  837.    ["ENCRYPT","encrypt","encrypt('hello')",0,2],
  838.    ["FIELD","field","field('IBM','NCA','ICL','SUN','IBM','DIGITAL')",4,0],
  839.    ["FORMAT","format","format(1234.5555,2)","1,234.56",1],
  840.    ["FROM_DAYS","from_days","from_days(729024)","1996-01-01",1],
  841.    ["FROM_UNIXTIME","from_unixtime","from_unixtime(0)",0,2],
  842.    ["GETDATE","getdate","getdate()",0,2],
  843.    ["GREATEST","greatest","greatest('HARRY','HARRIOT','HAROLD')","HARRY",1], # oracle
  844.    ["IF","if", "if(5,6,7)",6,0],
  845.    ["IN on numbers in SELECT","in_num","2 in (3,2,5,9,5,1)",$logical_value,0],
  846.    ["IN on strings in SELECT","in_str","'monty' in ('david','monty','allan')", $logical_value,0],
  847.    ["INITCAP","initcap","initcap('the soap')","The Soap",1], # oracle Returns char, with the first letter of each word in uppercase
  848.    ["INSTR (Oracle syntax)", "instr_oracle", "INSTR('CORPORATE FLOOR','OR',3,2)"  ,"14",0], # oracle instring
  849.    ["INSTRB", "instrb", "INSTRB('CORPORATE FLOOR','OR',5,2)"  ,"27",0], # oracle instring in bytes
  850.    ["INTERVAL","interval","interval(55,10,20,30,40,50,60,70,80,90,100)",5,0],
  851.    ["LAST_DAY","last_day","last_day('1997-04-01')","1997-04-30",0], # oracle last day of month of date
  852.    ["LAST_INSERT_ID","last_insert_id","last_insert_id()",0,2],
  853.    ["LEAST","least","least('HARRY','HARRIOT','HAROLD')","HAROLD",1], # oracle
  854.    ["LENGTHB","lengthb","lengthb('CANDIDE')","14",0], # oracle length in bytes
  855.    ["LIKE ESCAPE in SELECT","like_escape","'%' like 'a%' escape 'a'",$logical_value,0],
  856.    ["LIKE in SELECT","like","'a' like 'a%'",$logical_value,0],
  857.    ["LN","ln","ln(95)","4.55387689",0], # oracle natural logarithm of n
  858.    ["LOCATE as INSTR","instr","instr('hello','ll')",3,0],
  859.    ["LOG(m,n)","log(m_n)","log(10,100)","2",0], # oracle logarithm, base m, of n
  860.    ["LOGN","logn","logn(2)","0.693147",0], # informix
  861.    ["LPAD","lpad","lpad('hi',4,'??')",'??hi',3],
  862.    ["MDY","mdy","mdy(7,1,1998)","1998-07-01",0], # informix
  863.    ["MOD as %","%","10%7","3",0],
  864.    ["MONTHS_BETWEEN","months_between","months_between('1997-02-02','1997-01-01')","1.03225806",0], # oracle number of months between 2 dates
  865.    ["NOT BETWEEN in SELECT","not_between","5 not between 4 and 6",0,0],
  866.    ["NOT LIKE in SELECT","not_like","'a' not like 'a%'",0,0],
  867.    ["NOT as '!' in SELECT","!","! 1",0,0],
  868.    ["NOT in SELECT","not","not $false",$logical_value,0],
  869.    ["ODBC CONVERT","odbc_convert","convert(5,SQL_CHAR)","5",1],
  870.    ["OR as '||'",'||',"1=0 || 1=1",$logical_value,0],
  871.    ["PASSWORD","password","password('hello')",0,2],
  872.    ["PASTE", "paste", "paste('ABCDEFG',3,2,'1234')","AB1234EFG",1],
  873.    ["PATINDEX","patindex","patindex('%a%','crash')",3,0],
  874.    ["PERIOD_ADD","period_add","period_add(9602,-12)",199502,0],
  875.    ["PERIOD_DIFF","period_diff","period_diff(199505,199404)",13,0],
  876.    ["POW","pow","pow(3,2)",9,0],
  877.    ["RANGE","range","range(a)","0.0",0], # informix range(a) = max(a) - min(a)
  878.    ["REGEXP in SELECT","regexp","'a' regexp '^(a|b)*\$'",$logical_value,0],
  879.    ["REPLICATE","replicate","replicate('a',5)","aaaaa",1],
  880.    ["REVERSE","reverse","reverse('abcd')","dcba",1],
  881.    ["ROOT","root","root(4)",2,0], # informix
  882.    ["ROUND(1 arg)","round1","round(5.63)","6",0],
  883.    ["RPAD","rpad","rpad('hi',4,'??')",'hi??',3],
  884.    ["SEC_TO_TIME","sec_to_time","sec_to_time(5001)","01:23:21",1],
  885.    ["SINH","sinh","sinh(1)","1.17520119",0], # oracle hyperbolic sine of n
  886.    ["STR","str","str(123.45,5,1)",123.5,3],
  887.    ["STRCMP","strcmp","strcmp('abc','adc')",-1,0],
  888.    ["STUFF","stuff","stuff('abc',2,3,'xyz')",'axyz',3],
  889.    ["SUBSTRB", "substrb", "SUBSTRB('ABCDEFG',5,4.2)"  ,"CD",1], # oracle substring with bytes
  890.    ["SUBSTRING as MID","mid","mid('hello',3,2)","ll",1],
  891.    ["SUBSTRING_INDEX","substring_index","substring_index('www.tcx.se','.',-2)", "tcx.se",1],
  892.    ["SYSDATE","sysdate","sysdate()",0,2],
  893.    ["TAIL","tail","tail('ABCDEFG',3)","EFG",0],
  894.    ["TANH","tanh","tanh(1)","0.462117157",0], # oracle hyperbolic tangent of n
  895.    ["TIME_TO_SEC","time_to_sec","time_to_sec('01:23:21')","5001",0],
  896.    ["TO_DAYS","to_days","to_days(DATE '1996-01-01')",729024,0],
  897.    ["TRANSLATE","translate","translate('abc','bc','de')",'ade',3],
  898.    ["TRIM; Many char extension","trim_many_char","trim(':!' FROM ':abc!')","abc",3],
  899.    ["TRIM; Substring extension","trim_substring","trim('cb' FROM 'abccb')","abc",3],
  900.    ["TRUNC","trunc","trunc(18.18,-1)",10,0], # oracle
  901.    ["UID","uid","uid",0,2], # oracle uid from user
  902.    ["UNIX_TIMESTAMP","unix_timestamp","unix_timestamp()",0,2],
  903.    ["USERENV","userenv","userenv",0,2], # oracle user enviroment
  904.    ["VERSION","version","version()",0,2],
  905.    ["WEEKDAY","weekday","weekday(DATE '1997-11-29')",5,0],
  906.    ["automatic num->string convert","auto_num2string","concat('a',2)","a2",1],
  907.    ["automatic string->num convert","auto_string2num","'1'+2",3,0],
  908.    ["concatenation with +","concat_as_+","'abc' + 'def'","abcdef",1],
  909.    );
  910.  
  911. @sql_group_functions=
  912.   (
  913.    ["AVG","avg","avg(a)",1,0],
  914.    ["COUNT (*)","count_*","count(*)",1,0],
  915.    ["COUNT column name","count_column","count(a)",1,0],
  916.    ["COUNT(DISTINCT expr)","count_distinct","count(distinct a)",1,0],
  917.    ["MAX on numbers","max","max(a)",1,0],
  918.    ["MAX on strings","max_str","max(b)","a",1],
  919.    ["MIN on numbers","min","min(a)",1,0],
  920.    ["MIN on strings","min_str","min(b)","a",1],
  921.    ["SUM","sum","sum(a)",1,0],
  922.    ["ANY","any","any(a)",$logical_value,0],
  923.    ["EVERY","every","every(a)",$logical_value,0],
  924.    ["SOME","some","some(a)",$logical_value,0],
  925.    );
  926.  
  927. @extra_group_functions=
  928.   (
  929.    ["BIT_AND",'bit_and',"bit_and(a)",1,0],
  930.    ["BIT_OR", 'bit_or', "bit_or(a)",1,0],
  931.    ["COUNT(DISTINCT expr,expr,...)","count_distinct_list","count(distinct a,b)",1,0],
  932.    ["STD","std","std(a)",0,0],
  933.    ["STDDEV","stddev","stddev(a)",0,0],
  934.    ["VARIANCE","variance","variance(a)",0,0],
  935.    );
  936.  
  937. @where_functions=
  938. (
  939.  ["= ALL","eq_all","b =all (select b from crash_me)",1,0],
  940.  ["= ANY","eq_any","b =any (select b from crash_me)",1,0],
  941.  ["= SOME","eq_some","b =some (select b from crash_me)",1,0],
  942.  ["BETWEEN","between","5 between 4 and 6",1,0],
  943.  ["EXISTS","exists","exists (select * from crash_me)",1,0],
  944.  ["IN on numbers","in_num","2 in (3,2,5,9,5,1)",1,0],
  945.  ["LIKE ESCAPE","like_escape","b like '%' escape 'a'",1,0],
  946.  ["LIKE","like","b like 'a%'",1,0],
  947.  ["MATCH UNIQUE","match_unique","1 match unique (select a from crash_me)",1,0],
  948.  ["MATCH","match","1 match (select a from crash_me)",1,0],
  949.  ["MATCHES","matches","b matcjhes 'a*'",1,0],
  950.  ["NOT BETWEEN","not_between","7 not between 4 and 6",1,0],
  951.  ["NOT EXISTS","not_exists","not exists (select * from crash_me where a = 2)",1,0],
  952.  ["NOT LIKE","not_like","b not like 'b%'",1,0],
  953.  ["NOT UNIQUE","not_unique","not unique (select * from crash_me where a = 2)",1,0],
  954.  ["UNIQUE","unique","unique (select * from crash_me)",1,0],
  955.  );
  956.  
  957. @types=(["sql",\@sql_functions,0],
  958.     ["odbc",\@odbc_functions,0],
  959.     ["extra",\@extra_functions,0],
  960.     ["where",\@where_functions,0]);
  961.  
  962. @group_types=(["sql",\@sql_group_functions,0],
  963.           ["extra",\@extra_group_functions,0]);
  964.  
  965.  
  966. foreach $types (@types)
  967. {
  968.   print "\nSupported $types->[0] functions\n";
  969.   $tmp=@$types->[1];
  970.   foreach $type (@$tmp)
  971.   {
  972.     if (defined($limits{"func_$types->[0]_$type->[1]"}))
  973.     {
  974.       next;
  975.     }
  976.     if ($types->[0] eq "where")
  977.     {
  978.       check_and_report("Function $type->[0]","func_$types->[0]_$type->[1]",
  979.                [],"select a from crash_me where $type->[2]",[],
  980.                $type->[3],$type->[4]);
  981.     }
  982.     elsif ($limits{'functions'} eq 'yes')
  983.     {
  984.       if (($type->[2] =~ /char_length\(b\)/) && (!$end_query))
  985.       {
  986.     my $tmp= $type->[2];
  987.     $tmp .= " from crash_me ";
  988.     undef($limits{"func_$types->[0]_$type->[1]"});
  989.     check_and_report("Function $type->[0]",
  990.              "func_$types->[0]_$type->[1]",
  991.              [],"select $tmp ",[],
  992.              $type->[3],$type->[4]);
  993.       }
  994.       else
  995.       {
  996.     undef($limits{"func_$types->[0]_$type->[1]"});
  997.     $result = check_and_report("Function $type->[0]",
  998.                 "func_$types->[0]_$type->[1]",
  999.                 [],"select $type->[2] $end_query",[],
  1000.                 $type->[3],$type->[4]);
  1001.     if (!$result)
  1002.     {
  1003.       # check without type specifyer
  1004.       if ($type->[2] =~ /DATE /)
  1005.       {
  1006.         my $tmp= $type->[2];
  1007.         $tmp =~ s/DATE //;
  1008.         undef($limits{"func_$types->[0]_$type->[1]"});
  1009.         $result = check_and_report("Function $type->[0]",
  1010.                   "func_$types->[0]_$type->[1]",
  1011.                   [],"select $tmp $end_query",[],
  1012.                   $type->[3],$type->[4]);
  1013.       }
  1014.       if (!$result)
  1015.       {
  1016.         if ($types->[0] eq "odbc" && ! ($type->[2] =~ /\{fn/))
  1017.         {
  1018.          my $tmp= $type->[2];
  1019.          # Check by converting to ODBC format
  1020.          undef($limits{"func_$types->[0]_$type->[1]"});
  1021.          $tmp= "{fn $tmp }";
  1022.          $tmp =~ s/('1997-\d\d-\d\d \d\d:\d\d:\d\d')/{ts $1}/g;
  1023.          $tmp =~ s/(DATE '1997-\d\d-\d\d')/{d $1}/g;
  1024.          $tmp =~ s/(TIME '12:13:14')/{t $1}/g;
  1025.          $tmp =~ s/DATE //;
  1026.          $tmp =~ s/TIME //;
  1027.          check_and_report("Function $type->[0]",
  1028.                   "func_$types->[0]_$type->[1]",
  1029.                   [],"select $tmp $end_query",[],
  1030.                   $type->[3],$type->[4]);
  1031.         }
  1032.       }
  1033.         }
  1034.       }
  1035.     }
  1036.   }
  1037. }
  1038.  
  1039. if ($limits{'functions'} eq 'yes')
  1040. {
  1041.   foreach $types (@group_types)
  1042.   {
  1043.     print "\nSupported $types->[0] group functions\n";
  1044.     $tmp=@$types->[1];
  1045.     foreach $type (@$tmp)
  1046.     {
  1047.       check_and_report("Group function $type->[0]",
  1048.                "group_func_$types->[0]_$type->[1]",
  1049.                [],"select $type->[2],a from crash_me group by a",[],
  1050.                $type->[3],$type->[4]);
  1051.     }
  1052.   }
  1053.   print "\n";
  1054.   report("mixing of integer and float in expression","float_int_expr",
  1055.      "select 1+1.0 $end_query");
  1056.   if ($limits{'func_odbc_exp'} eq 'yes')
  1057.   {
  1058.     report("No need to cast from integer to float",
  1059.        "dont_require_cast_to_float", "select exp(1) $end_query");
  1060.   }
  1061.   check_and_report("Is 1+NULL = NULL","null_num_expr",
  1062.            [],"select 1+$numeric_null $end_query",[],undef(),4);
  1063.   $tmp=sql_concat("'a'",$char_null);
  1064.   if (defined($tmp))
  1065.   {
  1066.     check_and_report("Is $tmp = NULL", "null_concat_expr", [],
  1067.              "select $tmp $end_query",[], undef(),4);
  1068.   }
  1069.   $prompt="Need to cast NULL for arithmetic";
  1070.   save_config_data("Need_cast_for_null",
  1071.            ($numeric_null eq "NULL") ? "no" : "yes",
  1072.            $prompt);
  1073. }
  1074. else
  1075. {
  1076.   print "\n";
  1077. }
  1078.  
  1079.  
  1080. report("LIKE on numbers","like_with_number",
  1081.        "create table crash_q (a int,b int)",
  1082.        "insert into crash_q values(10,10)",
  1083.        "select * from crash_q where a like '10'",
  1084.        "drop table crash_q");
  1085.  
  1086. report("column LIKE column","like_with_column",
  1087.        "create table crash_q (a char(10),b char(10))",
  1088.        "insert into crash_q values('abc','abc')",
  1089.        "select * from crash_q where a like b",
  1090.        "drop table crash_q");
  1091.  
  1092. report("update of column= -column","NEG",
  1093.        "create table crash_q (a integer)",
  1094.        "insert into crash_q values(10)",
  1095.        "update crash_q set a=-a",
  1096.        "drop table crash_q");
  1097.  
  1098. if ($limits{'func_odbc_left'} eq 'yes' ||
  1099.     $limits{'func_odbc_substring'} eq 'yes')
  1100. {
  1101.   my $type= ($limits{'func_odbc_left'} eq 'yes' ?
  1102.          "left(a,4)" : "substring(a for 4)");
  1103.  
  1104.     check_and_report("String functions on date columns","date_as_string",
  1105.              ["create table crash_me2 (a date not null)",
  1106.               "insert into crash_me2 values ('1998-03-03')"],
  1107.              "select $type from crash_me2",
  1108.              ["drop table crash_me2"],
  1109.              "1998",1);
  1110. }
  1111.  
  1112.  
  1113. $tmp=sql_concat("b","b");
  1114. if (defined($tmp))
  1115. {
  1116.   check_and_report("char are space filled","char_is_space_filled",
  1117.            [],"select $tmp from crash_me where b = 'a         '",[],
  1118.            'a         a         ',6);
  1119. }
  1120.  
  1121. if (!defined($limits{'multi_table_update'}))
  1122. {
  1123.   if (check_and_report("Update with many tables","multi_table_update",
  1124.            ["create table crash_q (a integer,b char(10))",
  1125.             "insert into crash_q values(1,'c')",
  1126.             "update crash_q left join crash_me on crash_q.a=crash_me.a set crash_q.b=crash_me.b"],
  1127.            "select b from crash_q",
  1128.            ["drop table crash_q"],
  1129.            "a",1,undef(),2))
  1130.   {
  1131.     check_and_report("Update with many tables","multi_table_update",
  1132.              ["create table crash_q (a integer,b char(10))",
  1133.               "insert into crash_q values(1,'c')",
  1134.               "update crash_q,crash_me set crash_q.b=crash_me.b where crash_q.a=crash_me.a"],
  1135.              "select b from crash_q",
  1136.              ["drop table crash_q"],
  1137.              "a",1,
  1138.             1);
  1139.   }
  1140. }
  1141.  
  1142. report("DELETE FROM table1,table2...","multi_table_delete",
  1143.        "create table crash_q (a integer,b char(10))",
  1144.        "insert into crash_q values(1,'c')",
  1145.        "delete crash_q.* from crash_q,crash_me where crash_q.a=crash_me.a",
  1146.        "drop table crash_q");
  1147.  
  1148. check_and_report("Update with sub select","select_table_update",
  1149.          ["create table crash_q (a integer,b char(10))",
  1150.           "insert into crash_q values(1,'c')",
  1151.           "update crash_q set b= (select b from crash_me where crash_q.a = crash_me.a)"],
  1152.          "select b from crash_q",
  1153.          ["drop table crash_q"],
  1154.          "a",1);
  1155.  
  1156. check_and_report("Calculate 1--1","minus_neg",[],
  1157.          "select a--1 from crash_me",[],0,2);
  1158.  
  1159. report("ANSI SQL simple joins","simple_joins",
  1160.        "select crash_me.a from crash_me, crash_me t0");
  1161.  
  1162. #
  1163. # Check max string size, and expression limits
  1164. #
  1165. $found=undef;
  1166. foreach $type (('mediumtext','text','text()','blob','long'))
  1167. {
  1168.   if ($limits{"type_extra_$type"} eq 'yes')
  1169.   {
  1170.     $found=$type;
  1171.     last;
  1172.   }
  1173. }
  1174. if (defined($found))
  1175. {
  1176.   $found =~ s/\(\)/\(%d\)/;
  1177.   find_limit("max text or blob size","max_text_size",
  1178.          new query_many(["create table crash_q (q $found)",
  1179.                  "insert into crash_q values ('%s')"],
  1180.                 "select * from crash_q","%s",
  1181.                 ["drop table crash_q"],
  1182.                 min($max_string_size,$limits{'query_size'}-30)));
  1183.  
  1184. }
  1185.  
  1186. # It doesn't make lots of sense to check for string lengths much bigger than
  1187. # what can be stored...
  1188.  
  1189. find_limit(($prompt="constant string size in where"),"where_string_size",
  1190.        new query_repeat([],"select a from crash_me where b <'",
  1191.                 "","","a","","'"));
  1192. if ($limits{'where_string_size'} == 10)
  1193. {
  1194.   save_config_data('where_string_size','nonstandard',$prompt);
  1195. }
  1196.  
  1197. if ($limits{'select_constants'} eq 'yes')
  1198. {
  1199.   find_limit("constant string size in SELECT","select_string_size",
  1200.          new query_repeat([],"select '","","","a","","'$end_query"));
  1201. }
  1202.  
  1203. goto no_functions if ($limits{'functions'} ne "yes");
  1204.  
  1205. if ($limits{'func_odbc_repeat'} eq 'yes')
  1206. {
  1207.   find_limit("return string size from function","repeat_string_size",
  1208.          new query_many([],
  1209.                 "select repeat('a',%d) $end_query","%s",
  1210.                 [],
  1211.                 $max_string_size,0));
  1212. }
  1213.  
  1214. $tmp=find_limit("simple expressions","max_expressions",
  1215.         new query_repeat([],"select 1","","","+1","",$end_query,
  1216.                  undef(),$max_expressions));
  1217.  
  1218. if ($tmp > 10)
  1219. {
  1220.   $tmp= "(1" . ( '+1' x ($tmp-10) ) . ")";
  1221.   find_limit("big expressions", "max_big_expressions",
  1222.          new query_repeat([],"select 0","","","+$tmp","",$end_query,
  1223.                   undef(),$max_big_expressions));
  1224. }
  1225.  
  1226. find_limit("stacked expressions", "max_stack_expression",
  1227.        new query_repeat([],"select 1","","","+(1",")",$end_query,
  1228.                 undef(),$max_stacked_expressions));
  1229.  
  1230. no_functions:
  1231.  
  1232. if (!defined($limits{'max_conditions'}))
  1233. {
  1234.   find_limit("OR and AND in WHERE","max_conditions",
  1235.          new query_repeat([],
  1236.                   "select a from crash_me where a=1 and b='a'","",
  1237.                   "", " or a=%d and b='%d'","","","",
  1238.                   [],($query_size-42)/29,undef,2));
  1239.   $limits{'max_conditions'}*=2;
  1240. }
  1241. # The 42 is the length of the constant part.
  1242. # The 29 is the length of the variable part, plus two seven-digit numbers.
  1243.  
  1244. find_limit("tables in join", "join_tables",
  1245.        new query_repeat([],
  1246.                 "select crash_me.a",",t%d.a","from crash_me",
  1247.                 ",crash_me t%d","","",[],$max_join_tables,undef,
  1248.                 1));
  1249.  
  1250. # Different CREATE TABLE options
  1251.  
  1252. report("primary key in create table",'primary_key_in_create',
  1253.        "create table crash_q (q integer not null,primary key (q))",
  1254.        "drop table crash_q");
  1255.  
  1256. report("unique in create table",'unique_in_create',
  1257.        "create table crash_q (q integer not null,unique (q))",
  1258.        "drop table crash_q");
  1259.  
  1260. if ($limits{'unique_in_create'} eq 'yes')
  1261. {
  1262.   report("unique null in create",'unique_null_in_create',
  1263.      "create table crash_q (q integer,unique (q))",
  1264.      "insert into crash_q (q) values (NULL)",
  1265.      "insert into crash_q (q) values (NULL)",
  1266.      "insert into crash_q (q) values (1)",
  1267.      "drop table crash_q");
  1268. }
  1269.  
  1270. report("default value for column",'create_default',
  1271.        "create table crash_q (q integer default 10 not null)",
  1272.        "drop table crash_q");
  1273.  
  1274. report("default value function for column",'create_default_func',
  1275.        "create table crash_q (q integer not null,q1 integer default (1+1)",
  1276.        "drop table crash_q");
  1277.  
  1278. report("temporary tables",'tempoary_table',
  1279.        "create temporary table crash_q (q integer not null)",
  1280.        "drop table crash_q");
  1281.  
  1282. report_one("create table from select",'create_table_select',
  1283.        [["create table crash_q SELECT * from crash_me","yes"],
  1284.         ["create table crash_q AS SELECT * from crash_me","with AS"]]);
  1285. $dbh->do("drop table crash_q");
  1286.  
  1287. report("index in create table",'index_in_create',
  1288.        "create table crash_q (q integer not null,index (q))",
  1289.        "drop table crash_q");
  1290.  
  1291. # The following must be executed as we need the value of end_drop_keyword
  1292. # later
  1293. if (! defined($limits{'create_index'}) &&
  1294.     ! defined($limits{'drop_index'}) )
  1295. {
  1296.   if ($res=safe_query("create index crash_q on crash_me (a)"))
  1297.   {
  1298.     $res="yes";
  1299.     $drop_res="yes";
  1300.     $end_drop_keyword="";
  1301.     if (!safe_query("drop index crash_q"))
  1302.     {
  1303.       # Can't drop the standard way; Check if mSQL
  1304.       if (safe_query("drop index crash_q from crash_me"))
  1305.       {
  1306.         $drop_res="with 'FROM'";    # Drop is not ANSI SQL
  1307.         $end_drop_keyword="drop index %i from %t";
  1308.       }
  1309.       # else check if Access or MySQL
  1310.       elsif (safe_query("drop index crash_q on crash_me"))
  1311.       {
  1312.         $drop_res="with 'ON'";    # Drop is not ANSI SQL
  1313.         $end_drop_keyword="drop index %i on %t";
  1314.       }
  1315.       # else check if MS-SQL
  1316.       elsif (safe_query("drop index crash_me.crash_q"))
  1317.       {
  1318.         $drop_res="with 'table.index'"; # Drop is not ANSI SQL
  1319.         $end_drop_keyword="drop index %t.%i";
  1320.       }
  1321.     }
  1322.     else
  1323.     {
  1324.       # Old MySQL 3.21 supports only the create index syntax
  1325.       # This means that the second create doesn't give an error.
  1326.       $res=safe_query(["create index crash_q on crash_me (a)",
  1327.                    "create index crash_q on crash_me (a)",
  1328.                    "drop index crash_q"]);
  1329.       $res= $res ? 'ignored' : 'yes';
  1330.     }
  1331.   }
  1332.   else
  1333.   {
  1334.     $drop_res=$res='no';
  1335.   }
  1336.   save_config_data('create_index',$res,"create index");
  1337.   save_config_data('drop_index',$drop_res,"drop index");
  1338.  
  1339.   print "create index: $limits{'create_index'}\n";
  1340.   print "drop index: $limits{'drop_index'}\n";
  1341. }
  1342.  
  1343. # check if we can have 'NULL' as a key
  1344. check_and_report("null in index","null_in_index",
  1345.          [create_table("crash_q",["a char(10)"],["(a)"]),
  1346.           "insert into crash_q values (NULL)"],
  1347.          "select * from crash_q",
  1348.          ["drop table crash_q"],
  1349.          undef(),4);
  1350.  
  1351. if ($limits{'unique_in_create'} eq 'yes')
  1352. {
  1353.   report("null in unique index",'null_in_unique',
  1354.           create_table("crash_q",["q integer"],["unique(q)"]),
  1355.      "insert into crash_q (q) values(NULL)",
  1356.      "insert into crash_q (q) values(NULL)",
  1357.      "drop table crash_q");
  1358. }
  1359.  
  1360. if ($limits{'null_in_unique'} eq 'yes')
  1361. {
  1362.   report("null in unique index",'multi_null_in_unique',
  1363.           create_table("crash_q",["q integer, x integer"],["unique(q)"]),
  1364.      "insert into crash_q(x) values(1)",
  1365.      "insert into crash_q(x) values(2)",
  1366.      "drop table crash_q");
  1367. }
  1368.  
  1369. if ($limits{'create_index'} ne 'no')
  1370. {
  1371.   $end_drop=$end_drop_keyword;
  1372.   $end_drop =~ s/%i/crash_q/;
  1373.   $end_drop =~ s/%t/crash_me/;
  1374.   report("index on column part (extension)","index_parts",,
  1375.      "create index crash_q on crash_me (b(5))",
  1376.      $end_drop);
  1377.   $end_drop=$end_drop_keyword;
  1378.   $end_drop =~ s/%i/crash_me/;
  1379.   $end_drop =~ s/%t/crash_me/;
  1380.   report("different namespace for index",
  1381.      "index_namespace",
  1382.      "create index crash_me on crash_me (b)",
  1383.      $end_drop);
  1384. }
  1385.  
  1386. if (!report("case independent table names","table_name_case",
  1387.         "create table crash_q (q integer)",
  1388.         "drop table CRASH_Q"))
  1389. {
  1390.   safe_query("drop table crash_q");
  1391. }
  1392.  
  1393. if (!report("drop table if exists","drop_if_exists",
  1394.         "create table crash_q (q integer)",
  1395.         "drop table if exists crash_q"))
  1396. {
  1397.   safe_query("drop table crash_q");
  1398. }
  1399.  
  1400. report("create table if not exists","create_if_not_exists",
  1401.        "create table crash_q (q integer)",
  1402.        "create table if not exists crash_q (q integer)");
  1403. safe_query("drop table crash_q");
  1404.  
  1405. #
  1406. # test of different join types
  1407. #
  1408.  
  1409. assert("create table crash_me2 (a integer not null,b char(10) not null, c integer)");
  1410. assert("insert into crash_me2 (a,b,c) values (1,'b',1)");
  1411. assert("create table crash_me3 (a integer not null,b char(10) not null)");
  1412. assert("insert into crash_me3 (a,b) values (1,'b')");
  1413.  
  1414. report("inner join","inner_join",
  1415.        "select crash_me.a from crash_me inner join crash_me2 ON crash_me.a=crash_me2.a");
  1416. report("left outer join","left_outer_join",
  1417.        "select crash_me.a from crash_me left join crash_me2 ON crash_me.a=crash_me2.a");
  1418. report("natural left outer join","natural_left_outer_join",
  1419.        "select c from crash_me natural left join crash_me2");
  1420. report("left outer join using","left_outer_join_using",
  1421.        "select c from crash_me left join crash_me2 using (a)");
  1422. report("left outer join odbc style","odbc_left_outer_join",
  1423.        "select crash_me.a from { oj crash_me left outer join crash_me2 ON crash_me.a=crash_me2.a }");
  1424. report("right outer join","right_outer_join",
  1425.        "select crash_me.a from crash_me right join crash_me2 ON crash_me.a=crash_me2.a");
  1426. report("full outer join","full_outer_join",
  1427.        "select crash_me.a from crash_me full join crash_me2 ON crash_me.a=crash_me2.a");
  1428. report("cross join (same as from a,b)","cross_join",
  1429.        "select crash_me.a from crash_me cross join crash_me3");
  1430. report("natural join","natural_join",
  1431.        "select * from crash_me natural join crash_me3");
  1432. report("union","union",
  1433.        "select * from crash_me union select a,b from crash_me3");
  1434. report("union all","union_all",
  1435.        "select * from crash_me union all select a,b from crash_me3");
  1436. report("intersect","intersect",
  1437.        "select * from crash_me intersect select * from crash_me3");
  1438. report("intersect all","intersect_all",
  1439.        "select * from crash_me intersect all select * from crash_me3");
  1440. report("except","except",
  1441.        "select * from crash_me except select * from crash_me3");
  1442. report("except all","except_all",
  1443.        "select * from crash_me except all select * from crash_me3");
  1444. report("except","except",
  1445.        "select * from crash_me except select * from crash_me3");
  1446. report("except all","except_all",
  1447.        "select * from crash_me except all select * from crash_me3");
  1448. report("minus","minus",
  1449.        "select * from crash_me minus select * from crash_me3"); # oracle ...
  1450.  
  1451. report("natural join (incompatible lists)","natural_join_incompat",
  1452.        "select c from crash_me natural join crash_me2");
  1453. report("union (incompatible lists)","union_incompat",
  1454.        "select * from crash_me union select a,b from crash_me2");
  1455. report("union all (incompatible lists)","union_all_incompat",
  1456.        "select * from crash_me union all select a,b from crash_me2");
  1457. report("intersect (incompatible lists)","intersect_incompat",
  1458.        "select * from crash_me intersect select * from crash_me2");
  1459. report("intersect all (incompatible lists)","intersect_all_incompat",
  1460.        "select * from crash_me intersect all select * from crash_me2");
  1461. report("except (incompatible lists)","except_incompat",
  1462.        "select * from crash_me except select * from crash_me2");
  1463. report("except all (incompatible lists)","except_all_incompat",
  1464.        "select * from crash_me except all select * from crash_me2");
  1465. report("except (incompatible lists)","except_incompat",
  1466.        "select * from crash_me except select * from crash_me2");
  1467. report("except all (incompatible lists)","except_all_incompat",
  1468.        "select * from crash_me except all select * from crash_me2");
  1469. report("minus (incompatible lists)","minus_incompat",
  1470.        "select * from crash_me minus select * from crash_me2"); # oracle ...
  1471.  
  1472. assert("drop table crash_me2");
  1473. assert("drop table crash_me3");
  1474.  
  1475. # somethings to be added here ....
  1476. # FOR UNION - INTERSECT - EXCEPT -> CORRESPONDING [ BY ]
  1477. # after subqueries:
  1478. # >ALL | ANY | SOME - EXISTS - UNIQUE
  1479.  
  1480. if (report("subqueries","subqueries",
  1481.        "select a from crash_me where crash_me.a in (select max(a) from crash_me)"))
  1482. {
  1483.     $tmp=new query_repeat([],"select a from crash_me","","",
  1484.               " where a in (select a from crash_me",")",
  1485.               "",[],$max_join_tables);
  1486.     find_limit("recursive subqueries", "recursive_subqueries",$tmp);
  1487. }
  1488.  
  1489. report("insert INTO ... SELECT ...","insert_select",
  1490.        "create table crash_q (a int)",
  1491.        "insert into crash_q (a) SELECT crash_me.a from crash_me",
  1492.        "drop table crash_q");
  1493.  
  1494. report_trans("transactions","transactions",
  1495.          [create_table("crash_q",["a integer not null"],[]),
  1496.           "insert into crash_q values (1)"],
  1497.          "select * from crash_q",
  1498.          "drop table crash_q"
  1499.         );
  1500.  
  1501. report("atomic updates","atomic_updates",
  1502.        create_table("crash_q",["a integer not null"],["primary key (a)"]),
  1503.        "insert into crash_q values (2)",
  1504.        "insert into crash_q values (3)",
  1505.        "insert into crash_q values (1)",
  1506.        "update crash_q set a=a+1",
  1507.        "drop table crash_q");
  1508.  
  1509. if ($limits{'atomic_updates'} eq 'yes')
  1510. {
  1511.   report_fail("atomic_updates_with_rollback","atomic_updates_with_rollback",
  1512.           create_table("crash_q",["a integer not null"],
  1513.                ["primary key (a)"]),
  1514.           "insert into crash_q values (2)",
  1515.           "insert into crash_q values (3)",
  1516.           "insert into crash_q values (1)",
  1517.           "update crash_q set a=a+1 where a < 3",
  1518.           "drop table crash_q");
  1519. }
  1520.  
  1521. # To add with the views:
  1522. # DROP VIEW - CREAT VIEW *** [ WITH [ CASCADE | LOCAL ] CHECK OPTION ]
  1523. report("views","views",
  1524.        "create view crash_q as select a from crash_me",
  1525.        "drop view crash_q");
  1526.  
  1527. report("foreign key syntax","foreign_key_syntax",
  1528.        create_table("crash_q",["a integer not null"],["primary key (a)"]),
  1529.        create_table("crash_q2",["a integer not null",
  1530.                 "foreign key (a) references crash_q (a)"],
  1531.             []),
  1532.        "insert into crash_q values (1)",
  1533.        "insert into crash_q2 values (1)",
  1534.        "drop table crash_q2",
  1535.        "drop table crash_q");
  1536.  
  1537. if ($limits{'foreign_key_syntax'} eq 'yes')
  1538. {
  1539.   report_fail("foreign keys","foreign_key",
  1540.           create_table("crash_q",["a integer not null"],
  1541.                ["primary key (a)"]),
  1542.           create_table("crash_q2",["a integer not null",
  1543.                        "foreign key (a) references crash_q (a)"],
  1544.                []),
  1545.           "insert into crash_q values (1)",
  1546.           "insert into crash_q2 values (2)",
  1547.           "drop table crash_q2",
  1548.           "drop table crash_q");
  1549. }
  1550.  
  1551. report("Create SCHEMA","create_schema",
  1552.        "create schema crash_schema create table crash_q (a int) create table crash_q2(b int)",
  1553.        "drop schema crash_schema cascade");
  1554.  
  1555. if ($limits{'foreign_key'} eq 'yes')
  1556. {
  1557.   if ($limits{'create_schema'} eq 'yes')
  1558.   {
  1559.     report("Circular foreign keys","foreign_key_circular",
  1560.            "create schema crash_schema create table crash_q (a int primary key, b int, foreign key (b) references crash_q2(a)) create table crash_q2(a int, b int, primary key(a), foreign key (b) references crash_q(a))",
  1561.            "drop schema crash_schema cascade");
  1562.   }
  1563. }
  1564.  
  1565. report("Column constraints","constraint_check",
  1566.        "create table crash_q (a int check (a>0))",
  1567.        "drop table crash_q");
  1568.  
  1569. report("Table constraints","constraint_check_table",
  1570.        "create table crash_q (a int ,b int, check (a>b))",
  1571.        "drop table crash_q");
  1572.  
  1573. report("Named constraints","constraint_check",
  1574.        "create table crash_q (a int ,b int, constraint abc check (a>b))",
  1575.        "drop table crash_q");
  1576.  
  1577. report("NULL constraint (SyBase style)","constraint_null",
  1578.        "create table crash_q (a int null)",
  1579.        "drop table crash_q");
  1580.  
  1581. report("Triggers (ANSI SQL)","psm_trigger",
  1582.        "create table crash_q (a int ,b int)",
  1583.        "create trigger crash_trigger after insert on crash_q referencing new table as new_a when (localtime > time '18:00:00') begin atomic end",
  1584.        "insert into crash_q values(1,2)",
  1585.        "drop trigger crash_trigger",
  1586.        "drop table crash_q");
  1587.  
  1588. report("PSM procedures (ANSI SQL)","psm_procedures",
  1589.        "create table crash_q (a int,b int)",
  1590.        "create procedure crash_proc(in a1 int, in b1 int) language sql modifies sql data begin declare c1 int; set c1 = a1 + b1; insert into crash_q(a,b) values (a1,c1); end",
  1591.        "call crash_proc(1,10)",
  1592.        "drop procedure crash_proc",
  1593.        "drop table crash_q");
  1594.  
  1595. report("PSM modules (ANSI SQL)","psm_modules",
  1596.        "create table crash_q (a int,b int)",
  1597.        "create module crash_m declare procedure crash_proc(in a1 int, in b1 int) language sql modifies sql data begin declare c1 int; set c1 = a1 + b1; insert into crash_q(a,b) values (a1,c1); end; declare procedure crash_proc2(INOUT a int, in b int) contains sql set a = b + 10; end module",
  1598.        "call crash_proc(1,10)",
  1599.        "drop module crash_m cascade",
  1600.        "drop table crash_q cascade");
  1601.  
  1602. report("PSM functions (ANSI SQL)","psm_functions",
  1603.        "create table crash_q (a int)",
  1604.        "create function crash_func(in a1 int, in b1 int) returns int language sql deterministic contains sql begin return a1 * b1; end",
  1605.        "insert into crash_q values(crash_func(2,4))",
  1606.        "select a,crash_func(a,2) from crash_q",
  1607.        "drop function crash_func cascade",
  1608.        "drop table crash_q");
  1609.  
  1610. report("Domains (ANSI SQL)","domains",
  1611.        "create domain crash_d as varchar(10) default 'Empty' check (value <> 'abcd')",
  1612.        "create table crash_q(a crash_d, b int)",
  1613.        "insert into crash_q(a,b) values('xyz',10)",
  1614.        "insert into crash_q(b) values(10)",
  1615.        "drop table crash_q",
  1616.        "drop domain crash_d");
  1617.  
  1618.  
  1619. if (!defined($limits{'lock_tables'}))
  1620. {
  1621.   report("lock table","lock_tables",
  1622.      "lock table crash_me READ",
  1623.      "unlock tables");
  1624.   if ($limits{'lock_tables'} eq 'no')
  1625.   {
  1626.     delete $limits{'lock_tables'};
  1627.     report("lock table","lock_tables",
  1628.        "lock table crash_me IN SHARE MODE");
  1629.   }
  1630. }
  1631.  
  1632. if (!report("many tables to drop table","multi_drop",
  1633.        "create table crash_q (a int)",
  1634.        "create table crash_q2 (a int)",
  1635.        "drop table crash_q,crash_q2"))
  1636. {
  1637.   $dbh->do("drop table crash_q");
  1638.   $dbh->do("drop table crash_q2");
  1639. }
  1640.  
  1641.  
  1642. report("-- as comment (ANSI)","comment_--",
  1643.        "select * from crash_me -- Testing of comments");
  1644. report("// as comment (ANSI)","comment_//",
  1645.        "select * from crash_me // Testing of comments");
  1646. report("# as comment","comment_#",
  1647.        "select * from crash_me # Testing of comments");
  1648. report("/* */ as comment","comment_/**/",
  1649.        "select * from crash_me /* Testing of comments */");
  1650.  
  1651. #
  1652. # Check things that fails one some servers
  1653. #
  1654.  
  1655. # Empress can't insert empty strings in a char() field
  1656. report("insert empty string","insert_empty_string",
  1657.        create_table("crash_q",["a char(10) not null,b char(10)"],[]),
  1658.        "insert into crash_q values ('','')",
  1659.        "drop table crash_q");
  1660.  
  1661. report("Having with alias","having_with_alias",
  1662.        create_table("crash_q",["a integer"],[]),
  1663.        "insert into crash_q values (10)",
  1664.        "select sum(a) as b from crash_q group by a having b > 0",
  1665.        "drop table crash_q");
  1666.  
  1667. #
  1668. # test name limits
  1669. #
  1670.  
  1671. find_limit("table name length","max_table_name",
  1672.        new query_many(["create table crash_q%s (q integer)",
  1673.                "insert into crash_q%s values(1)"],
  1674.                "select * from crash_q%s",1,
  1675.                ["drop table crash_q%s"],
  1676.                $max_name_length,7,1));
  1677.  
  1678. find_limit("column name length","max_column_name",
  1679.        new query_many(["create table crash_q (q%s integer)",
  1680.               "insert into crash_q (q%s) values(1)"],
  1681.               "select q%s from crash_q",1,
  1682.               ["drop table crash_q"],
  1683.                $max_name_length,1));
  1684.  
  1685. if ($limits{'column_alias'} eq 'yes')
  1686. {
  1687.   find_limit("select alias name length","max_select_alias_name",
  1688.        new query_many(undef,
  1689.               "select b as %s from crash_me",undef,
  1690.               undef, $max_name_length));
  1691. }
  1692.  
  1693. find_limit("table alias name length","max_table_alias_name",
  1694.        new query_many(undef,
  1695.               "select %s.b from crash_me %s",
  1696.               undef,
  1697.               undef, $max_name_length));
  1698.  
  1699. $end_drop_keyword = "drop index %i" if (!$end_drop_keyword);
  1700. $end_drop=$end_drop_keyword;
  1701. $end_drop =~ s/%i/crash_q%s/;
  1702. $end_drop =~ s/%t/crash_me/;
  1703.  
  1704. if ($limits{'create_index'} ne 'no')
  1705. {
  1706.   find_limit("index name length","max_index_name",
  1707.          new query_many(["create index crash_q%s on crash_me (a)"],
  1708.                 undef,undef,
  1709.                 [$end_drop],
  1710.                 $max_name_length,7));
  1711. }
  1712.  
  1713. find_limit("max char() size","max_char_size",
  1714.        new query_many(["create table crash_q (q char(%d))",
  1715.                "insert into crash_q values ('%s')"],
  1716.               "select * from crash_q","%s",
  1717.               ["drop table crash_q"],
  1718.               min($max_string_size,$limits{'query_size'})));
  1719.  
  1720. if ($limits{'type_sql_varchar(1_arg)'} eq 'yes')
  1721. {
  1722.   find_limit("max varchar() size","max_varchar_size",
  1723.          new query_many(["create table crash_q (q varchar(%d))",
  1724.                  "insert into crash_q values ('%s')"],
  1725.                 "select * from crash_q","%s",
  1726.                 ["drop table crash_q"],
  1727.                 min($max_string_size,$limits{'query_size'})));
  1728. }
  1729.  
  1730. $found=undef;
  1731. foreach $type (('mediumtext','text','text()','blob','long'))
  1732. {
  1733.   if ($limits{"type_extra_$type"} eq 'yes')
  1734.   {
  1735.     $found=$type;
  1736.     last;
  1737.   }
  1738. }
  1739. if (defined($found))
  1740. {
  1741.   $found =~ s/\(\)/\(%d\)/;
  1742.   find_limit("max text or blob size","max_text_size",
  1743.          new query_many(["create table crash_q (q $found)",
  1744.                  "insert into crash_q values ('%s')"],
  1745.                 "select * from crash_q","%s",
  1746.                 ["drop table crash_q"],
  1747.                 min($max_string_size,$limits{'query_size'}-30)));
  1748.  
  1749. }
  1750.  
  1751. $tmp=new query_repeat([],"create table crash_q (a integer","","",
  1752.               ",a%d integer","",")",["drop table crash_q"],
  1753.               $max_columns);
  1754. $tmp->{'offset'}=1;
  1755. find_limit("Columns in table","max_columns",$tmp);
  1756.  
  1757. # Make a field definition to be used when testing keys
  1758.  
  1759. $key_definitions="q0 integer not null";
  1760. $key_fields="q0";
  1761. for ($i=1; $i < min($limits{'max_columns'},$max_keys) ; $i++)
  1762. {
  1763.   $key_definitions.=",q$i integer not null";
  1764.   $key_fields.=",q$i";
  1765. }
  1766. $key_values="1," x $i;
  1767. chop($key_values);
  1768.  
  1769. if ($limits{'unique_in_create'} eq 'yes')
  1770. {
  1771.   find_limit("unique indexes","max_unique_index",
  1772.          new query_table("create table crash_q (q integer",
  1773.                  ",q%d integer not null,unique (q%d)",")",
  1774.                  ["insert into crash_q (q,%f) values (1,%v)"],
  1775.                  "select q from crash_q",1,
  1776.                  "drop table crash_q",
  1777.                  $max_keys,0));
  1778.  
  1779.   find_limit("index parts","max_index_parts",
  1780.          new query_table("create table crash_q ($key_definitions,unique (q0",
  1781.                  ",q%d","))",
  1782.                  ["insert into crash_q ($key_fields) values ($key_values)"],
  1783.                  "select q0 from crash_q",1,
  1784.                  "drop table crash_q",
  1785.                  $max_keys,1));
  1786.  
  1787.   find_limit("max index part length","max_index_part_length",
  1788.          new query_many(["create table crash_q (q char(%d) not null,unique(q))",
  1789.                  "insert into crash_q (q) values ('%s')"],
  1790.                 "select q from crash_q","%s",
  1791.                 ["drop table crash_q"],
  1792.                 $limits{'max_char_size'},0));
  1793.  
  1794.   if ($limits{'type_sql_varchar(1_arg)'} eq 'yes')
  1795.   {
  1796.     find_limit("index varchar part length","max_index_varchar_part_length",
  1797.          new query_many(["create table crash_q (q varchar(%d) not null,unique(q))",
  1798.                  "insert into crash_q (q) values ('%s')"],
  1799.                 "select q from crash_q","%s",
  1800.                 ["drop table crash_q"],
  1801.                 $limits{'max_varchar_size'},0));
  1802.   }
  1803. }
  1804.  
  1805.  
  1806. if ($limits{'create_index'} ne 'no')
  1807. {
  1808.   if ($limits{'create_index'} eq 'ignored' ||
  1809.       $limits{'unique_in_create'} eq 'yes')
  1810.   {                                     # This should be true
  1811.     save_config_data('max_index',$limits{'max_unique_index'},"max index");
  1812.     print "indexes: $limits{'max_index'}\n";
  1813.   }
  1814.   else
  1815.   {
  1816.     if (!defined($limits{'max_index'}))
  1817.     {
  1818.       assert("create table crash_q ($key_definitions)");
  1819.       for ($i=1; $i <= min($limits{'max_columns'},$max_keys) ; $i++)
  1820.       {
  1821.     last if (!safe_query("create index crash_q$i on crash_q (q$i)"));
  1822.       }
  1823.       save_config_data('max_index',$i == $max_keys ? $max_keys : $i,
  1824.                "max index");
  1825.       while ( --$i > 0)
  1826.       {
  1827.     $end_drop=$end_drop_keyword;
  1828.     $end_drop =~ s/%i/crash_q$i/;
  1829.     $end_drop =~ s/%t/crash_q/;
  1830.     assert($end_drop);
  1831.       }
  1832.       assert("drop table crash_q");
  1833.     }
  1834.     print "indexs: $limits{'max_index'}\n";
  1835.     if (!defined($limits{'max_unique_index'}))
  1836.     {
  1837.       assert("create table crash_q ($key_definitions)");
  1838.       for ($i=0; $i < min($limits{'max_columns'},$max_keys) ; $i++)
  1839.       {
  1840.     last if (!safe_query("create unique index crash_q$i on crash_q (q$i)"));
  1841.       }
  1842.       save_config_data('max_unique_index',$i == $max_keys ? $max_keys : $i,
  1843.                "max unique index");
  1844.       while ( --$i >= 0)
  1845.       {
  1846.     $end_drop=$end_drop_keyword;
  1847.     $end_drop =~ s/%i/crash_q$i/;
  1848.     $end_drop =~ s/%t/crash_q/;
  1849.     assert($end_drop);
  1850.       }
  1851.       assert("drop table crash_q");
  1852.     }
  1853.     print "unique indexes: $limits{'max_unique_index'}\n";
  1854.     if (!defined($limits{'max_index_parts'}))
  1855.     {
  1856.       assert("create table crash_q ($key_definitions)");
  1857.       $end_drop=$end_drop_keyword;
  1858.       $end_drop =~ s/%i/crash_q1%d/;
  1859.       $end_drop =~ s/%t/crash_q/;
  1860.       find_limit("index parts","max_index_parts",
  1861.          new query_table("create index crash_q1%d on crash_q (q0",
  1862.                  ",q%d",")",
  1863.                  [],
  1864.                  undef,undef,
  1865.                  $end_drop,
  1866.                  $max_keys,1));
  1867.       assert("drop table crash_q");
  1868.     }
  1869.     else
  1870.     {
  1871.       print "index parts: $limits{'max_index_parts'}\n";
  1872.     }
  1873.     $end_drop=$end_drop_keyword;
  1874.     $end_drop =~ s/%i/crash_q2%d/;
  1875.     $end_drop =~ s/%t/crash_me/;
  1876.  
  1877.     find_limit("index part length","max_index_part_length",
  1878.            new query_many(["create table crash_q (q char(%d))",
  1879.                    "create index crash_q2%d on crash_q (q)",
  1880.                    "insert into crash_q values('%s')"],
  1881.                   "select q from crash_q",
  1882.                   "%s",
  1883.                   [ $end_drop,
  1884.                    "drop table crash_q"],
  1885.                   min($limits{'max_char_size'},"+8192")));
  1886.   }
  1887. }
  1888.  
  1889. find_limit("index length","max_index_length",
  1890.        new query_index_length("create table crash_q ",
  1891.                   "drop table crash_q",
  1892.                   $max_key_length));
  1893.  
  1894. find_limit("max table row length (without blobs)","max_row_length",
  1895.        new query_row_length("crash_q ",
  1896.                 "not null",
  1897.                 "drop table crash_q",
  1898.                 min($max_row_length,
  1899.                     $limits{'max_columns'}*
  1900.                     min($limits{'max_char_size'},255))));
  1901.  
  1902. find_limit("table row length with nulls (without blobs)",
  1903.        "max_row_length_with_null",
  1904.        new query_row_length("crash_q ",
  1905.                 "",
  1906.                 "drop table crash_q",
  1907.                 $limits{'max_row_length'}*2));
  1908.  
  1909. find_limit("number of columns in order by","columns_in_order_by",
  1910.        new query_many(["create table crash_q (%F)",
  1911.                "insert into crash_q values(%v)",
  1912.                "insert into crash_q values(%v)"],
  1913.               "select * from crash_q order by %f",
  1914.               undef(),
  1915.               ["drop table crash_q"],
  1916.               $max_order_by));
  1917.  
  1918. find_limit("number of columns in group by","columns_in_group_by",
  1919.        new query_many(["create table crash_q (%F)",
  1920.                "insert into crash_q values(%v)",
  1921.                "insert into crash_q values(%v)"],
  1922.               "select %f from crash_q group by %f",
  1923.               undef(),
  1924.               ["drop table crash_q"],
  1925.               $max_order_by));
  1926.  
  1927. #
  1928. # End of test
  1929. #
  1930.  
  1931. $dbh->do("drop table crash_me");        # Remove temporary table
  1932.  
  1933. print "crash-me safe: $limits{'crash_me_safe'}\n";
  1934. print "reconnected $reconnect_count times\n";
  1935.  
  1936. $dbh->disconnect || warn $dbh->errstr;
  1937. save_all_config_data();
  1938. exit 0;
  1939.  
  1940. sub usage
  1941. {
  1942.     print <<EOF;
  1943. $0  Ver $version
  1944.  
  1945. This program tries to find all limits and capabilities for a SQL
  1946. server.  As it will use the server in some 'unexpected' ways, one
  1947. shouldn\'t have anything important running on it at the same time this
  1948. program runs!  There is a slight chance that something unexpected may
  1949. happen....
  1950.  
  1951. As all used queries are legal according to some SQL standard. any
  1952. reasonable SQL server should be able to run this test without any
  1953. problems.
  1954.  
  1955. All questions is cached in $opt_dir/'server_name'.cfg that future runs will use
  1956. limits found in previous runs. Remove this file if you want to find the
  1957. current limits for your version of the database server.
  1958.  
  1959. This program uses some table names while testing things. If you have any
  1960. tables with the name of 'crash_me' or 'crash_qxxxx' where 'x' is a number,
  1961. they will be deleted by this test!
  1962.  
  1963. $0 takes the following options:
  1964.  
  1965. --help or --Information
  1966.   Shows this help
  1967.  
  1968. --batch-mode
  1969.   Don\'t ask any questions, quit on errors.
  1970.  
  1971. --comment='some comment'
  1972.   Add this comment to the crash-me limit file
  1973.  
  1974. --database='database' (Default $opt_database)
  1975.   Create test tables in this database.
  1976.  
  1977. --dir='limits'
  1978.   Save crash-me output in this directory
  1979.  
  1980. --debug
  1981.   Lots of printing to help debugging if something goes wrong.
  1982.  
  1983. --fix-limit-file
  1984.   Reformat the crash-me limit file.  crash-me is not run!
  1985.  
  1986. --force
  1987.   Start test at once, without a warning screen and without questions.
  1988.   This is a option for the very brave.
  1989.   Use this in your cron scripts to test your database every night.
  1990.  
  1991. --log-all-queries
  1992.   Prints all queries that are executed. Mostly used for debugging crash-me.
  1993.  
  1994. --log-queries-to-file='filename'
  1995.   Log full queries to file.
  1996.  
  1997. --host='hostname' (Default $opt_host)
  1998.   Run tests on this host.
  1999.  
  2000. --password='password'
  2001.   Password for the current user.
  2002.  
  2003. --restart
  2004.   Save states during each limit tests. This will make it possible to continue
  2005.   by restarting with the same options if there is some bug in the DBI or
  2006.   DBD driver that caused $0 to die!
  2007.  
  2008. --server='server name'  (Default $opt_server)
  2009.   Run the test on the given server.
  2010.   Known servers names are: Access, Adabas, AdabasD, Empress, Oracle, Informix, DB2, Mimer, mSQL, MS-SQL, MySQL, Pg, Solid or Sybase.
  2011.   For others $0 can\'t report the server version.
  2012.  
  2013. --user='user_name'
  2014.   User name to log into the SQL server.
  2015.  
  2016. --start-cmd='command to restart server'
  2017.   Automaticly restarts server with this command if the server dies.
  2018.  
  2019. --sleep='time in seconds' (Default $opt_sleep)
  2020.   Wait this long before restarting server.
  2021.  
  2022. EOF
  2023.   exit(0);
  2024. }
  2025.  
  2026.  
  2027. sub server_info
  2028. {
  2029.   my ($ok,$tmp);
  2030.   $ok=0;
  2031.   print "\nNOTE: You should be familiar with '$0 --help' before continuing!\n\n";
  2032.   if (lc($opt_server) eq "mysql")
  2033.   {
  2034.     $ok=1;
  2035.     print <<EOF;
  2036. This test should not crash MySQL if it was distributed together with the
  2037. running MySQL version.
  2038. If this is the case you can probably continue without having to worry about
  2039. destroying something.
  2040. EOF
  2041.   }
  2042.   elsif (lc($opt_server) eq "msql")
  2043.   {
  2044.     print <<EOF;
  2045. This test will take down mSQL repeatedly while finding limits.
  2046. To make this test easier, start mSQL in another terminal with something like:
  2047.  
  2048. while (true); do /usr/local/mSQL/bin/msql2d ; done
  2049.  
  2050. You should be sure that no one is doing anything important with mSQL and that
  2051. you have privileges to restart it!
  2052. It may take awhile to determinate the number of joinable tables, so prepare to
  2053. wait!
  2054. EOF
  2055.   }
  2056.   elsif (lc($opt_server) eq "solid")
  2057.   {
  2058.     print <<EOF;
  2059. This test will take down Solid server repeatedly while finding limits.
  2060. You should be sure that no one is doing anything important with Solid
  2061. and that you have privileges to restart it!
  2062.  
  2063. If you are running Solid without logging and/or backup YOU WILL LOSE!
  2064. Solid does not write data from the cache often enough. So if you continue
  2065. you may lose tables and data that you entered hours ago!
  2066.  
  2067. Solid will also take a lot of memory running this test. You will nead
  2068. at least 234M free!
  2069.  
  2070. When doing the connect test Solid server or the perl api will hang when
  2071. freeing connections. Kill this program and restart it to continue with the
  2072. test. You don\'t have to use --restart for this case.
  2073. EOF
  2074.     if (!$opt_restart)
  2075.     {
  2076.       print "\nWhen DBI/Solid dies you should run this program repeatedly\n";
  2077.       print "with --restart until all tests have completed\n";
  2078.     }
  2079.   }
  2080.   elsif (lc($opt_server) eq "pg")
  2081.   {
  2082.     print <<EOF;
  2083. This test will crash postgreSQL when calculating the number of joinable tables!
  2084. You should be sure that no one is doing anything important with postgreSQL
  2085. and that you have privileges to restart it!
  2086. EOF
  2087.   }
  2088.   else
  2089.   {
  2090.     print <<EOF;
  2091. This test may crash $opt_server repeatedly while finding limits!
  2092. You should be sure that no one is doing anything important with $opt_server
  2093. and that you have privileges to restart it!
  2094. EOF
  2095.   }
  2096.   print <<EOF;
  2097.  
  2098. Some of the tests you are about to execute may require a lot of
  2099. memory.  Your tests WILL adversely affect system performance. It's
  2100. not uncommon that either this crash-me test program, or the actual
  2101. database back-end, will DIE with an out-of-memory error. So might
  2102. any other program on your system if it requests more memory at the
  2103. wrong time.
  2104.  
  2105. Note also that while crash-me tries to find limits for the database server
  2106. it will make a lot of queries that can't be categorized as 'normal'.  It's
  2107. not unlikely that crash-me finds some limit bug in your server so if you
  2108. run this test you have to be prepared that your server may die during it!
  2109.  
  2110. We, the creators of this utility, are not responsible in any way if your
  2111. database server unexpectedly crashes while this program tries to find the
  2112. limitations of your server. By accepting the following question with 'yes',
  2113. you agree to the above!
  2114.  
  2115. You have been warned!
  2116.  
  2117. EOF
  2118.  
  2119.   #
  2120.   # No default reply here so no one can blame us for starting the test
  2121.   # automaticly.
  2122.   #
  2123.   for (;;)
  2124.   {
  2125.     print "Start test (yes/no) ? ";
  2126.     $tmp=<STDIN>; chomp($tmp); $tmp=lc($tmp);
  2127.     last if ($tmp =~ /^yes$/i);
  2128.     exit 1 if ($tmp =~ /^n/i);
  2129.     print "\n";
  2130.   }
  2131. }
  2132.  
  2133. sub machine
  2134. {
  2135.   $name= `uname -s -r -m`;
  2136.   if ($?)
  2137.   {
  2138.     $name= `uname -s -m`;
  2139.   }
  2140.   if ($?)
  2141.   {
  2142.     $name= `uname -s`;
  2143.   }
  2144.   if ($?)
  2145.   {
  2146.     $name= `uname`;
  2147.   }
  2148.   if ($?)
  2149.   {
  2150.     $name="unknown";
  2151.   }
  2152.   chomp($name); $name =~ s/[\n\r]//g;
  2153.   return $name;
  2154. }
  2155.  
  2156.  
  2157. #
  2158. # Help functions that we need
  2159. #
  2160.  
  2161. sub safe_connect
  2162. {
  2163.   my ($object)=@_;
  2164.   my ($dbh,$tmp);
  2165.  
  2166.   for (;;)
  2167.   {
  2168.     if (($dbh=DBI->connect($server->{'data_source'},$opt_user,$opt_password,
  2169.                { PrintError => 0, AutoCommit => 1})))
  2170.     {
  2171.       $dbh->{LongReadLen}= 16000000; # Set max retrieval buffer
  2172.       return $dbh;
  2173.     }
  2174.     print "Error: $DBI::errstr;  $server->{'data_source'}  - '$opt_user' - '$opt_password'\n";
  2175.     print "I got the above error when connecting to $opt_server\n";
  2176.     if (defined($object) && defined($object->{'limit'}))
  2177.     {
  2178.       print "This check was done with limit: $object->{'limit'}.\nNext check will be done with a smaller limit!\n";
  2179.       $object=undef();
  2180.     }
  2181.     save_config_data('crash_me_safe','no',"crash me safe");
  2182.     if ($opt_db_start_cmd)
  2183.     {
  2184.       print "Restarting the db server with:\n'$opt_db_start_cmd'\n";
  2185.       system("$opt_db_start_cmd");
  2186.       print "Waiting $opt_sleep seconds so the server can initialize\n";
  2187.       sleep $opt_sleep;
  2188.     }
  2189.     else
  2190.     {
  2191.       exit(1) if ($opt_batch_mode);
  2192.       print "Can you check/restart it so I can continue testing?\n";
  2193.       for (;;)
  2194.       {
  2195.     print "Continue test (yes/no) ? [yes] ";
  2196.     $tmp=<STDIN>; chomp($tmp); $tmp=lc($tmp);
  2197.     $tmp = "yes" if ($tmp eq "");
  2198.     last if (index("yes",$tmp) >= 0);
  2199.     exit 1 if (index("no",$tmp) >= 0);
  2200.     print "\n";
  2201.       }
  2202.     }
  2203.   }
  2204. }
  2205.  
  2206. #
  2207. # Check if the server is upp and running. If not, ask the user to restart it
  2208. #
  2209.  
  2210. sub check_connect
  2211. {
  2212.   my ($object)=@_;
  2213.   my ($sth);
  2214.   print "Checking connection\n" if ($opt_log_all_queries);
  2215.   # The following line will not work properly with interbase
  2216.   return if (defined($check_connect) && defined($dbh->do($check_connect)));
  2217.   $dbh->disconnect || warn $dbh->errstr;
  2218.   print "\nreconnecting\n" if ($opt_debug);
  2219.   $reconnect_count++;
  2220.   undef($dbh);
  2221.   $dbh=safe_connect($object);
  2222. }
  2223.  
  2224. #
  2225. # print query if debugging
  2226. #
  2227. sub print_query
  2228. {
  2229.   my ($query)=@_;
  2230.   $last_error=$DBI::errstr;
  2231.   if ($opt_debug)
  2232.   {
  2233.     if (length($query) > 130)
  2234.     {
  2235.       $query=substr($query,0,120) . "...(" . (length($query)-120) . ")";
  2236.     }
  2237.     printf "\nGot error from query: '%s'\n%s\n",$query,$DBI::errstr;
  2238.   }
  2239. }
  2240.  
  2241. #
  2242. # Do one or many queries. Return 1 if all was ok
  2243. # Note that all rows are executed (to ensure that we execute drop table commands)
  2244. #
  2245.  
  2246. sub safe_query
  2247. {
  2248.   my($queries)=@_;
  2249.   my($query,$ok,$retry_ok,$retry,@tmp,$sth);
  2250.   $ok=1;
  2251.   if (ref($queries) ne "ARRAY")
  2252.   {
  2253.     push(@tmp,$queries);
  2254.     $queries= \@tmp;
  2255.   }
  2256.   foreach $query (@$queries)
  2257.   {
  2258.     printf "query1: %-80.80s ...(%d - %d)\n",$query,length($query),$retry_limit  if ($opt_log_all_queries);
  2259.     print LOG "$query;\n" if ($opt_log);
  2260.     if (length($query) > $query_size)
  2261.     {
  2262.       $ok=0;
  2263.       next;
  2264.     }
  2265.  
  2266.     $retry_ok=0;
  2267.     for ($retry=0; $retry < $retry_limit ; $retry++)
  2268.     {
  2269.       if (! ($sth=$dbh->prepare($query)))
  2270.       {
  2271.     print_query($query);
  2272.     $retry=100 if (!$server->abort_if_fatal_error());
  2273.     # Force a reconnect because of Access drop table bug!
  2274.     if ($retry == $retry_limit-2)
  2275.     {
  2276.       print "Forcing disconnect to retry query\n" if ($opt_debug);
  2277.       $dbh->disconnect || warn $dbh->errstr;
  2278.     }
  2279.     check_connect();        # Check that server is still up
  2280.       }
  2281.       else
  2282.       {
  2283.         if (!$sth->execute())
  2284.         {
  2285.        print_query($query);
  2286.       $retry=100 if (!$server->abort_if_fatal_error());
  2287.       # Force a reconnect because of Access drop table bug!
  2288.       if ($retry == $retry_limit-2)
  2289.       {
  2290.         print "Forcing disconnect to retry query\n" if ($opt_debug);
  2291.         $dbh->disconnect || warn $dbh->errstr;
  2292.       }
  2293.       check_connect();        # Check that server is still up
  2294.         }
  2295.         else
  2296.         {
  2297.       $retry = $retry_limit;
  2298.       $retry_ok = 1;
  2299.         }
  2300.         $sth->finish;
  2301.       }
  2302.     }
  2303.     $ok=0 if (!$retry_ok);
  2304.     if ($query =~ /create/i && $server->reconnect_on_errors())
  2305.     {
  2306.       print "Forcing disconnect to retry query\n" if ($opt_debug);
  2307.       $dbh->disconnect || warn $dbh->errstr;
  2308.       $dbh=safe_connect();
  2309.     }
  2310.   }
  2311.   return $ok;
  2312. }
  2313.  
  2314.  
  2315. #
  2316. # Do a query on a query package object.
  2317. #
  2318.  
  2319. sub limit_query
  2320. {
  2321.   my($object,$limit)=@_;
  2322.   my ($query,$result,$retry,$sth);
  2323.  
  2324.   $query=$object->query($limit);
  2325.   $result=safe_query($query);
  2326.   if (!$result)
  2327.   {
  2328.     $object->cleanup();
  2329.     return 0;
  2330.   }
  2331.   if (defined($query=$object->check_query()))
  2332.   {
  2333.     for ($retry=0 ; $retry < $retry_limit ; $retry++)
  2334.     {
  2335.       printf "query2: %-80.80s\n",$query if ($opt_log_all_queries);
  2336.       print LOG "$query;\n" if ($opt_log);
  2337.       if (($sth= $dbh->prepare($query)))
  2338.       {
  2339.     if ($sth->execute)
  2340.     {
  2341.       $result= $object->check($sth);
  2342.       $sth->finish;
  2343.       $object->cleanup();
  2344.       return $result;
  2345.     }
  2346.     print_query($query);
  2347.     $sth->finish;
  2348.       }
  2349.       else
  2350.       {
  2351.     print_query($query);
  2352.       }
  2353.       $retry=100 if (!$server->abort_if_fatal_error()); # No need to continue
  2354.       if ($retry == $retry_limit-2)
  2355.       {
  2356.     print "Forcing discoennect to retry query\n" if ($opt_debug);
  2357.     $dbh->disconnect || warn $dbh->errstr;
  2358.       }
  2359.       check_connect($object);   # Check that server is still up
  2360.     }
  2361.     $result=0;                  # Query failed
  2362.   }
  2363.   $object->cleanup();
  2364.   return $result;               # Server couldn't handle the query
  2365. }
  2366.  
  2367.  
  2368. sub report
  2369. {
  2370.   my ($prompt,$limit,@queries)=@_;
  2371.   print "$prompt: ";
  2372.   if (!defined($limits{$limit}))
  2373.   {
  2374.     save_config_data($limit,safe_query(\@queries) ? "yes" : "no",$prompt);
  2375.   }
  2376.   print "$limits{$limit}\n";
  2377.   return $limits{$limit} ne "no";
  2378. }
  2379.  
  2380. sub report_fail
  2381. {
  2382.   my ($prompt,$limit,@queries)=@_;
  2383.   print "$prompt: ";
  2384.   if (!defined($limits{$limit}))
  2385.   {
  2386.     save_config_data($limit,safe_query(\@queries) ? "no" : "yes",$prompt);
  2387.   }
  2388.   print "$limits{$limit}\n";
  2389.   return $limits{$limit} ne "no";
  2390. }
  2391.  
  2392.  
  2393. # Return true if one of the queries is ok
  2394.  
  2395. sub report_one
  2396. {
  2397.   my ($prompt,$limit,$queries)=@_;
  2398.   my ($query,$res,$result);
  2399.   print "$prompt: ";
  2400.   if (!defined($limits{$limit}))
  2401.   {
  2402.     $result="no";
  2403.     foreach $query (@$queries)
  2404.     {
  2405.       if (safe_query($query->[0]))
  2406.       {
  2407.     $result= $query->[1];
  2408.     last;
  2409.       }
  2410.     }
  2411.     save_config_data($limit,$result,$prompt);
  2412.   }
  2413.   print "$limits{$limit}\n";
  2414.   return $limits{$limit} ne "no";
  2415. }
  2416.  
  2417.  
  2418. # Execute query and save result as limit value.
  2419.  
  2420. sub report_result
  2421. {
  2422.   my ($prompt,$limit,$query)=@_;
  2423.   my($error);
  2424.   print "$prompt: ";
  2425.   if (!defined($limits{$limit}))
  2426.   {
  2427.     $error=safe_query_result($query,"1",2);
  2428.     save_config_data($limit,$error ? "not supported" : $last_result,$prompt);
  2429.   }
  2430.   print "$limits{$limit}\n";
  2431.   return $limits{$limit} ne "no";
  2432. }
  2433.  
  2434. sub report_trans
  2435. {
  2436.   my ($prompt,$limit,$queries,$check,$clear)=@_;
  2437.   print "$prompt: ";
  2438.   if (!defined($limits{$limit}))
  2439.   {
  2440.     eval {undef($dbh->{AutoCommit})};
  2441.     if (!$@)
  2442.     {
  2443.       if (safe_query(\@$queries))
  2444.       {
  2445.       $rc = $dbh->rollback;
  2446.       if ($rc) {
  2447.         $dbh->{AutoCommit} = 1;
  2448.         if (safe_query_result($check,"","")) {
  2449.           save_config_data($limit,"yes",$prompt);
  2450.         }
  2451.         safe_query($clear);
  2452.       } else {
  2453.         $dbh->{AutoCommit} = 1;
  2454.         safe_query($clear);
  2455.         save_config_data($limit,"error",$prompt);
  2456.       }
  2457.       } else {
  2458.         save_config_data($limit,"error",$prompt);
  2459.       }
  2460.       $dbh->{AutoCommit} = 1;
  2461.     }
  2462.     else
  2463.     {
  2464.       save_config_data($limit,"no",$prompt);
  2465.     }
  2466.     safe_query($clear);
  2467.   }
  2468.   print "$limits{$limit}\n";
  2469.   return $limits{$limit} ne "no";
  2470. }
  2471.  
  2472.  
  2473. sub check_and_report
  2474. {
  2475.   my ($prompt,$limit,$pre,$query,$post,$answer,$string_type,$skip_prompt,
  2476.       $function)=@_;
  2477.   my ($tmp);
  2478.   $function=0 if (!defined($function));
  2479.  
  2480.   print "$prompt: " if (!defined($skip_prompt));
  2481.   if (!defined($limits{$limit}))
  2482.   {
  2483.     $tmp=1-safe_query(\@$pre);
  2484.     $tmp=safe_query_result($query,$answer,$string_type) if (!$tmp);
  2485.     safe_query(\@$post);
  2486.     if ($function == 3)        # Report error as 'no'.
  2487.     {
  2488.       $function=0;
  2489.       $tmp= -$tmp;
  2490.     }
  2491.     if ($function == 0 ||
  2492.     $tmp != 0 && $function == 1 ||
  2493.     $tmp == 0 && $function== 2)
  2494.     {
  2495.       save_config_data($limit, $tmp == 0 ? "yes" : $tmp == 1 ? "no" : "error",
  2496.                $prompt);
  2497.       print "$limits{$limit}\n";
  2498.       return $function == 0 ? $limits{$limit} eq "yes" : 0;
  2499.     }
  2500.     return 1;            # more things to check
  2501.   }
  2502.   print "$limits{$limit}\n";
  2503.   return 0 if ($function);
  2504.   return $limits{$limit} eq "yes";
  2505. }
  2506.  
  2507.  
  2508. sub try_and_report
  2509. {
  2510.   my ($prompt,$limit,@tests)=@_;
  2511.   my ($tmp,$test,$type);
  2512.  
  2513.   print "$prompt: ";
  2514.   if (!defined($limits{$limit}))
  2515.   {
  2516.     $type="no";            # Not supported
  2517.     foreach $test (@tests)
  2518.     {
  2519.       my $tmp_type= shift(@$test);
  2520.       if (safe_query(\@$test))
  2521.       {
  2522.     $type=$tmp_type;
  2523.     goto outer;
  2524.       }
  2525.     }
  2526.   outer:
  2527.     save_config_data($limit, $type, $prompt);
  2528.   }
  2529.   print "$limits{$limit}\n";
  2530.   return $limits{$limit} ne "no";
  2531. }
  2532.  
  2533. #
  2534. # Just execute the query and check values;  Returns 1 if ok
  2535. #
  2536.  
  2537. sub execute_and_check
  2538. {
  2539.   my ($pre,$query,$post,$answer,$string_type)=@_;
  2540.   my ($tmp);
  2541.  
  2542.   $tmp=safe_query(\@$pre);
  2543.   $tmp=safe_query_result($query,$answer,$string_type) == 0 if ($tmp);
  2544.   safe_query(\@$post);
  2545.   return $tmp;
  2546. }
  2547.  
  2548.  
  2549. # returns 0 if ok, 1 if error, -1 if wrong answer
  2550. # Sets $last_result to value of query
  2551.  
  2552. sub safe_query_result
  2553. {
  2554.   my ($query,$answer,$result_type)=@_;
  2555.   my ($sth,$row,$result,$retry);
  2556.   undef($last_result);
  2557.  
  2558.   printf "\nquery3: %-80.80s\n",$query  if ($opt_log_all_queries);
  2559.   print LOG "$query;\n" if ($opt_log);
  2560.   for ($retry=0; $retry < $retry_limit ; $retry++)
  2561.   {
  2562.     if (!($sth=$dbh->prepare($query)))
  2563.     {
  2564.       print_query($query);
  2565.       if ($server->abort_if_fatal_error())
  2566.       {
  2567.     check_connect();    # Check that server is still up
  2568.     next;            # Retry again
  2569.       }
  2570.       check_connect();        # Check that server is still up
  2571.       return 1;
  2572.     }
  2573.     if (!$sth->execute)
  2574.     {
  2575.       print_query($query);
  2576.       if ($server->abort_if_fatal_error())
  2577.       {
  2578.     check_connect();    # Check that server is still up
  2579.     next;            # Retry again
  2580.       }
  2581.       check_connect();        # Check that server is still up
  2582.       return 1;
  2583.     }
  2584.     else
  2585.     {
  2586.       last;
  2587.     }
  2588.   }
  2589.   if (!($row=$sth->fetchrow_arrayref))
  2590.   {
  2591.     print "\nquery: $query didn't return any result\n" if ($opt_debug);
  2592.     $sth->finish;
  2593.     return ($result_type == 8) ? 0 : 1;
  2594.   }
  2595.   if(result_type == 8) {
  2596.     $sth->finish;
  2597.     return 1;
  2598.   }
  2599.   $result=0;                      # Ok
  2600.   $last_result= $row->[0];    # Save for report_result;
  2601.   if ($result_type == 0)    # Compare numbers
  2602.   {
  2603.     $row->[0] =~ s/,/,/;    # Fix if ',' is used instead of '.'
  2604.     if ($row->[0] != $answer && (abs($row->[0]- $answer)/
  2605.                  (abs($row->[0]) + abs($answer))) > 0.01)
  2606.     {
  2607.       $result=-1;
  2608.     }
  2609.   }
  2610.   elsif ($result_type == 1)    # Compare where end space may differ
  2611.   {
  2612.     $row->[0] =~ s/\s+$//;
  2613.     $result=-1 if ($row->[0] ne $answer);
  2614.   }
  2615.   elsif ($result_type == 3)    # This should be a exact match
  2616.   {
  2617.     $result= -1 if ($row->[0] ne $answer);
  2618.   }
  2619.   elsif ($result_type == 4)    # If results should be NULL
  2620.   {
  2621.     $result= -1 if (defined($row->[0]));
  2622.   }
  2623.   elsif ($result_type == 5)    # Result should have given prefix
  2624.   {
  2625.     $result= -1 if (length($row->[0]) < length($answer) &&
  2626.             substring($row->[0],1,length($answer)) ne $answer);
  2627.   }
  2628.   elsif ($result_type == 6)    # Exact match but ignore errors
  2629.   {
  2630.     $result= 1 if ($row->[0] ne $answer);
  2631.   }
  2632.   elsif ($result_type == 7)    # Compare against array of numbers
  2633.   {
  2634.     if ($row->[0] != $answer->[0])
  2635.     {
  2636.       $result= -1;
  2637.     }
  2638.     else
  2639.     {
  2640.       my ($value);
  2641.       shift @$answer;
  2642.       while (($row=$sth->fetchrow_arrayref))
  2643.       {
  2644.     $value=shift(@$answer);
  2645.     if (!defined($value))
  2646.     {
  2647.       print "\nquery: $query returned to many results\n"
  2648.         if ($opt_debug);
  2649.       $result= 1;
  2650.       last;
  2651.     }
  2652.     if ($row->[0] != $value)
  2653.     {
  2654.       $result= -1;
  2655.       last;
  2656.     }
  2657.       }
  2658.       if ($#$answer != -1)
  2659.       {
  2660.     print "\nquery: $query returned too few results\n"
  2661.       if ($opt_debug);
  2662.     $result= 1;
  2663.       }
  2664.     }
  2665.   }
  2666.   $sth->finish;
  2667.   print "\nquery: '$query' returned '$row->[0]' instead of '$answer'\n"
  2668.     if ($opt_debug && $result && $result_type != 7);
  2669.   return $result;
  2670. }
  2671.  
  2672. #
  2673. # Find limit using binary search.  This is a weighed binary search that
  2674. # will prefere lower limits to get the server to crash as few times as possible
  2675. #
  2676.  
  2677. sub find_limit()
  2678. {
  2679.   my ($prompt,$limit,$query)=@_;
  2680.   my ($first,$end,$i,$tmp);
  2681.   print "$prompt: ";
  2682.   if (defined($end=$limits{$limit}))
  2683.   {
  2684.     print "$end (cache)\n";
  2685.     return $end;
  2686.   }
  2687.   if (defined($query->{'init'}) && !defined($end=$limits{'restart'}{'tohigh'}))
  2688.   {
  2689.     if (!safe_query($query->{'init'}))
  2690.     {
  2691.       $query->cleanup();
  2692.       return "error";
  2693.     }
  2694.   }
  2695.  
  2696.   if (!limit_query($query,1))           # This must work
  2697.   {
  2698.     print "\nMaybe fatal error: Can't check '$prompt' for limit=1\nerror: $last_error\n";
  2699.     return "error";
  2700.   }
  2701.  
  2702.   $first=0;
  2703.   $first=$limits{'restart'}{'low'} if ($limits{'restart'}{'low'});
  2704.  
  2705.   if (defined($end=$limits{'restart'}{'tohigh'}))
  2706.   {
  2707.     $end--;
  2708.     print "\nRestarting this with low limit: $first and high limit: $end\n";
  2709.     delete $limits{'restart'};
  2710.     $i=$first+int(($end-$first+4)/5);           # Prefere lower on errors
  2711.   }
  2712.   else
  2713.   {
  2714.     $end= $query->max_limit();
  2715.     $i=int(($end+$first)/2);
  2716.   }
  2717.  
  2718.   unless(limit_query($query,0+$end)) {
  2719.     while ($first < $end)
  2720.     {
  2721.       print "." if ($opt_debug);
  2722.       save_config_data("restart",$i,"") if ($opt_restart);
  2723.       if (limit_query($query,$i))
  2724.       {
  2725.         $first=$i;
  2726.         $i=$first+int(($end-$first+1)/2); # to be a bit faster to go up
  2727.       }
  2728.       else
  2729.       {
  2730.         $end=$i-1;
  2731.         $i=$first+int(($end-$first+4)/5); # Prefere lower on errors
  2732.       }
  2733.     }
  2734.   }
  2735.   $end+=$query->{'offset'} if ($end && defined($query->{'offset'}));
  2736.   if ($end >= $query->{'max_limit'} &&
  2737.       substr($query->{'max_limit'},0,1) eq '+')
  2738.   {
  2739.     $end= $query->{'max_limit'};
  2740.   }
  2741.   print "$end\n";
  2742.   save_config_data($limit,$end,$prompt);
  2743.   delete $limits{'restart'};
  2744.   return $end;
  2745. }
  2746.  
  2747. #
  2748. # Check that the query works!
  2749. #
  2750.  
  2751. sub assert
  2752. {
  2753.   my($query)=@_;
  2754.  
  2755.   if (!safe_query($query))
  2756.   {
  2757.     $query=join("; ",@$query) if (ref($query) eq "ARRAY");
  2758.     print "\nFatal error:\nquery: '$query'\nerror: $DBI::errstr\n";
  2759.     exit 1;
  2760.   }
  2761. }
  2762.  
  2763.  
  2764. sub read_config_data
  2765. {
  2766.   my ($key,$limit,$prompt);
  2767.   if (-e $opt_config_file)
  2768.   {
  2769.     open(CONFIG_FILE,"+<$opt_config_file") ||
  2770.       die "Can't open configure file $opt_config_file\n";
  2771.     print "Reading old values from cache: $opt_config_file\n";
  2772.   }
  2773.   else
  2774.   {
  2775.     open(CONFIG_FILE,"+>>$opt_config_file") ||
  2776.       die "Can't create configure file $opt_config_file: $!\n";
  2777.   }
  2778.   select CONFIG_FILE;
  2779.   $|=1;
  2780.   select STDOUT;
  2781.   while (<CONFIG_FILE>)
  2782.   {
  2783.     chomp;
  2784.     if (/^(\S+)=([^\#]*[^\#\s])\s*(\# .*)*$/)
  2785.     {
  2786.       $key=$1; $limit=$2 ; $prompt=$3;
  2787.       if (!$opt_quick || $limit =~ /\d/ || $key =~ /crash_me/)
  2788.       {
  2789.     if ($key !~ /restart/i)
  2790.     {
  2791.       $limits{$key}=$limit;
  2792.       $prompts{$key}=length($prompt) ? substr($prompt,2) : "";
  2793.       delete $limits{'restart'};
  2794.     }
  2795.     else
  2796.     {
  2797.       $limit_changed=1;
  2798.       if ($limit > $limits{'restart'}{'tohigh'})
  2799.       {
  2800.         $limits{'restart'}{'low'} = $limits{'restart'}{'tohigh'};
  2801.       }
  2802.       $limits{'restart'}{'tohigh'} = $limit;
  2803.     }
  2804.       }
  2805.     }
  2806.     elsif (!/^\s*$/ && !/^\#/)
  2807.     {
  2808.       die "Wrong config row: $_\n";
  2809.     }
  2810.   }
  2811. }
  2812.  
  2813.  
  2814. sub save_config_data
  2815. {
  2816.   my ($key,$limit,$prompt)=@_;
  2817.   $prompts{$key}=$prompt;
  2818.   return if (defined($limits{$key}) && $limits{$key} eq $limit);
  2819.   if (!defined($limit) || $limit eq "")
  2820.   {
  2821.     die "Undefined limit for $key\n";
  2822.   }
  2823.   print CONFIG_FILE "$key=$limit\t# $prompt\n";
  2824.   $limits{$key}=$limit;
  2825.   $limit_changed=1;
  2826.   if (($opt_restart && $limits{'operating_system'} =~ /windows/i) ||
  2827.                ($limits{'operating_system'} =~ /NT/))
  2828.   {
  2829.     # If perl crashes in windows, everything is lost (Wonder why? :)
  2830.     close CONFIG_FILE;
  2831.     open(CONFIG_FILE,"+>>$opt_config_file") ||
  2832.       die "Can't reopen configure file $opt_config_file: $!\n";
  2833.   }
  2834. }
  2835.  
  2836.  
  2837. sub save_all_config_data
  2838. {
  2839.   my ($key,$tmp);
  2840.   close CONFIG_FILE;
  2841.   return if (!$limit_changed);
  2842.   open(CONFIG_FILE,">$opt_config_file") ||
  2843.     die "Can't create configure file $opt_config_file: $!\n";
  2844.   select CONFIG_FILE;
  2845.   $|=1;
  2846.   select STDOUT;
  2847.   delete $limits{'restart'};
  2848.  
  2849.   print CONFIG_FILE "#This file is automaticly generated by crash-me $version\n\n";
  2850.   foreach $key (sort keys %limits)
  2851.   {
  2852.     $tmp="$key=$limits{$key}";
  2853.     print CONFIG_FILE $tmp . ("\t" x (int((32-min(length($tmp),32)+7)/8)+1)) .
  2854.       "# $prompts{$key}\n";
  2855.   }
  2856.   close CONFIG_FILE;
  2857. }
  2858.  
  2859.  
  2860. sub check_repeat
  2861. {
  2862.   my ($sth,$limit)=@_;
  2863.   my ($row);
  2864.  
  2865.   return 0 if (!($row=$sth->fetchrow_arrayref));
  2866.   return (defined($row->[0]) && ('a' x $limit) eq $row->[0]) ? 1 : 0;
  2867. }
  2868.  
  2869.  
  2870. sub min
  2871. {
  2872.   my($min)=$_[0];
  2873.   my($i);
  2874.   for ($i=1 ; $i <= $#_; $i++)
  2875.   {
  2876.     $min=$_[$i] if ($min > $_[$i]);
  2877.   }
  2878.   return $min;
  2879. }
  2880.  
  2881. sub sql_concat
  2882. {
  2883.   my ($a,$b)= @_;
  2884.   return "$a || $b" if ($limits{'func_sql_concat_as_||'} eq 'yes');
  2885.   return "concat($a,$b)" if ($limits{'func_odbc_concat'} eq 'yes');
  2886.   return "$a + $b" if ($limits{'func_extra_concat_as_+'} eq 'yes');
  2887.   return undef;
  2888. }
  2889.  
  2890. #
  2891. # Returns a list of statements to create a table in a portable manner
  2892. # but still utilizing features in the databases.
  2893. #
  2894.  
  2895. sub create_table
  2896. {
  2897.   my($table_name,$fields,$index) = @_;
  2898.   my($query,$nr,$parts,@queries,@index);
  2899.  
  2900.   $query="create table $table_name (";
  2901.   $nr=0;
  2902.   foreach $field (@$fields)
  2903.   {
  2904.     $query.= $field . ',';
  2905.   }
  2906.   foreach $index (@$index)
  2907.   {
  2908.     $index =~ /\(([^\(]*)\)$/i;
  2909.     $parts=$1;
  2910.     if ($index =~ /^primary key/)
  2911.     {
  2912.       if ($limits{'primary_key_in_create'} eq 'yes')
  2913.       {
  2914.     $query.= $index . ',';
  2915.       }
  2916.       else
  2917.       {
  2918.     push(@queries,
  2919.          "create unique index ${table_name}_prim on $table_name ($parts)");
  2920.       }
  2921.     }
  2922.     elsif ($index =~ /^unique/)
  2923.     {
  2924.       if ($limits{'unique_in_create'} eq 'yes')
  2925.       {
  2926.     $query.= "unique ($parts),";
  2927.       }
  2928.       else
  2929.       {
  2930.     $nr++;
  2931.     push(@queries,
  2932.          "create unique index ${table_name}_$nr on $table_name ($parts)");
  2933.  
  2934.       }
  2935.     }
  2936.     else
  2937.     {
  2938.       if ($limits{'index_in_create'} eq 'yes')
  2939.       {
  2940.     $query.= "index ($parts),";
  2941.       }
  2942.       else
  2943.       {
  2944.     $nr++;
  2945.     push(@queries,
  2946.          "create index ${table_name}_$nr on $table_name ($1)");
  2947.       }
  2948.     }
  2949.   }
  2950.   chop($query);
  2951.   $query.= ')';
  2952.   unshift(@queries,$query);
  2953.   return @queries;
  2954. }
  2955.  
  2956.  
  2957. #
  2958. # This is used by some query packages to change:
  2959. # %d -> limit
  2960. # %s -> 'a' x limit
  2961. # %v -> "1,1,1,1,1" where there are 'limit' number of ones
  2962. # %f -> q1,q2,q3....
  2963. # %F -> q1 integer,q2 integer,q3 integer....
  2964.  
  2965. sub fix_query
  2966. {
  2967.   my ($query,$limit)=@_;
  2968.   my ($repeat,$i);
  2969.  
  2970.   return $query if !(defined($query));
  2971.   $query =~ s/%d/$limit/g;
  2972.   if ($query =~ /%s/)
  2973.   {
  2974.     $repeat= 'a' x $limit;
  2975.     $query =~ s/%s/$repeat/g;
  2976.   }
  2977.   if ($query =~ /%v/)
  2978.   {
  2979.     $repeat= '1,' x $limit;
  2980.     chop($repeat);
  2981.     $query =~ s/%v/$repeat/g;
  2982.   }
  2983.   if ($query =~ /%f/)
  2984.   {
  2985.     $repeat="";
  2986.     for ($i=1 ; $i <= $limit ; $i++)
  2987.     {
  2988.       $repeat.="q$i,";
  2989.     }
  2990.     chop($repeat);
  2991.     $query =~ s/%f/$repeat/g;
  2992.   }
  2993.   if ($query =~ /%F/)
  2994.   {
  2995.     $repeat="";
  2996.     for ($i=1 ; $i <= $limit ; $i++)
  2997.     {
  2998.       $repeat.="q$i integer,";
  2999.     }
  3000.     chop($repeat);
  3001.     $query =~ s/%F/$repeat/g;
  3002.   }
  3003.   return $query;
  3004. }
  3005.  
  3006.  
  3007. #
  3008. # Different query packages
  3009. #
  3010.  
  3011. package query_repeat;
  3012.  
  3013. sub new
  3014. {
  3015.   my ($type,$init,$query,$add1,$add_mid,$add,$add_end,$end_query,$cleanup,
  3016.       $max_limit, $check, $offset)=@_;
  3017.   my $self={};
  3018.   if (defined($init) && $#$init != -1)
  3019.   {
  3020.     $self->{'init'}=$init;
  3021.   }
  3022.   $self->{'query'}=$query;
  3023.   $self->{'add1'}=$add1;
  3024.   $self->{'add_mid'}=$add_mid;
  3025.   $self->{'add'}=$add;
  3026.   $self->{'add_end'}=$add_end;
  3027.   $self->{'end_query'}=$end_query;
  3028.   $self->{'cleanup'}=$cleanup;
  3029.   $self->{'max_limit'}=(defined($max_limit) ? $max_limit : $main::query_size);
  3030.   $self->{'check'}=$check;
  3031.   $self->{'offset'}=$offset;
  3032.   $self->{'printf'}= ($add =~ /%d/);
  3033.   bless $self;
  3034. }
  3035.  
  3036. sub query
  3037. {
  3038.   my ($self,$limit)=@_;
  3039.   if (!$self->{'printf'})
  3040.   {
  3041.     return $self->{'query'} . ($self->{'add'} x $limit) .
  3042.       ($self->{'add_end'} x $limit) . $self->{'end_query'};
  3043.   }
  3044.   my ($tmp,$tmp2,$tmp3,$i);
  3045.   $tmp=$self->{'query'};
  3046.   if ($self->{'add1'})
  3047.   {
  3048.     for ($i=0; $i < $limit ; $i++)
  3049.     {
  3050.       $tmp3 = $self->{'add1'};
  3051.       $tmp3 =~ s/%d/$i/g;
  3052.       $tmp  .= $tmp3;
  3053.     }
  3054.   }
  3055.   $tmp .= " ".$self->{'add_mid'};
  3056.   if ($self->{'add'})
  3057.   {
  3058.     for ($i=0; $i < $limit ; $i++)
  3059.     {
  3060.       $tmp2 = $self->{'add'};
  3061.       $tmp2 =~ s/%d/$i/g;
  3062.       $tmp  .= $tmp2;
  3063.     }
  3064.   }
  3065.   return ($tmp .
  3066.       ($self->{'add_end'} x $limit) . $self->{'end_query'});
  3067. }
  3068.  
  3069. sub max_limit
  3070. {
  3071.   my ($self)=@_;
  3072.   my $tmp;
  3073.   $tmp=int(($main::limits{"query_size"}-length($self->{'query'})
  3074.         -length($self->{'add_mid'})-length($self->{'end_query'}))/
  3075.        (length($self->{'add1'})+
  3076.        length($self->{'add'})+length($self->{'add_end'})));
  3077.   return main::min($self->{'max_limit'},$tmp);
  3078. }
  3079.  
  3080.  
  3081. sub cleanup
  3082. {
  3083.   my ($self)=@_;
  3084.   my($tmp,$statement);
  3085.   $tmp=$self->{'cleanup'};
  3086.   foreach $statement (@$tmp)
  3087.   {
  3088.     main::safe_query($statement) if (defined($statement) && length($statement));
  3089.   }
  3090. }
  3091.  
  3092. sub check
  3093. {
  3094.   my ($self,$sth)=@_;
  3095.   my $check=$self->{'check'};
  3096.   return &$check($sth,$self->{'limit'}) if (defined($check));
  3097.   return 1;
  3098. }
  3099.  
  3100. sub check_query
  3101. {
  3102.   return undef;
  3103. }
  3104.  
  3105.  
  3106. package query_num;
  3107.  
  3108. sub new
  3109. {
  3110.   my ($type,$query,$end_query,$cleanup,$max_limit,$check)=@_;
  3111.   my $self={};
  3112.   $self->{'query'}=$query;
  3113.   $self->{'end_query'}=$end_query;
  3114.   $self->{'cleanup'}=$cleanup;
  3115.   $self->{'max_limit'}=$max_limit;
  3116.   $self->{'check'}=$check;
  3117.   bless $self;
  3118. }
  3119.  
  3120.  
  3121. sub query
  3122. {
  3123.   my ($self,$i)=@_;
  3124.   $self->{'limit'}=$i;
  3125.   return "$self->{'query'}$i$self->{'end_query'}";
  3126. }
  3127.  
  3128. sub max_limit
  3129. {
  3130.   my ($self)=@_;
  3131.   return $self->{'max_limit'};
  3132. }
  3133.  
  3134. sub cleanup
  3135. {
  3136.   my ($self)=@_;
  3137.   my($statement);
  3138.   foreach $statement ($self->{'$cleanup'})
  3139.   {
  3140.     main::safe_query($statement) if (defined($statement) && length($statement));
  3141.   }
  3142. }
  3143.  
  3144.  
  3145. sub check
  3146. {
  3147.   my ($self,$sth)=@_;
  3148.   my $check=$self->{'check'};
  3149.   return &$check($sth,$self->{'limit'}) if (defined($check));
  3150.   return 1;
  3151. }
  3152.  
  3153. sub check_query
  3154. {
  3155.   return undef;
  3156. }
  3157.  
  3158. #
  3159. # This package is used when testing CREATE TABLE!
  3160. #
  3161.  
  3162. package query_table;
  3163.  
  3164. sub new
  3165. {
  3166.   my ($type,$query, $add, $end_query, $extra_init, $safe_query, $check,
  3167.       $cleanup, $max_limit, $offset)=@_;
  3168.   my $self={};
  3169.   $self->{'query'}=$query;
  3170.   $self->{'add'}=$add;
  3171.   $self->{'end_query'}=$end_query;
  3172.   $self->{'extra_init'}=$extra_init;
  3173.   $self->{'safe_query'}=$safe_query;
  3174.   $self->{'check'}=$check;
  3175.   $self->{'cleanup'}=$cleanup;
  3176.   $self->{'max_limit'}=$max_limit;
  3177.   $self->{'offset'}=$offset;
  3178.   bless $self;
  3179. }
  3180.  
  3181.  
  3182. sub query
  3183. {
  3184.   my ($self,$limit)=@_;
  3185.   $self->{'limit'}=$limit;
  3186.   $self->cleanup();     # Drop table before create
  3187.  
  3188.   my ($tmp,$tmp2,$i,$query,@res);
  3189.   $tmp =$self->{'query'};
  3190.   $tmp =~ s/%d/$limit/g;
  3191.   for ($i=1; $i <= $limit ; $i++)
  3192.   {
  3193.     $tmp2 = $self->{'add'};
  3194.     $tmp2 =~ s/%d/$i/g;
  3195.     $tmp  .= $tmp2;
  3196.   }
  3197.   push(@res,$tmp . $self->{'end_query'});
  3198.   $tmp=$self->{'extra_init'};
  3199.   foreach $query (@$tmp)
  3200.   {
  3201.     push(@res,main::fix_query($query,$limit));
  3202.   }
  3203.   return \@res;
  3204. }
  3205.  
  3206.  
  3207. sub max_limit
  3208. {
  3209.   my ($self)=@_;
  3210.   return $self->{'max_limit'};
  3211. }
  3212.  
  3213.  
  3214. sub check_query
  3215. {
  3216.   my ($self)=@_;
  3217.   return main::fix_query($self->{'safe_query'},$self->{'limit'});
  3218. }
  3219.  
  3220. sub check
  3221. {
  3222.   my ($self,$sth)=@_;
  3223.   my $check=$self->{'check'};
  3224.   return 0 if (!($row=$sth->fetchrow_arrayref));
  3225.   if (defined($check))
  3226.   {
  3227.     return (defined($row->[0]) &&
  3228.         $row->[0] eq main::fix_query($check,$self->{'limit'})) ? 1 : 0;
  3229.   }
  3230.   return 1;
  3231. }
  3232.  
  3233.  
  3234. # Remove table before and after create table query
  3235.  
  3236. sub cleanup()
  3237. {
  3238.   my ($self)=@_;
  3239.   main::safe_query(main::fix_query($self->{'cleanup'},$self->{'limit'}));
  3240. }
  3241.  
  3242. #
  3243. # Package to do many queries with %d, and %s substitution
  3244. #
  3245.  
  3246. package query_many;
  3247.  
  3248. sub new
  3249. {
  3250.   my ($type,$query,$safe_query,$check_result,$cleanup,$max_limit,$offset,
  3251.       $safe_cleanup)=@_;
  3252.   my $self={};
  3253.   $self->{'query'}=$query;
  3254.   $self->{'safe_query'}=$safe_query;
  3255.   $self->{'check'}=$check_result;
  3256.   $self->{'cleanup'}=$cleanup;
  3257.   $self->{'max_limit'}=$max_limit;
  3258.   $self->{'offset'}=$offset;
  3259.   $self->{'safe_cleanup'}=$safe_cleanup;
  3260.   bless $self;
  3261. }
  3262.  
  3263.  
  3264. sub query
  3265. {
  3266.   my ($self,$limit)=@_;
  3267.   my ($queries,$query,@res);
  3268.   $self->{'limit'}=$limit;
  3269.   $self->cleanup() if (defined($self->{'safe_cleanup'}));
  3270.   $queries=$self->{'query'};
  3271.   foreach $query (@$queries)
  3272.   {
  3273.     push(@res,main::fix_query($query,$limit));
  3274.   }
  3275.   return \@res;
  3276. }
  3277.  
  3278. sub check_query
  3279. {
  3280.   my ($self)=@_;
  3281.   return main::fix_query($self->{'safe_query'},$self->{'limit'});
  3282. }
  3283.  
  3284. sub cleanup
  3285. {
  3286.   my ($self)=@_;
  3287.   my($tmp,$statement);
  3288.   return if (!defined($self->{'cleanup'}));
  3289.   $tmp=$self->{'cleanup'};
  3290.   foreach $statement (@$tmp)
  3291.   {
  3292.     if (defined($statement) && length($statement))
  3293.     {
  3294.       main::safe_query(main::fix_query($statement,$self->{'limit'}));
  3295.     }
  3296.   }
  3297. }
  3298.  
  3299.  
  3300. sub check
  3301. {
  3302.   my ($self,$sth)=@_;
  3303.   my ($check,$row);
  3304.   return 0 if (!($row=$sth->fetchrow_arrayref));
  3305.   $check=$self->{'check'};
  3306.   if (defined($check))
  3307.   {
  3308.     return (defined($row->[0]) &&
  3309.         $row->[0] eq main::fix_query($check,$self->{'limit'})) ? 1 : 0;
  3310.   }
  3311.   return 1;
  3312. }
  3313.  
  3314. sub max_limit
  3315. {
  3316.   my ($self)=@_;
  3317.   return $self->{'max_limit'};
  3318. }
  3319.  
  3320. #
  3321. # Used to find max supported row length
  3322. #
  3323.  
  3324. package query_row_length;
  3325.  
  3326. sub new
  3327. {
  3328.   my ($type,$create,$null,$drop,$max_limit)=@_;
  3329.   my $self={};
  3330.   $self->{'table_name'}=$create;
  3331.   $self->{'null'}=$null;
  3332.   $self->{'cleanup'}=$drop;
  3333.   $self->{'max_limit'}=$max_limit;
  3334.   bless $self;
  3335. }
  3336.  
  3337.  
  3338. sub query
  3339. {
  3340.   my ($self,$limit)=@_;
  3341.   my ($res,$values,$size,$length,$i);
  3342.   $self->{'limit'}=$limit;
  3343.  
  3344.   $res="";
  3345.   $size=main::min($main::limits{'max_char_size'},255);
  3346.   $size = 255 if (!$size); # Safety
  3347.   for ($length=$i=0; $length + $size <= $limit ; $length+=$size, $i++)
  3348.   {
  3349.     $res.= "q$i char($size) $self->{'null'},";
  3350.     $values.="'" . ('a' x $size) . "',";
  3351.   }
  3352.   if ($length < $limit)
  3353.   {
  3354.     $size=$limit-$length;
  3355.     $res.= "q$i char($size) $self->{'null'},";
  3356.     $values.="'" . ('a' x $size) . "',";
  3357.   }
  3358.   chop($res);
  3359.   chop($values);
  3360.   return ["create table " . $self->{'table_name'} . " ($res)",
  3361.       "insert into " . $self->{'table_name'} . " values ($values)"];
  3362. }
  3363.  
  3364. sub max_limit
  3365. {
  3366.   my ($self)=@_;
  3367.   return $self->{'max_limit'};
  3368. }
  3369.  
  3370. sub cleanup
  3371. {
  3372.   my ($self)=@_;
  3373.   main::safe_query($self->{'cleanup'});
  3374. }
  3375.  
  3376.  
  3377. sub check
  3378. {
  3379.   return 1;
  3380. }
  3381.  
  3382. sub check_query
  3383. {
  3384.   return undef;
  3385. }
  3386.  
  3387. #
  3388. # Used to find max supported index length
  3389. #
  3390.  
  3391. package query_index_length;
  3392.  
  3393. sub new
  3394. {
  3395.   my ($type,$create,$drop,$max_limit)=@_;
  3396.   my $self={};
  3397.   $self->{'create'}=$create;
  3398.   $self->{'cleanup'}=$drop;
  3399.   $self->{'max_limit'}=$max_limit;
  3400.   bless $self;
  3401. }
  3402.  
  3403.  
  3404. sub query
  3405. {
  3406.   my ($self,$limit)=@_;
  3407.   my ($res,$size,$length,$i,$parts,$values);
  3408.   $self->{'limit'}=$limit;
  3409.  
  3410.   $res=$parts=$values="";
  3411.   $size=main::min($main::limits{'max_index_part_length'},$main::limits{'max_char_size'});
  3412.   $size=1 if ($size == 0);    # Avoid infinite loop errors
  3413.   for ($length=$i=0; $length + $size <= $limit ; $length+=$size, $i++)
  3414.   {
  3415.     $res.= "q$i char($size) not null,";
  3416.     $parts.= "q$i,";
  3417.     $values.= "'" . ('a' x $size) . "',";
  3418.   }
  3419.   if ($length < $limit)
  3420.   {
  3421.     $size=$limit-$length;
  3422.     $res.= "q$i char($size) not null,";
  3423.     $parts.="q$i,";
  3424.     $values.= "'" . ('a' x $size) . "',";
  3425.   }
  3426.   chop($parts);
  3427.   chop($res);
  3428.   chop($values);
  3429.   if ($main::limits{'unique_in_create'} eq 'yes')
  3430.   {
  3431.     return [$self->{'create'} . "($res,unique ($parts))",
  3432.         "insert into crash_q values($values)"];
  3433.   }
  3434.   return [$self->{'create'} . "($res)",
  3435.       "create index crash_q_index on crash_q ($parts)",
  3436.       "insert into crash_q values($values)"];
  3437. }
  3438.  
  3439. sub max_limit
  3440. {
  3441.   my ($self)=@_;
  3442.   return $self->{'max_limit'};
  3443. }
  3444.  
  3445. sub cleanup
  3446. {
  3447.   my ($self)=@_;
  3448.   main::safe_query($self->{'cleanup'});
  3449. }
  3450.  
  3451.  
  3452. sub check
  3453. {
  3454.   return 1;
  3455. }
  3456.  
  3457. sub check_query
  3458. {
  3459.   return undef;
  3460. }
  3461.  
  3462.  
  3463. ### TODO:
  3464. # OID test instead of / in addition to _rowid
  3465.