summaryrefslogtreecommitdiff
path: root/tests/export.pl
diff options
context:
space:
mode:
authormonty@donna.mysql.fi <>2001-03-25 01:02:26 +0200
committermonty@donna.mysql.fi <>2001-03-25 01:02:26 +0200
commit5487d7a8c01a5ccce90a63a359562cff1bd95b78 (patch)
tree6191242036b4e9061dfd34fc46bf82677415e532 /tests/export.pl
parent176147cd31e728185b8b5cb4459d9d9afd1623d5 (diff)
downloadmariadb-git-5487d7a8c01a5ccce90a63a359562cff1bd95b78.tar.gz
Fixed bug in send in mysqltest
Removed usage of @r/result as this made life hard when testing different table handlers. Allow concurrent inserts if no update/binary log. Don't remove key_cache at flush tables. Fixed bug in SELECT DISTINCT SUM()...
Diffstat (limited to 'tests/export.pl')
-rwxr-xr-xtests/export.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/export.pl b/tests/export.pl
index 47a13bab8e6..29f0d1af8ff 100755
--- a/tests/export.pl
+++ b/tests/export.pl
@@ -23,7 +23,7 @@ print "Connection to database $test_db\n";
$dbh = Mysql->Connect($host) || die "Can't connect: $Mysql::db_errstr\n";
$dbh->SelectDB($test_db) || die "Can't use database $test_db: $Mysql::db_errstr\n";
-$dbh->Query("drop table export"); # Ignore this error
+$dbh->Query("drop table if exists export"); # Ignore this error
print "Creating table\n";