mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
10 lines
415 B
Text
10 lines
415 B
Text
|
#
|
||
|
# MDEV-9175 Query parser tansforms MICROSECOND into SECOND_FRAC, which does not work
|
||
|
#
|
||
|
|
||
|
select timestampdiff(microsecond,'2000-01-01 00:00:00','2001-01-01 00:00:00.123456');
|
||
|
explain extended select 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;
|
||
|
drop view v1;
|