mariadb/client
unknown 80c1556a8f changes to mysqladmin : use queries instead of commands (so that they have a chance to go
into the binlog), SLAVE START -> START SLAVE, error test changes.


client/mysqladmin.c:
  Now that FLUSH TABLES and some other FLUSH go into the binlog, the same commands
  issued from mysqladmin should also go into the binlog. How could I explain to
  a user that "mysql -e 'flush tables'" is not exactly the same as "mysqladmin
  flush-tables" ?? So I replace mysql_refresh() by mysql_query().
  Also SLAVE START -> START SLAVE to make this work with 4.1 (it won't work with
  3.23 anymore).
  Also the code tested for mysql_refresh() < 0 for errors, but this cannot happen :
  - mysql_refresh() calls simple_command()
  - in 4.1 the return type of simple_command() is my_bool, and I have checked the 4.1 libmysql
  code and it returns 0 or 1, not negative values.
  - note that in 4.0 libmysql, simple_command() returns int which can be < 0, but we don't
  care here as we link the 4.1 mysqladmin with the 4.1 libmysql.
  Btw, some other parts of the code already checked
  for mysql_refresh() != 0, not < 0. So now it's homogenous : we always test for != 0
  instead of < 0.
2003-05-15 23:00:58 +02:00
..
.cvsignore
client_priv.h Added --delimiter option to mysql 2003-04-23 03:29:03 +03:00
completion_hash.cc upgrade readline to version 4.3 2002-11-19 18:26:53 +04:00
completion_hash.h upgrade readline to version 4.3 2002-11-19 18:26:53 +04:00
get_password.c
Makefile.am Removed compiler warnings 2003-05-06 01:38:38 +03:00
my_readline.h
mysql.cc Added --delimiter option to mysql 2003-04-23 03:29:03 +03:00
mysqladmin.c changes to mysqladmin : use queries instead of commands (so that they have a chance to go 2003-05-15 23:00:58 +02:00
mysqlbinlog.cc Merge with 4.0 2003-03-16 19:17:54 +02:00
mysqlcheck.c mysqltest.c, mysqlimport.c, mysqldump.c, mysqlcheck.c, mysql.cc: 2003-03-16 11:20:45 +04:00
mysqldump.c Merge with 4.0 2003-04-03 21:19:12 +03:00
mysqlimport.c mysqltest.c, mysqlimport.c, mysqldump.c, mysqlcheck.c, mysql.cc: 2003-03-16 11:20:45 +04:00
mysqlmanager-pwgen.c
mysqlmanagerc.c
mysqlshow.c - fixed C++-style comments to make IBM C compiler happy 2003-03-15 18:42:55 +01:00
mysqltest.c Merge with 4.0 2003-03-16 19:17:54 +02:00
readline.cc
sql_string.cc Always use USE_STRCOLL code 2003-01-30 11:15:14 +04:00
sql_string.h set_default_charset() is not used anymore 2003-03-16 10:56:14 +04:00