1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fix for Bug 3481

CREATE statement allowed extra unnecessary commas
This commit is contained in:
antony@ltantony.dsl-verizon.net
2004-04-28 16:14:53 +01:00
parent 5c7d736443
commit 28870228d4
10 changed files with 40 additions and 11 deletions

View File

@ -247,7 +247,7 @@ CREATE TABLE t1 (
wid int(10) unsigned NOT NULL auto_increment,
data_podp date default NULL,
status_wnio enum('nowy','podp','real','arch') NOT NULL default 'nowy',
PRIMARY KEY(wid),
PRIMARY KEY(wid)
);
INSERT INTO t1 VALUES (8,NULL,'real');
INSERT INTO t1 VALUES (9,NULL,'nowy');