summaryrefslogtreecommitdiff
path: root/sql/sql_class.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r--sql/sql_class.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h
index 2d492b19a2b..ccbd7a194f2 100644
--- a/sql/sql_class.h
+++ b/sql/sql_class.h
@@ -882,8 +882,9 @@ typedef struct st_sort_field {
Field *field; /* Field to sort */
Item *item; /* Item if not sorting fields */
uint length; /* Length of sort field */
- my_bool reverse; /* if descending sort */
Item_result result_type; /* Type of item */
+ bool reverse; /* if descending sort */
+ bool need_strxnfrm; /* If we have to use strxnfrm() */
} SORT_FIELD;
@@ -898,7 +899,8 @@ typedef struct st_sort_buffer {
/* Structure for db & table in sql_yacc */
-class Table_ident :public Sql_alloc {
+class Table_ident :public Sql_alloc
+{
public:
LEX_STRING db;
LEX_STRING table;