diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:00:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:00:34 +0000 |
commit | 3f619478f796eddbba6e39502fe941b285dd97b1 (patch) | |
tree | e2c7b5777f728320e5b5542b6213fd3591ba51e2 /mysql-test/main/func_timestamp.test | |
parent | Initial commit. (diff) | |
download | mariadb-3f619478f796eddbba6e39502fe941b285dd97b1.tar.xz mariadb-3f619478f796eddbba6e39502fe941b285dd97b1.zip |
Adding upstream version 1:10.11.6.upstream/1%10.11.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/main/func_timestamp.test')
-rw-r--r-- | mysql-test/main/func_timestamp.test | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mysql-test/main/func_timestamp.test b/mysql-test/main/func_timestamp.test new file mode 100644 index 00000000..05a91b06 --- /dev/null +++ b/mysql-test/main/func_timestamp.test @@ -0,0 +1,23 @@ +# +# Tests that depend on the timestamp and the TZ variable +# + +--disable_warnings +drop table if exists t1; +--enable_warnings + +# Set timezone to GMT-3, to make it possible to use "interval 3 hour" +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; +drop table t1; + +# End of 4.1 tests + +# Restore timezone to default +set time_zone= @@global.time_zone; |