diff options
author | unknown <heikki@hundin.mysql.fi> | 2003-06-16 00:39:46 +0300 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2003-06-16 00:39:46 +0300 |
commit | 722e806065f0787c2e9217d6c3d501398172fbe5 (patch) | |
tree | 27d56cd87eb5acb3ee57772ad608aeaa81e7eb42 /innobase/include | |
parent | 525060293cc23840980beb0e6661a6046eda3d51 (diff) | |
download | mariadb-git-722e806065f0787c2e9217d6c3d501398172fbe5.tar.gz |
row0mysql.c, dict0dict.ic:
Cleanup
ha_innodb.cc, data0type.h:
Make sure non-latin1 users can downgrade from 4.0.14 to an earlier version if they have not created DATA_BLOB column prefix indexes
innobase/include/data0type.h:
Make sure non-latin1 users can downgrade from 4.0.14 to an earlier version if they have not created DATA_BLOB column prefix indexes
sql/ha_innodb.cc:
Make sure non-latin1 users can downgrade from 4.0.14 to an earlier version if they have not created DATA_BLOB column prefix indexes
innobase/include/dict0dict.ic:
Cleanup
innobase/row/row0mysql.c:
Cleanup
Diffstat (limited to 'innobase/include')
-rw-r--r-- | innobase/include/data0type.h | 6 | ||||
-rw-r--r-- | innobase/include/dict0dict.ic | 1 |
2 files changed, 3 insertions, 4 deletions
diff --git a/innobase/include/data0type.h b/innobase/include/data0type.h index 5e28f657f0c..4da686bf2e1 100644 --- a/innobase/include/data0type.h +++ b/innobase/include/data0type.h @@ -79,9 +79,9 @@ be less than 256 */ string, this is ORed to the precise type: this only holds for tables created with >= MySQL-4.0.14 */ -#define DATA_NONLATIN1 2048 /* if the data type is a character string - of a non-latin1 type, this is ORed to the - precise type: this only holds for tables +#define DATA_NONLATIN1 2048 /* if the data type is a DATA_BLOB (actually + TEXT) of a non-latin1 type, this is ORed to + the precise type: this only holds for tables created with >= MySQL-4.0.14 */ /*-------------------------------------------*/ diff --git a/innobase/include/dict0dict.ic b/innobase/include/dict0dict.ic index 71ea67117a7..c5982c162a7 100644 --- a/innobase/include/dict0dict.ic +++ b/innobase/include/dict0dict.ic @@ -203,7 +203,6 @@ dict_index_get_n_fields( { ut_ad(index); ut_ad(index->magic_n == DICT_INDEX_MAGIC_N); - ut_ad(index->cached); return(index->n_fields); } |