diff options
author | unknown <vva@eagle.mysql.r18.ru> | 2003-10-03 17:54:32 -0400 |
---|---|---|
committer | unknown <vva@eagle.mysql.r18.ru> | 2003-10-03 17:54:32 -0400 |
commit | 496bc77694abe410bed1968fc34cf685d765131f (patch) | |
tree | a9b68d26bfdbc6fcca2a455c8fd7cbbc2f284841 /mysql-test/r/create.result | |
parent | f46ca5fbe905caa7efb3f3cafdbdcc7c0f83a2b0 (diff) | |
download | mariadb-git-496bc77694abe410bed1968fc34cf685d765131f.tar.gz |
Fixed bug #1323 (varchar fields becoming char fields adter create ... select)
Diffstat (limited to 'mysql-test/r/create.result')
-rw-r--r-- | mysql-test/r/create.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result index e6192eb6ccb..7b784e3c3ee 100644 --- a/mysql-test/r/create.result +++ b/mysql-test/r/create.result @@ -78,7 +78,7 @@ Field Type Null Key Default Extra x varchar(50) YES NULL describe t2; Field Type Null Key Default Extra -x char(50) YES NULL +x varchar(50) YES NULL drop table t2; create table t2 select now() as a , curtime() as b, curdate() as c , 1+1 as d , 1.0 + 1 as e , 33333333333333333 + 3 as f; describe t2; |