diff options
author | monty@mysql.com <> | 2004-12-07 15:47:34 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2004-12-07 15:47:34 +0200 |
commit | aa2f11611029dc0598566d87b6ccbfb796480477 (patch) | |
tree | 3e88769bc87606ea923136908c4a295716315b00 /sql/handler.h | |
parent | 7fbeab9166d35b614ad124f31ebe070f3e5b119f (diff) | |
parent | 563500994a31c2239a7d87ba9c5ea889493e3596 (diff) | |
download | mariadb-git-aa2f11611029dc0598566d87b6ccbfb796480477.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/my/mysql-5.0
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/handler.h b/sql/handler.h index 2cd41ec75b0..c9adaefa888 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -74,6 +74,7 @@ #define HA_HAS_CHECKSUM (1 << 24) /* Table data are stored in separate files (for lower_case_table_names) */ #define HA_FILE_BASED (1 << 26) +#define HA_NO_VARCHAR (1 << 27) /* bits in index_flags(index_number) for what you can do with index */ @@ -252,6 +253,7 @@ typedef struct st_ha_create_information uint merge_insert_method; 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 */ } HA_CREATE_INFO; |