mariadb/client
unknown 1b4d6a055a Bug#21263 mysql client XML output does not distinguish between NULL and string 'NULL'
Fix: "mysql --xml" now print NULL values the same way that "mysqldump --xml" does:
  
    <field name="name" xsi:nil="true" />
  
  to distinguish from empty strings:
  
    <field name="name"></field>
  
  and from string "NULL":
  
    <field name="name">NULL</field>


client/mysql.cc:
  Fixing to print NULLs differently from empty strings
mysql-test/r/client_xml.result:
  Fixing test result accordingly
2006-09-29 16:29:39 +05:00
..
.cvsignore
client_priv.h
CMakeLists.txt Added build rule for mysql_upgrade.exe 2006-09-22 07:38:24 +02:00
completion_hash.cc
completion_hash.h
get_password.c
Makefile.am make dist changes for Cmake build 2006-09-01 10:32:12 +02:00
my_readline.h
mysql.cc Bug#21263 mysql client XML output does not distinguish between NULL and string 'NULL' 2006-09-29 16:29:39 +05:00
mysql_upgrade.c Bug#21011 The [client] group header was overwritten by "password" option in upgrade_defaults file which confused mysqlcheck thus used to prevent the whole thing from running correctly when the "--password=" option is specified on mysql_upgrade command line with no corresponding "--user=" option 2006-09-15 04:01:47 +04:00
mysqladmin.cc
mysqlbinlog.cc Fixes for crashes and test failures 2006-09-01 14:34:37 +02:00
mysqlcheck.c Bug #16502: mysqlcheck gets confused with views 2006-07-24 13:31:20 -07:00
mysqldump.c Merge mysql.com:/users/lthalmann/bkroot/mysql-5.0-rpl 2006-09-21 00:05:56 +02:00
mysqlimport.c Bug#15690 mysqlimport tries to set options the server doesn't understand 2006-07-20 17:30:44 +02:00
mysqlmanager-pwgen.c
mysqlmanagerc.c
mysqlshow.c Bug #19147: mysqlshow INFORMATION_SCHEMA does not work 2006-07-21 20:29:25 -07:00
mysqltest.c Remove duplicate free of "ds_res" 2006-08-16 20:38:33 +02:00
readline.cc
sql_string.cc
sql_string.h