summaryrefslogtreecommitdiff
path: root/mysql-test/r/keywords.result
diff options
context:
space:
mode:
authorunknown <sasha@mysql.sashanet.com>2001-10-24 11:52:19 -0600
committerunknown <sasha@mysql.sashanet.com>2001-10-24 11:52:19 -0600
commit3bd0819a91bfebc9ead12eaf6b95e12c444e3a0e (patch)
tree3d3cde3b3bd3ef7fa6ff6572bb4f25ee8ef3bf96 /mysql-test/r/keywords.result
parentaba008d6b3256cfc956b8c777ab8ae12d17743b4 (diff)
downloadmariadb-git-3bd0819a91bfebc9ead12eaf6b95e12c444e3a0e.tar.gz
merge of lost change
mysql-test/r/keywords.result: merged lost change back
Diffstat (limited to 'mysql-test/r/keywords.result')
-rw-r--r--mysql-test/r/keywords.result6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/keywords.result b/mysql-test/r/keywords.result
index 9553fffc23d..2ca36425841 100644
--- a/mysql-test/r/keywords.result
+++ b/mysql-test/r/keywords.result
@@ -8,3 +8,9 @@ select t1.time+0,t1.date+0,t1.timestamp+0,concat(date," ",time) from t1;
t1.time+0 t1.date+0 t1.timestamp+0 concat(date," ",time)
122222 19970203 19970102000000 1997-02-03 12:22:22
drop table t1;
+create table events(binlog int);
+insert into events values(1);
+select events.binlog from events;
+binlog
+1
+drop table events;