1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Fix results due to change in SHOW CREATE TABLE output

This commit is contained in:
jimw@mysql.com
2006-02-17 14:41:57 -08:00
parent 4d483fa2d1
commit 5659853f3c
7 changed files with 10 additions and 10 deletions

View File

@@ -27,7 +27,7 @@ t1 CREATE TABLE `t1` (
`pk1` int(11) NOT NULL,
`b` int(11) NOT NULL,
`c` int(11) NOT NULL,
PRIMARY KEY (`pk1`)
PRIMARY KEY (`pk1`)
) TABLESPACE ts1 STORAGE DISK ENGINE=ndbcluster DEFAULT CHARSET=latin1 PARTITION BY KEY ()
INSERT INTO t1 VALUES (0, 0, 0);
SELECT * FROM t1;