diff options
author | Mikael Ronstrom <mikael@mysql.com> | 2009-10-22 16:15:06 +0200 |
---|---|---|
committer | Mikael Ronstrom <mikael@mysql.com> | 2009-10-22 16:15:06 +0200 |
commit | 66f056a64cadb601ca2b1d7821de4823b38c23cf (patch) | |
tree | 0bcd1e2792ff22088f2d5faa233170a48ebeb79a /sql/sql_partition.h | |
parent | 57d455460d52da8b124d839fb6462d55b0ca2ee7 (diff) | |
download | mariadb-git-66f056a64cadb601ca2b1d7821de4823b38c23cf.tar.gz |
A lot of fixes to make character set work ok, first step to fixing BUG#48163
Diffstat (limited to 'sql/sql_partition.h')
-rw-r--r-- | sql/sql_partition.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sql/sql_partition.h b/sql/sql_partition.h index 47e5df0443f..0dac13a3fcc 100644 --- a/sql/sql_partition.h +++ b/sql/sql_partition.h @@ -67,9 +67,6 @@ bool check_partition_info(partition_info *part_info,handlerton **eng_type, TABLE *table, handler *file, HA_CREATE_INFO *info); void set_linear_hash_mask(partition_info *part_info, uint num_parts); bool fix_partition_func(THD *thd, TABLE *table, bool create_table_ind); -char *generate_partition_syntax(partition_info *part_info, - uint *buf_length, bool use_sql_alloc, - bool show_partition_options); bool partition_key_modified(TABLE *table, const MY_BITMAP *fields); void get_partition_set(const TABLE *table, uchar *buf, const uint index, const key_range *key_spec, @@ -96,6 +93,7 @@ bool fix_fields_part_func(THD *thd, Item* func_expr, TABLE *table, bool check_part_func_fields(Field **ptr, bool ok_with_charsets); bool field_is_partition_charset(Field *field); +Item* convert_charset_partition_constant(Item *item, CHARSET_INFO *cs); /* A "Get next" function for partition iterator. |