Commit e5c156a5 authored by unknown's avatar unknown
Browse files

Merge tnurnberg@bk-internal.mysql.com:/home/bk/mysql-5.1-maint

into  salvation.intern.azundris.com:/home/tnurnberg/work/mysql-5.1-maint-16456

parents 4a3ac573 504d8208
Loading
Loading
Loading
Loading
+13 −5
Original line number Diff line number Diff line
@@ -119,9 +119,6 @@ then
fi

cmd="$bindir/mysql --no-defaults --force --user=$user --host=$host"
if test ! -z "$password" ; then
  cmd="$cmd --password=$password"
fi
if test ! -z "$port"; then
  cmd="$cmd --port=$port"
fi
@@ -174,11 +171,22 @@ then
  s_echo ""
fi

run_cmd() {
  # Password argument is added here to allow for spaces in password.
  
  if test ! -z "$password"
  then
    cat $sql_file | $cmd --password="$password"
  else
    cat $sql_file | $cmd
  fi
}

if test $verbose = 0
then
  cat $sql_file | $cmd > /dev/null 2>&1
  run_cmd > /dev/null 2>&1
else
  cat $sql_file | $cmd > /dev/null
  run_cmd > /dev/null
fi
if test $? = 0
then