diff options
author | tsmith@ramayana.hindu.god <> | 2007-10-22 14:32:22 -0600 |
---|---|---|
committer | tsmith@ramayana.hindu.god <> | 2007-10-22 14:32:22 -0600 |
commit | e347c1413a0b378c715ca709e00db27ec08cca0b (patch) | |
tree | dddc96b24ee2d5e7fe0a925d52f1f8e5e6104844 /storage/csv | |
parent | 3f33002fc46da86d735710af3620f9eab65b1803 (diff) | |
parent | 78b61d3a50d484942f357a44dc9ccb4199e12528 (diff) | |
download | mariadb-git-e347c1413a0b378c715ca709e00db27ec08cca0b.tar.gz |
Merge ramayana.hindu.god:/home/tsmith/m/bk/51
into ramayana.hindu.god:/home/tsmith/m/bk/maint/51
Diffstat (limited to 'storage/csv')
-rw-r--r-- | storage/csv/ha_tina.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/csv/ha_tina.cc b/storage/csv/ha_tina.cc index 6a87b8ecc72..0d9c019a19d 100644 --- a/storage/csv/ha_tina.cc +++ b/storage/csv/ha_tina.cc @@ -1203,8 +1203,8 @@ int ha_tina::rnd_end() The sort is needed when there were updates/deletes with random orders. It sorts so that we move the firts blocks to the beginning. */ - qsort(chain, (size_t)(chain_ptr - chain), sizeof(tina_set), - (qsort_cmp)sort_set); + my_qsort(chain, (size_t)(chain_ptr - chain), sizeof(tina_set), + (qsort_cmp)sort_set); off_t write_begin= 0, write_end; |