1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Fixed changes in printouts

This commit is contained in:
mskold@mysql.com
2004-11-04 10:15:37 +01:00
parent f395228afe
commit 0599b3bf2b
2 changed files with 2 additions and 3 deletions

View File

@@ -94,7 +94,6 @@ ERROR 42S01: Table 't3' already exists
show status like 'handler_discover%';
Variable_name Value
Handler_discover 1
Tables_in_test table_type
create table IF NOT EXISTS t3(
id int not null primary key,
id2 int not null,
@@ -106,7 +105,7 @@ Handler_discover 2
SHOW CREATE TABLE t3;
Table Create Table
t3 CREATE TABLE `t3` (
`id` int(11) NOT NULL default '0',
`id` int(11) NOT NULL,
`name` char(255) default NULL,
PRIMARY KEY (`id`)
) ENGINE=ndbcluster DEFAULT CHARSET=latin1