diff options
author | mikael@c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se <> | 2006-04-01 16:31:53 -0500 |
---|---|---|
committer | mikael@c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se <> | 2006-04-01 16:31:53 -0500 |
commit | 0a02cbb5f66ba38cf6ef7489efbc2cc4df88cc70 (patch) | |
tree | b0ebf45311f5f6a51e2768460b3d3f3d54b4cf71 /sql/partition_info.h | |
parent | 62e8932dbf2978dbdd67ac977622e7caba9b5b4e (diff) | |
parent | 635b0a9dc002fccd1eda709b238d7c6fbde29248 (diff) | |
download | mariadb-git-0a02cbb5f66ba38cf6ef7489efbc2cc4df88cc70.tar.gz |
Merge c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/clean-mysql-5.1-new
into c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/wl2826
Diffstat (limited to 'sql/partition_info.h')
-rw-r--r-- | sql/partition_info.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sql/partition_info.h b/sql/partition_info.h index 08669f8001e..084e9b7fadc 100644 --- a/sql/partition_info.h +++ b/sql/partition_info.h @@ -28,7 +28,7 @@ typedef int (*get_part_id_func)(partition_info *part_info, longlong *func_value); typedef uint32 (*get_subpart_id_func)(partition_info *part_info); - +struct st_ddl_log_memory_entry; class partition_info : public Sql_alloc { @@ -76,7 +76,11 @@ public: Item *subpart_expr; Item *item_free_list; - + + struct st_ddl_log_memory_entry *first_log_entry; + struct st_ddl_log_memory_entry *exec_log_entry; + struct st_ddl_log_memory_entry *frm_log_entry; + /* A bitmap of partitions used by the current query. Usage pattern: @@ -191,6 +195,7 @@ public: part_field_array(NULL), subpart_field_array(NULL), full_part_field_array(NULL), part_expr(NULL), subpart_expr(NULL), item_free_list(NULL), + first_log_entry(NULL), exec_log_entry(NULL), frm_log_entry(NULL), list_array(NULL), part_info_string(NULL), part_func_string(NULL), subpart_func_string(NULL), |