diff options
author | unknown <monty@hundin.mysql.fi> | 2002-08-12 03:33:46 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-08-12 03:33:46 +0300 |
commit | 9b1930152db6ecd30b8cbcc7200af2baf7f82295 (patch) | |
tree | e90396228cd90fe22d0c1831170866e47b1602aa /myisam/mi_dynrec.c | |
parent | 6148e5a42f1a6f0ea2a3bd127d2455267d419def (diff) | |
download | mariadb-git-9b1930152db6ecd30b8cbcc7200af2baf7f82295.tar.gz |
Changed IF(expr, column, NULL) to take type from column
Fixed some windows portability problems and removed some compiler warnings
Cleaned up QUOTE() function and fixed bug in \0 and \Z handling.
Docs/manual.texi:
Changelog
Added information about new IF() behaviour.
libmysql/libmysql.def:
Removed mysql_ssl_clear
myisam/mi_dynrec.c:
Minor cleanup
mysql-test/r/func_str.result:
Added more tests for QUOTE
mysql-test/t/func_str.test:
Added more tests for QUOTE
mysys/mf_iocache.c:
Removed compiler warnings
sql/ha_innodb.cc:
Added missing null to generated string.
sql/item_cmpfunc.cc:
Changed IF(expr, column, NULL) to take type from column
sql/item_strfunc.cc:
Cleaned up QUOTE() function and fixed bug in \0 and \Z handling.
sql/log.cc:
Minor cleanup
sql/mysql_priv.h:
Fixed problem with opt_enable_named_pipe
sql/mysqld.cc:
Fixed problem with opt_enable_named_pipe
Fixed some syntax errors in windows code
sql/set_var.cc:
Removed compiler warnings
sql/slave.cc:
Removed compiler warnings
sql/sql_show.cc:
Removed compiler warnings
Diffstat (limited to 'myisam/mi_dynrec.c')
-rw-r--r-- | myisam/mi_dynrec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/myisam/mi_dynrec.c b/myisam/mi_dynrec.c index 8a9ca8aab34..60e6fc0519a 100644 --- a/myisam/mi_dynrec.c +++ b/myisam/mi_dynrec.c @@ -1097,7 +1097,6 @@ int _mi_cmp_dynamic_unique(MI_INFO *info, MI_UNIQUEDEF *def, const byte *record, my_off_t pos) { byte *rec_buff,*old_record; - uint alloced_rec_buff_length; int error; DBUG_ENTER("_mi_cmp_dynamic_unique"); |