diff options
author | unknown <monty@donna.mysql.fi> | 2001-04-09 21:08:56 +0300 |
---|---|---|
committer | unknown <monty@donna.mysql.fi> | 2001-04-09 21:08:56 +0300 |
commit | c7105d8008aa42e90e830ede25e7cbf0c22893c0 (patch) | |
tree | 8f547099445a7673d67da016f7a567772cd5552c /strings | |
parent | 5dfbb2ca7bc7fff9db96f1f95315c511a7728780 (diff) | |
download | mariadb-git-c7105d8008aa42e90e830ede25e7cbf0c22893c0.tar.gz |
Fixed INSERT DELAYED with Innobase
Fix for shutdown on NT
Fixed bug when using wrong dates from blob field.
BitKeeper/deleted/.del-df_crash.result~4a3dbee64843953d:
Delete: mysql-test/r/df_crash.result
BitKeeper/deleted/.del-df_crash.test~4c365178fe437f6:
Delete: mysql-test/t/df_crash.test
Docs/manual.texi:
Changelog
innobase/ib_config.h.in:
automatic changed file
innobase/ib_config.h:
automatic changed file
mysql-test/r/func_time.result:
Test case for bug in time functions
mysql-test/r/innobase.result:
Test for INSERT DELAYED
mysql-test/t/func_time.test:
Test case for bug in time functions
mysql-test/t/innobase.test:
Test for INSERT DELAYED
scripts/mysql_convert_table_format.sh:
Added --socket and --port
sql/ha_innobase.cc:
Fix bug when compiling with SAFE_MUTEX
Cleaner comment when using SHOW TABLE STATUS
sql/mysqld.cc:
Fix for shutdown on NT
sql/sql_insert.cc:
Fixed problem with Innobase and INSERT DELAYED
sql/sql_udf.cc:
Support for UDF on windows
sql/time.cc:
Fixed bug when using wrong dates from blob field.
strings/ctype-tis620.c:
Removed not used variable
support-files/mysql-max.spec.sh:
Removed old not used section
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'strings')
-rw-r--r-- | strings/ctype-tis620.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/strings/ctype-tis620.c b/strings/ctype-tis620.c index 302592ac0e8..321487c85cb 100644 --- a/strings/ctype-tis620.c +++ b/strings/ctype-tis620.c @@ -598,7 +598,6 @@ my_bool my_like_range_tis620(const char *ptr, uint ptr_length, pchar escape, const char *end=ptr+ptr_length; char *min_org=min_str; char *min_end=min_str+res_length; - char *tmp; for (; ptr != end && min_str != min_end ; ptr++) { @@ -628,10 +627,6 @@ my_bool my_like_range_tis620(const char *ptr, uint ptr_length, pchar escape, } *min_length= *max_length = (uint) (min_str - min_org); - /* Temporary fix for handling wild_one at end of string (key compression) */ -// for (tmp= min_str ; tmp > min_org && tmp[-1] == '\0';) -// *--tmp=' '; - while (min_str != min_end) *min_str++ = *max_str++ = ' '; // Because if key compression return 0; |