maria:10.6-MDEV-16708-1

Last commit made on 2021-06-11
Get this branch:
git clone -b 10.6-MDEV-16708-1 https://git.launchpad.net/maria

Branch merges

Branch information

Name:
10.6-MDEV-16708-1
Repository:
lp:maria

Recent commits

6aba5a0... by Dmitry Shulga <email address hidden>

MDEV-16708: more test failures fixed (added --enable_prepared_warnings/--disable_prepared_warnings)

eb1d385... by Dmitry Shulga <email address hidden>

MDEV-16708: fixed assert firing in the method THD::reset_for_the_next_command

0d6a556... by Dmitry Shulga <email address hidden>

MDEV-16708: more test failures fixed (added --enable_prepared_warnings/--disable_prepared_warnings)

Additionally, some tests were marked as running only without --ps-protocol
since they contain multi-statements not supported in PS mode

78e8456... by Dmitry Shulga <email address hidden>

MDEV-16708: fix in test failures(added --enable_prepared_warnings/--disable_prepared_warnings)

16ab4be... by Dmitry Shulga <email address hidden>

MDEV-16708: fixed incorrect issueing the error

 ' Access denied; you need (at least one of) the SUPER privilege(s) for this operation
on executing SET system_variable=.... in PS mode

56bdb23... by Dmitry Shulga <email address hidden>

MDEV-16708: fix in test failures caused by missing warnings received in prepare response packet

ce29e1c... by Dmitry Shulga <email address hidden>

MDEV-16708: reverted changes made in Debugger.pm

83dc436... by Dmitry Shulga <email address hidden>

MDEV-16708: fixed issue with handling of the directive --enable-prepared-warnings in mysqltest

8d545f4... by Dmitry Shulga <email address hidden>

MDEV-16708: the follow-up to previous commit

08676a3... by Dmitry Shulga <email address hidden>

MDEV-16708: Fixed ths issue with handling of ERR packet received by mysqltest
on response to COM_STMT_EXECUTE

The test cases like the following one
  delimiter |;
  CREATE PROCEDURE SP001()
  BEGIN
    DECLARE C1 CURSOR FOR SELECT 1;

    OPEN C1;

    SELECT 1;
    CLOSE C1;
    CLOSE C1;
  END|
  delimiter ;|
  --error 1326
  call SP001();

are failed since processing of ERR packet was missed by mysqltest
in case it is run with --ps-protocol

Additionally, the test sp-error was changed to don't run multi-statements
since they are not supported by PS protocol