Fixing main.type_timestamp failure with --view

The patch for
  MDEV-35250 Assertion `dec <= 6' failed in my_timestamp_binary_length
added a test which depends on
  MDEV-29534 In view FROM_UNIXTIME adds .000000 in the result

Adding --disable_view_protocol around the affected statements.
This commit is contained in:
Alexander Barkov 2024-11-02 10:27:48 +04:00
parent ac7fe8b214
commit 5d4a4d2091

View File

@ -1378,8 +1378,11 @@ DROP TABLE t1;
--echo #
SET time_zone='+00:00';
# Disable view protocol to workaround MDEV-29534
--disable_view_protocol
SELECT FROM_UNIXTIME('1922-02-10'), BIT_AND(1);
SELECT FROM_UNIXTIME('1922'), BIT_AND(1);
--enable_view_protocol
# Disable PS protocol to workaround CONC-739
--disable_ps_protocol
SELECT FROM_UNIXTIME('1922.1'), BIT_AND(1);