crash-me
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:109k
源码类别:

模拟服务器

开发平台:

C/C++

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