From 5eddd40bc947d2633aa5f351044db8babeeedba2 Mon Sep 17 00:00:00 2001 From: "jani@hynda.(none)" <> Date: Mon, 17 Mar 2003 15:50:56 +0200 Subject: [PATCH] Fixed a bug in --one-database. --- client/mysql.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 #include -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)); }