diff options
author | mskold@mysql.com <> | 2004-08-10 11:48:43 +0200 |
---|---|---|
committer | mskold@mysql.com <> | 2004-08-10 11:48:43 +0200 |
commit | a5dd9f8bb4cce84e02f904abcf223b228c36132b (patch) | |
tree | bb02127efd31bb5412acc81f4311af0789100d06 /mysql-test/r/ndb_alter_table.result | |
parent | df58d3c7decb4e25f6648440c8f17bf9a1a7e1d9 (diff) | |
parent | 350ab6b61c0e5304688a5845fa23531d34cca6ee (diff) | |
download | mariadb-git-a5dd9f8bb4cce84e02f904abcf223b228c36132b.tar.gz |
Merge mskold@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
into mysql.com:/usr/local/home/marty/MySQL/mysql-4.1-ndb
Diffstat (limited to 'mysql-test/r/ndb_alter_table.result')
-rw-r--r-- | mysql-test/r/ndb_alter_table.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/ndb_alter_table.result b/mysql-test/r/ndb_alter_table.result index 5c2718b0f75..9d9f845ee37 100644 --- a/mysql-test/r/ndb_alter_table.result +++ b/mysql-test/r/ndb_alter_table.result @@ -15,7 +15,7 @@ col2 varchar(30) not null, col3 varchar (20) not null, col4 varchar(4) not null, col5 enum('PENDING', 'ACTIVE', 'DISABLED') not null, -col6 int not null, to_be_deleted int); +col6 int not null, to_be_deleted int) ENGINE=ndbcluster; insert into t1 values (2,4,3,5,"PENDING",1,7), (NULL,4,3,5,"PENDING",1,7), (25, 4,3,5,"PENDING",1,7), (NULL,4,3,5,"PENDING",1,7); select * from t1 order by col1; col1 col2 col3 col4 col5 col6 to_be_deleted |