summaryrefslogtreecommitdiff
path: root/sql/partition_info.h
diff options
context:
space:
mode:
authorkostja@bodhi.local <>2007-03-27 21:09:56 +0400
committerkostja@bodhi.local <>2007-03-27 21:09:56 +0400
commitb42b41640067e07fe8d22e67897e4f1a000291c2 (patch)
tree6daa52a8ca86c0e36c1ccc12d201cfb452f71156 /sql/partition_info.h
parente56c6d2f25592af24d1f222f822f5b9899221558 (diff)
downloadmariadb-git-b42b41640067e07fe8d22e67897e4f1a000291c2.tar.gz
Remove unnecessary casts to uchar. The casts are stemming from
the lexer API which internally uses unsigned char variables to address its state map. The implementation of the lexer should be internal to the lexer, and not influence the rest of the code.
Diffstat (limited to 'sql/partition_info.h')
-rw-r--r--sql/partition_info.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/partition_info.h b/sql/partition_info.h
index 8bcc769054f..6c21002c184 100644
--- a/sql/partition_info.h
+++ b/sql/partition_info.h
@@ -156,7 +156,7 @@ public:
char *part_func_string;
char *subpart_func_string;
- uchar *part_state;
+ const char *part_state;
partition_element *curr_part_elem;
partition_element *current_partition;