summaryrefslogtreecommitdiff
path: root/mysql-test/t/keywords.test
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/t/keywords.test
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/t/keywords.test')
-rw-r--r--mysql-test/t/keywords.test4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/t/keywords.test b/mysql-test/t/keywords.test
index b9a1f34c715..3bd757aa069 100644
--- a/mysql-test/t/keywords.test
+++ b/mysql-test/t/keywords.test
@@ -8,3 +8,7 @@ insert into t1 values ("12:22:22","97:02:03","1997-01-02");
select * from t1;
select t1.time+0,t1.date+0,t1.timestamp+0,concat(date," ",time) from t1;
drop table t1;
+create table events(binlog int);
+insert into events values(1);
+select events.binlog from events;
+drop table events;