diff options
author | Mikael Ronstrom <mikael@mysql.com> | 2009-10-29 18:04:23 +0100 |
---|---|---|
committer | Mikael Ronstrom <mikael@mysql.com> | 2009-10-29 18:04:23 +0100 |
commit | 441b53f8ba15c20428035e076a7ea895b37b128d (patch) | |
tree | 99db8fe063f30f3f4d341c3a352f0e87bf3b498e /sql/sql_partition.cc | |
parent | c7c4170eb57d3654684e19c38b68520a80329792 (diff) | |
download | mariadb-git-441b53f8ba15c20428035e076a7ea895b37b128d.tar.gz |
Changed COLUMN_LIST to COLUMNS after arch review
Diffstat (limited to 'sql/sql_partition.cc')
-rw-r--r-- | sql/sql_partition.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_partition.cc b/sql/sql_partition.cc index ec16ff29eaa..ba99d8b45b4 100644 --- a/sql/sql_partition.cc +++ b/sql/sql_partition.cc @@ -68,7 +68,7 @@ const LEX_STRING partition_keywords[]= { C_STRING_WITH_LEN("KEY") }, { C_STRING_WITH_LEN("MAXVALUE") }, { C_STRING_WITH_LEN("LINEAR ") }, - { C_STRING_WITH_LEN(" COLUMN_LIST") } + { C_STRING_WITH_LEN(" COLUMNS") } }; static const char *part_str= "PARTITION"; static const char *subpart_str= "SUBPARTITION"; @@ -6925,7 +6925,7 @@ void make_used_partitions_str(partition_info *part_info, String *parts_str) (1) is applicable for "PARTITION BY <RANGE|LIST>(func(t.field))", where func is a monotonic function. - (2) is applicable for "PARTITION BY <RANGE|LIST> COLUMN_LIST (field_list) + (2) is applicable for "PARTITION BY <RANGE|LIST> COLUMNS (field_list) (3) is applicable for "[SUB]PARTITION BY <any-partitioning-type>(any_func(t.integer_field))" @@ -7624,7 +7624,7 @@ uint32 get_next_partition_id_range(PARTITION_ITERATOR* part_iter) DESCRIPTION This implementation of PARTITION_ITERATOR::get_next() is special for LIST partitioning: it enumerates partition ids in - part_info->list_array[i] (list_col_array[i] for COLUMN_LIST LIST + part_info->list_array[i] (list_col_array[i] for COLUMNS LIST partitioning) where i runs over [min_idx, max_idx] interval. The function conforms to partition_iter_func type. |