diff options
author | unknown <kaa@polly.(none)> | 2007-10-18 15:17:21 +0400 |
---|---|---|
committer | unknown <kaa@polly.(none)> | 2007-10-18 15:17:21 +0400 |
commit | 89810417ae8321b4cf44e1321e776cb2e29ec538 (patch) | |
tree | 6d2f030551bc5a1c0ace579dc75025e78bceb582 /sql/partition_info.cc | |
parent | ddaecb2161271bd5122f22712822301ec7885ff0 (diff) | |
download | mariadb-git-89810417ae8321b4cf44e1321e776cb2e29ec538.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); |