diff options
author | unknown <svoj@mysql.com> | 2005-10-10 23:01:45 +0500 |
---|---|---|
committer | unknown <svoj@mysql.com> | 2005-10-10 23:01:45 +0500 |
commit | 57ef8576816c4104e519838bef09b9ad6a77842c (patch) | |
tree | b3c98169097b984e4f88d7286ef3a3bc578dde24 /sql/handler.h | |
parent | 931771422fc713dea035aff0993c6223b53e7a55 (diff) | |
download | mariadb-git-57ef8576816c4104e519838bef09b9ad6a77842c.tar.gz |
Store and read engine type string in extra block of .frm.
sql/handler.cc:
Use my_strnncoll instead of my_strcasecmp (it is possible to
compare non-asciiz strings now).
sql/handler.h:
extra block size added to HA_CREATE_INFO.
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/handler.h b/sql/handler.h index d58d28ad7b0..af80f021e75 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -436,6 +436,7 @@ typedef struct st_ha_create_information uint options; /* OR of HA_CREATE_ options */ uint raid_type,raid_chunks; uint merge_insert_method; + uint extra_size; /* length of extra data segment */ bool table_existed; /* 1 in create if table existed */ bool frm_only; /* 1 if no ha_create_table() */ bool varchar; /* 1 if table has a VARCHAR */ |