mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
72ba96a48e
Tests with checking metadata or that cannot be run with the view-protocol are excluded from --view-protocol. For tests that do not allow the use of an additional connection, the util connection is disabled with "--disable_service_connection". Also cases with bugs for --view-protocol are disabled.
14 lines
493 B
Text
14 lines
493 B
Text
#
|
|
# MDEV-9175 Query parser tansforms MICROSECOND into SECOND_FRAC, which does not work
|
|
#
|
|
|
|
#enable after fix MDEV-27871
|
|
--disable_view_protocol
|
|
|
|
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;
|
|
|
|
--enable_view_protocol
|