From a147307f426ef6c93b94e4b62fe14bf004585fa9 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 13 May 2003 19:19:57 +0200 Subject: [PATCH] Forgot to correct comment in key.test (after fixing bug 390). mysql-test/t/key.test: Forgot to correct comment (after fixing bug 390). --- mysql-test/t/key.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql-test/t/key.test b/mysql-test/t/key.test index 4c9b6479ac2..cb80d88aee8 100644 --- a/mysql-test/t/key.test +++ b/mysql-test/t/key.test @@ -58,7 +58,7 @@ drop table t1; # CREATE TABLE t1 (program enum('signup','unique','sliding') not null, type enum('basic','sliding','signup'), sites set('mt'), PRIMARY KEY (program)); -# The following should give an error for wrong primary key +# This no longer give an error for wrong primary key ALTER TABLE t1 modify program enum('signup','unique','sliding'); drop table t1;