summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorbell@sanja.is.com.ua <>2005-06-24 00:24:11 +0300
committerbell@sanja.is.com.ua <>2005-06-24 00:24:11 +0300
commit3c5286c3e2695e3d1ec8c137ae5bdbcc39da42b9 (patch)
treef3f8efd10b4830578115b4c84348c72a7e17be62 /mysql-test/r
parenta771b5717278d4e3332e356f8d74d9631b3dd871 (diff)
downloadmariadb-git-3c5286c3e2695e3d1ec8c137ae5bdbcc39da42b9.tar.gz
fixed encrypt() print (BUG#7024)
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/view.result8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result
index 68cc0c4cb57..d4d6eb08cad 100644
--- a/mysql-test/r/view.result
+++ b/mysql-test/r/view.result
@@ -1831,3 +1831,11 @@ select * from v1;
t
01:00
drop view v1;
+CREATE VIEW v1 AS SELECT ENCRYPT("dhgdhgd");
+SELECT * FROM v1;
+drop view v1;
+CREATE VIEW v1 AS SELECT SUBSTRING_INDEX("dkjhgd:kjhdjh", ":", 1);
+SELECT * FROM v1;
+SUBSTRING_INDEX("dkjhgd:kjhdjh", ":", 1)
+dkjhgd
+drop view v1;