diff options
author | Michael Widenius <monty@mariadb.org> | 2018-03-09 14:05:35 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2018-03-29 13:59:44 +0300 |
commit | a7abddeffa6a760ce948c2dfb007cdf3f1a369d5 (patch) | |
tree | 70eb743fa965a17380bbc0ac88ae79ca1075b896 /mysql-test/r/func_timestamp.result | |
parent | ab1941266c59a19703a74b5593cf3f508a5752d7 (diff) | |
download | mariadb-git-a7abddeffa6a760ce948c2dfb007cdf3f1a369d5.tar.gz |
Create 'main' test directory and move 't' and 'r' there
Diffstat (limited to 'mysql-test/r/func_timestamp.result')
-rw-r--r-- | mysql-test/r/func_timestamp.result | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/mysql-test/r/func_timestamp.result b/mysql-test/r/func_timestamp.result deleted file mode 100644 index 18fcbd947e7..00000000000 --- a/mysql-test/r/func_timestamp.result +++ /dev/null @@ -1,13 +0,0 @@ -drop table if exists t1; -set time_zone="+03:00"; -create table t1 (Zeit time, Tag tinyint not null, Monat tinyint not null, -Jahr smallint not null, index(Tag), index(Monat), index(Jahr) ); -insert into t1 values ("09:26:00",16,9,1998),("09:26:00",16,9,1998); -SELECT CONCAT(Jahr,'-',Monat,'-',Tag,' ',Zeit) AS Date, -UNIX_TIMESTAMP(CONCAT(Jahr,'-',Monat,'-',Tag,' ',Zeit)) AS Unix -FROM t1; -Date Unix -1998-9-16 09:26:00 905927160.000000 -1998-9-16 09:26:00 905927160.000000 -drop table t1; -set time_zone= @@global.time_zone; |