diff options
author | monty@donna.mysql.com <> | 2001-01-12 13:52:32 +0200 |
---|---|---|
committer | monty@donna.mysql.com <> | 2001-01-12 13:52:32 +0200 |
commit | 9c80d5cb70d530d63690b53a42554b57a3e513b4 (patch) | |
tree | feed2fb14dbc49c9f89bfedaa06d5d15c58c8993 /tests/pmail.pl | |
parent | d3d8bba024c045d5514eb0b7029bc1cb7410d180 (diff) | |
download | mariadb-git-9c80d5cb70d530d63690b53a42554b57a3e513b4.tar.gz |
Patches for NetBSD/macppc
Fixed bug in LEFT JOIN
Added bdb_log_buffer_size
Diffstat (limited to 'tests/pmail.pl')
-rwxr-xr-x | tests/pmail.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/pmail.pl b/tests/pmail.pl index 4ca2033b4d1..c7f8d4ee368 100755 --- a/tests/pmail.pl +++ b/tests/pmail.pl @@ -9,7 +9,7 @@ use DBI; use Getopt::Long; -$VER="1.4a"; +$VER="1.5"; @fldnms= ("mail_from","mail_to","cc","date","time_zone","file","sbj","txt"); $fields=8; @@ -18,7 +18,7 @@ $fields=8; $opt_user= $opt_password= ""; $opt_socket= "/tmp/mysql.sock"; $opt_port= 3306; -$opt_db="test"; +$opt_db="mail"; $opt_table="mails"; $opt_help=$opt_count=0; @@ -61,7 +61,7 @@ foreach $val (@fldnms) } $fields++; } -$query.= " from $opt_table where $ARGV[0]"; +$query.= " from $opt_table where $ARGV[0] order by date desc"; #### #### Send query and save result |