diff options
author | jani@hynda.(none) <> | 2003-03-17 15:50:56 +0200 |
---|---|---|
committer | jani@hynda.(none) <> | 2003-03-17 15:50:56 +0200 |
commit | 5eddd40bc947d2633aa5f351044db8babeeedba2 (patch) | |
tree | 1ebb84a1c6a120453f0bfcbfac8ec9868cf16a88 /client | |
parent | ba46c7289c3ce1517e595a37cef48ffb3c993bb0 (diff) | |
download | mariadb-git-5eddd40bc947d2633aa5f351044db8babeeedba2.tar.gz |
Fixed a bug in --one-database.
Diffstat (limited to 'client')
-rw-r--r-- | client/mysql.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/mysql.cc b/client/mysql.cc index da52fb54e7d..6c8b7c8eb7b 100644 --- a/client/mysql.cc +++ b/client/mysql.cc @@ -40,7 +40,7 @@ #include <signal.h> #include <violite.h> -const char *VER= "12.18"; +const char *VER= "12.19"; /* Don't try to make a nice table if the data is too big */ #define MAX_COLUMN_LENGTH 1024 @@ -766,6 +766,7 @@ static int get_options(int argc, char **argv) } if (argc == 1) { + skip_updates= 0; my_free(current_db, MYF(MY_ALLOW_ZERO_PTR)); current_db= my_strdup(*argv, MYF(MY_WME)); } |