summaryrefslogtreecommitdiff
path: root/sql/filesort.h
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.org>2016-01-12 17:03:29 +0400
committerAlexander Barkov <bar@mariadb.org>2016-01-12 17:03:29 +0400
commit5b9ee3f2ae4e32a05aaae5c702110bd0cdb94271 (patch)
tree990ccee63f443ab0bc20fe70ceb9ee6fcbceb951 /sql/filesort.h
parent454589b67f9609a78f00e521fe2ef0994eed4f3f (diff)
downloadmariadb-git-5b9ee3f2ae4e32a05aaae5c702110bd0cdb94271.tar.gz
MDEV-9220 Split filesort.cc:make_sortkey() and filesort.cc::sortlength() into virtual methods in Type_handler
Diffstat (limited to 'sql/filesort.h')
-rw-r--r--sql/filesort.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/filesort.h b/sql/filesort.h
index 4c95f1202b2..22d7f987de2 100644
--- a/sql/filesort.h
+++ b/sql/filesort.h
@@ -24,10 +24,10 @@ class SQL_SELECT;
class SQL_SELECT;
class THD;
struct TABLE;
-typedef struct st_sort_field SORT_FIELD;
+struct SORT_FIELD;
class Filesort_tracker;
-ha_rows filesort(THD *thd, TABLE *table, st_sort_field *sortorder,
+ha_rows filesort(THD *thd, TABLE *table, SORT_FIELD *sortorder,
uint s_length, SQL_SELECT *select,
ha_rows max_rows, bool sort_positions,
ha_rows *examined_rows, ha_rows *found_rows,