diff options
author | unknown <tsmith@ramayana.hindu.god> | 2007-10-22 14:32:22 -0600 |
---|---|---|
committer | unknown <tsmith@ramayana.hindu.god> | 2007-10-22 14:32:22 -0600 |
commit | 50ff08918f45acc8eb85c4aeb50addaa68a2940c (patch) | |
tree | dddc96b24ee2d5e7fe0a925d52f1f8e5e6104844 /storage/csv | |
parent | fc800ff76d0c1f47126645c7ec742ae07434056b (diff) | |
parent | 91c6e5ceb2ed973c10201b72cdc880a1cd7b321a (diff) | |
download | mariadb-git-50ff08918f45acc8eb85c4aeb50addaa68a2940c.tar.gz |
Merge ramayana.hindu.god:/home/tsmith/m/bk/51
into ramayana.hindu.god:/home/tsmith/m/bk/maint/51
sql/set_var.cc:
Auto merged
sql/sql_select.cc:
Auto merged
storage/csv/ha_tina.cc:
Auto merged
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; |