diff options
author | sasha@mysql.sashanet.com <> | 2001-10-24 11:52:19 -0600 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2001-10-24 11:52:19 -0600 |
commit | 869a8da445b8f1eb71bae793a61eccef4a8a0eb7 (patch) | |
tree | 3d3cde3b3bd3ef7fa6ff6572bb4f25ee8ef3bf96 /mysql-test/t/keywords.test | |
parent | 17e6f08527af09abf89d1ebc57fa43065ae2bc5b (diff) | |
download | mariadb-git-869a8da445b8f1eb71bae793a61eccef4a8a0eb7.tar.gz |
merge of lost change
Diffstat (limited to 'mysql-test/t/keywords.test')
-rw-r--r-- | mysql-test/t/keywords.test | 4 |
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; |