diff options
author | reggie@linux.site <> | 2006-03-31 11:39:44 -0600 |
---|---|---|
committer | reggie@linux.site <> | 2006-03-31 11:39:44 -0600 |
commit | 795659e77576f0d4dcb594c853683c06adcbca1c (patch) | |
tree | e6251209765135077322ee23672d32ca66db4791 /sql/partition_info.h | |
parent | 55a8eb95f235941219cdc13595703c664a781188 (diff) | |
download | mariadb-git-795659e77576f0d4dcb594c853683c06adcbca1c.tar.gz |
cleaned up a few method comments
moved several functions from sql_partition to be member functions
Diffstat (limited to 'sql/partition_info.h')
-rw-r--r-- | sql/partition_info.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/partition_info.h b/sql/partition_info.h index 69aef512a67..08669f8001e 100644 --- a/sql/partition_info.h +++ b/sql/partition_info.h @@ -245,7 +245,13 @@ public: bool set_up_defaults_for_partitioning(handler *file, ulonglong max_rows, uint start_no); char *has_unique_names(); + static bool check_engine_mix(handlerton **engine_array, uint no_parts); + bool check_range_constants(); + bool check_list_constants(); + bool check_partition_info(handlerton **eng_type, + handler *file, ulonglong max_rows); private: + static int list_part_cmp(const void* a, const void* b); bool set_up_default_partitions(handler *file, ulonglong max_rows, uint start_no); bool set_up_default_subpartitions(handler *file, ulonglong max_rows); |