diff options
author | evgen@moonbone.local <> | 2005-07-30 05:53:35 +0400 |
---|---|---|
committer | evgen@moonbone.local <> | 2005-07-30 05:53:35 +0400 |
commit | fa0ea36507e886f270ce11ffea67af031febb88d (patch) | |
tree | dcb6725978d9c6687be4f2891dc7c4e48a2d17dc /mysql-test/r/view_grant.result | |
parent | f4d27c75e6ffe947711429deff34402e66b7ba56 (diff) | |
download | mariadb-git-fa0ea36507e886f270ce11ffea67af031febb88d.tar.gz |
Fix bug #11335 View redefines TinyInt(1) column definition
Item_type_holder doesn't store information about length and exact type of
original item which results in redefining length to max_length and geometry
type to longtext.
Changed the way derived tables except unions are built. Now they are created
from original field list instead of list of Item_type_holder.
Diffstat (limited to 'mysql-test/r/view_grant.result')
-rw-r--r-- | mysql-test/r/view_grant.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/view_grant.result b/mysql-test/r/view_grant.result index b77ee59b3ff..71f0f28e59f 100644 --- a/mysql-test/r/view_grant.result +++ b/mysql-test/r/view_grant.result @@ -72,12 +72,12 @@ select c from mysqltest.v4; c show columns from mysqltest.v1; Field Type Null Key Default Extra -c bigint(20) YES NULL -d bigint(20) YES NULL +c bigint(12) YES NULL +d bigint(12) YES NULL show columns from mysqltest.v2; Field Type Null Key Default Extra -c bigint(20) YES NULL -d bigint(20) YES NULL +c bigint(12) YES NULL +d bigint(12) YES NULL explain select c from mysqltest.v1; ERROR HY000: EXPLAIN/SHOW can not be issued; lacking privileges for underlying table show create view mysqltest.v1; |