Below is the list of changes that have just been committed into a local
5.0 repository of msvensson. When msvensson does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet@stripped, 2006-07-24 19:01:54+02:00, msvensson@neptunus.(none) +2 -0
Bug #19265 describe command does not work from mysql prompt
- Add test case
mysql-test/r/mysql.result@stripped, 2006-07-24 19:01:52+02:00, msvensson@neptunus.(none) +10 -0
Update test result
mysql-test/t/mysql.test@stripped, 2006-07-24 19:01:52+02:00, msvensson@neptunus.(none) +9 -0
Add test for mysql using DESC command
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: msvensson
# Host: neptunus.(none)
# Root: /home/msvensson/mysql/my50-m-bug19265
--- 1.10/mysql-test/r/mysql.result 2006-07-24 19:01:58 +02:00
+++ 1.11/mysql-test/r/mysql.result 2006-07-24 19:01:58 +02:00
@@ -104,4 +104,14 @@ c_cp932
| 2 | NULL |
| 3 | |
+------+------+
+create table t1(a int, b varchar(255), c int);
+Field Type Null Key Default Extra
+a int(11) YES NULL
+b varchar(255) YES NULL
+c int(11) YES NULL
+Field Type Null Key Default Extra
+a int(11) YES NULL
+b varchar(255) YES NULL
+c int(11) YES NULL
+drop table t1;
End of 5.0 tests
--- 1.10/mysql-test/t/mysql.test 2006-07-24 19:01:58 +02:00
+++ 1.11/mysql-test/t/mysql.test 2006-07-24 19:01:58 +02:00
@@ -77,6 +77,15 @@ drop table t1;
#
--exec $MYSQL -t test -e "create table b19564 (i int, s1 char(1)); insert into b19564 values (1, 'x'); insert into b19564 values (2, NULL); insert into b19564 values (3, ' '); select * from b19564 order by i; drop table b19564;"
+#
+# Bug#19265 describe command does not work from mysql prompt
+#
+
+create table t1(a int, b varchar(255), c int);
+--exec $MYSQL test -e "desc t1"
+--exec $MYSQL test -e "desc t1\g"
+drop table t1;
+
--echo End of 5.0 tests
| Thread |
|---|
| • bk commit into 5.0 tree (msvensson:1.2237) BUG#19265 | msvensson | 24 Jul |