Commit 89991c65 authored by unknown's avatar unknown

merge Ranger's patches to crash-me, add new tests ( DEFAULT VALUES )

to crash-me 


sql-bench/crash-me.sh:
  new tests:
      - INSERT with DEFAULT:
      - INSERT with empty value list:
      - Insert DEFAULT VALUES;
  -------
  -checking of reserved keywords (by courtesy of Ranger)
  --------
  - added "--suffix" option 
  - added description of "--config-file" to help section
  - fixed test for DIFFERENCE()
  - fixed small bug in safe_query_result (was s/,/,/ should s/,/./)
     (by courtesy of Ranger)
sql-bench/server-cfg.sh:
  remove "KERNEL" and add "SAPDB" to sapdb version
BitKeeper/etc/logging_ok:
  Logging to logging@openlogging.org accepted
parent 5a55e25c
...@@ -86,6 +86,7 @@ tonu@x153.internalnet ...@@ -86,6 +86,7 @@ tonu@x153.internalnet
tonu@x3.internalnet tonu@x3.internalnet
venu@work.mysql.com venu@work.mysql.com
vva@genie.(none) vva@genie.(none)
walrus@kishkin.ru
walrus@mysql.com walrus@mysql.com
worm@altair.is.lan worm@altair.is.lan
zak@balfor.local zak@balfor.local
......
This diff is collapsed.
...@@ -3470,7 +3470,8 @@ sub version ...@@ -3470,7 +3470,8 @@ sub version
if ($sth->execute && (@row = $sth->fetchrow_array) if ($sth->execute && (@row = $sth->fetchrow_array)
&& $row[0] =~ /([\d\.]+)/) && $row[0] =~ /([\d\.]+)/)
{ {
$version="sap-db $1"; $version=$row[0];
$verson =~ s/KERNEL/SAP DB/i;
} }
$sth->finish; $sth->finish;
$dbh->disconnect; $dbh->disconnect;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment