diff options
author | kaa@polly.(none) <> | 2007-10-18 15:17:21 +0400 |
---|---|---|
committer | kaa@polly.(none) <> | 2007-10-18 15:17:21 +0400 |
commit | 04b1c9ca40edcce1dc0dfcc00b65a0971efb18f8 (patch) | |
tree | 6d2f030551bc5a1c0ace579dc75025e78bceb582 /sql/partition_info.cc | |
parent | 97226f10270476a7c2fc0ace51093e6cb5685274 (diff) | |
download | mariadb-git-04b1c9ca40edcce1dc0dfcc00b65a0971efb18f8.tar.gz |
Post-merge changes for bug #31207: Test "join_nested" shows different strategy on IA64 CPUs / Intel's ICC compiler.
Diffstat (limited to 'sql/partition_info.cc')
-rw-r--r-- | sql/partition_info.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/partition_info.cc b/sql/partition_info.cc index ab887d5dda0..86d50cdf524 100644 --- a/sql/partition_info.cc +++ b/sql/partition_info.cc @@ -666,8 +666,8 @@ bool partition_info::check_list_constants() if (fixed && no_list_values) { bool first= TRUE; - qsort((void*)list_array, no_list_values, sizeof(LIST_PART_ENTRY), - &list_part_cmp); + my_qsort((void*)list_array, no_list_values, sizeof(LIST_PART_ENTRY), + &list_part_cmp); i= 0; LINT_INIT(prev_value); |