mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
Fix for bug#15316 SET value having comma not correctly handled
disallow the use of comma in SET members mysql-test/r/create.result: Fix for bug#15316 SET value having comma not correctly handled test case mysql-test/t/create.test: Fix for bug#15316 SET value having comma not correctly handled test case
This commit is contained in:
parent
a8c9bbd4be
commit
4af4e1e704
3 changed files with 25 additions and 0 deletions
|
|
@ -699,3 +699,5 @@ t2 CREATE TABLE `t2` (
|
|||
`a2` int(11) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||
drop table t1, t2;
|
||||
create table t1(a set("a,b","c,d") not null);
|
||||
ERROR HY000: Illegal set 'a,b' value found during parsing
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue