summaryrefslogtreecommitdiff
path: root/mysql-test/r/second_frac-9175.result
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2016-02-04 12:51:57 +0100
committerSergei Golubchik <serg@mariadb.org>2016-02-06 11:45:23 +0100
commit0a76ad5ffd04fdfdf77435f4c9e733c2a59a14d8 (patch)
treeb27780b484588fffecbaafa5de964e6dc6e06945 /mysql-test/r/second_frac-9175.result
parenta90da6e0537b3bd5b3aa19ba8dfca340e66c0cd6 (diff)
downloadmariadb-git-0a76ad5ffd04fdfdf77435f4c9e733c2a59a14d8.tar.gz
MDEV-9175 Query parser tansforms MICROSECOND into SECOND_FRAC, which does not work
Diffstat (limited to 'mysql-test/r/second_frac-9175.result')
-rw-r--r--mysql-test/r/second_frac-9175.result13
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/r/second_frac-9175.result b/mysql-test/r/second_frac-9175.result
new file mode 100644
index 00000000000..dbf268b5c3b
--- /dev/null
+++ b/mysql-test/r/second_frac-9175.result
@@ -0,0 +1,13 @@
+select timestampdiff(microsecond,'2000-01-01 00:00:00','2001-01-01 00:00:00.123456');
+timestampdiff(microsecond,'2000-01-01 00:00:00','2001-01-01 00:00:00.123456')
+31622400123456
+explain extended select timestampdiff(microsecond,'2000-01-01 00:00:00','2001-01-01 00:00:00.123456');
+id select_type table type possible_keys key key_len ref rows filtered Extra
+1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
+Warnings:
+Note 1003 select timestampdiff(MICROSECOND,'2000-01-01 00:00:00','2001-01-01 00:00:00.123456') AS `timestampdiff(microsecond,'2000-01-01 00:00:00','2001-01-01 00:00:00.123456')`
+create view v1 as select timestampdiff(microsecond,'2000-01-01 00:00:00','2001-01-01 00:00:00.123456');
+select * from v1;
+Name_exp_1
+31622400123456
+drop view v1;