mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
Renamed stripp_sp -> strip_sp
Remove end space from ENUM and SET strings
This commit is contained in:
@@ -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
mysql-test/r/type_set.result
Normal file
8
mysql-test/r/type_set.result
Normal file
@@ -0,0 +1,8 @@
|
||||
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
|
Reference in New Issue
Block a user