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 | |
parent | 17e6f08527af09abf89d1ebc57fa43065ae2bc5b (diff) | |
download | mariadb-git-869a8da445b8f1eb71bae793a61eccef4a8a0eb7.tar.gz |
merge of lost change
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/keywords.result | 6 | ||||
-rw-r--r-- | mysql-test/t/keywords.test | 4 |
2 files changed, 10 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; 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; |