summaryrefslogtreecommitdiff
path: root/mysql-test/r/view.result
diff options
context:
space:
mode:
authormalff/marcsql@weblab.(none) <>2006-11-02 11:01:53 -0700
committermalff/marcsql@weblab.(none) <>2006-11-02 11:01:53 -0700
commit62c242cc75b34c34d52ba792c57126ca4bfbccbf (patch)
tree6858415854d15b55cafbf65946d71a1878a9459b /mysql-test/r/view.result
parente2d8d522930303008e175998c4faf6cb35b75007 (diff)
downloadmariadb-git-62c242cc75b34c34d52ba792c57126ca4bfbccbf.tar.gz
Bug#21114 (Foreign key creation fails to table with name format)
Due to the complexity of this change, everything is documented in WL#3565 This patch is the third iteration, it takes into account the comments received to date.
Diffstat (limited to 'mysql-test/r/view.result')
-rw-r--r--mysql-test/r/view.result8
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result
index 7c467749ee6..1cdb782b2fe 100644
--- a/mysql-test/r/view.result
+++ b/mysql-test/r/view.result
@@ -791,13 +791,13 @@ test.`f``1` ()
5
drop view v1;
drop function `f``1`;
-create function x () returns int return 5;
-create view v1 as select x ();
+create function a() returns int return 5;
+create view v1 as select a();
select * from v1;
-x ()
+a()
5
drop view v1;
-drop function x;
+drop function a;
create table t2 (col1 char collate latin1_german2_ci);
create view v2 as select col1 collate latin1_german1_ci from t2;
show create view v2;