Commit 6d0e43c7 authored by monty@hundin.mysql.fi's avatar monty@hundin.mysql.fi
Browse files

Renamed stripp_sp -> strip_sp

Remove end space from ENUM and SET strings
parent 07886933
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -46916,6 +46916,9 @@ not yet 100% confident in this code.
@appendixsubsec Changes in release 3.23.51
@itemize @bullet
@item
Remove end space from @code{enum} values. (This fixed a problem with
@code{SHOW CREATE TABLE}).
@item
Fixed bug in @code{CONCAT_WS()} that cut the result.
@item
Changed name of variables @code{Com_show_master_stat} to
+1 −1
Original line number Diff line number Diff line
@@ -494,7 +494,7 @@ extern int my_sortncmp(const char *s,uint s_len, const char *t,uint t_len);
extern WF_PACK *wf_comp(my_string str);
extern int wf_test(struct wild_file_pack *wf_pack,const char *name);
extern void wf_end(struct wild_file_pack *buffer);
extern size_s stripp_sp(my_string str);
extern size_s strip_sp(my_string str);
extern void get_date(my_string to,int timeflag,time_t use_time);
extern void soundex(my_string out_pntr, my_string in_pntr,pbool remove_garbage);
extern int init_record_cache(RECORD_CACHE *info,uint cachesize,File file,
+8 −0
Original line number Diff line number Diff line
@@ -1614,3 +1614,11 @@ field
429001
429002
429003
Table	Create Table
t1	CREATE TABLE `t1` (
  `a` enum('','a','b') NOT NULL default ''
) TYPE=MyISAM
Table	Create Table
t1	CREATE TABLE `t1` (
  `a` enum('','a','b') NOT NULL default 'b'
) TYPE=MyISAM
+8 −0
Original line number Diff line number Diff line
Table	Create Table
t1	CREATE TABLE `t1` (
  `a` set('','a','b') NOT NULL default ''
) TYPE=MyISAM
Table	Create Table
t1	CREATE TABLE `t1` (
  `a` set('','a','b') NOT NULL default 'b'
) TYPE=MyISAM
+11 −0

File changed.

Preview size limit exceeded, changes collapsed.

Loading