lp:~otto/maria/maria-fix-spelling-5.5

Created by Otto Kekäläinen and last modified
Get this branch:
bzr branch lp:~otto/maria/maria-fix-spelling-5.5
Only Otto Kekäläinen can upload to this branch. If you are Otto Kekäläinen please log in for upload directions.

Branch merges

Related bugs

Related blueprints

Branch information

Owner:
Otto Kekäläinen
Project:
MariaDB
Status:
Development

Recent revisions

4159. By Otto Kekäläinen

Fixed executable bits for scripts that should have, and data files that should not have

4158. By Otto Kekäläinen

Fixed spelling for: specified, received, preceding, additionally

4157. By Alexander Barkov

Merge from 5.3

4156. By Alexander Barkov

Merge from 5.3

4155. By Alexey Botchkov

MDEV-6124 Audit plugin fails with the Percona-Server 5.6.
   Some lines of code in file_logger.c were lost while moving to the
   general MariaDB tree. Adding them.

4154. By Alexey Botchkov

MDEV-4856 SQL_ERROR_LOG shows 1146 errors which didnt appear in mysql client.
    The fill_schema_table() function used to call get_table_share() for a table name in WHERE
    then clear the error list. That way plugins receive the superfluous error notification if it
    happens in it. Also the problem was that error handler didn't prevent the suppressed
    error message from logging anyway as the logging happens in THD::raise_condition
    before the handler call.
    Trigger_error_handler is remade into Warnings_only_error_handler, so it stores the error
    message in all cases in the thd->stmt_da.
    Then later the stored error is raised.

4153. By Alexey Botchkov

MDEV-5138 Numerous test failures in "mtr --ps --embedded".
     If a prepared statement calls an stored procedure,
     the thd->server_status out of the SP goes up
     to the PS and then to the client. So that the
     client gets the SERVER_STATUS_CURSOR_EXISTS status
     if the SP uses a cursor. Which makes the embedded
     server fail.
     Fixed by saving/restoring the upper-level server_status
     in sp_head::execute().

4152. By Alexey Botchkov

MDEV-5138 Numerous test failures in "mtr --ps --embedded".
     Thread can be disconnected internally for example after COMMIT statements.
     So we should check this for the statement execution.

4151. By Alexey Botchkov

MDEV-5138 Numerous test failures in "mtr --ps --embedded".
    mysqltest in the 'embedded-server' mode runs queries in a separate thread,
    but it didn't do so for the prepared statements - they were run in the main thread.
    That leads to inconsistencies.
    When a test sets SESSION 'dbug' variable like
            SET SESSION debug_dbug="+d,warn_during_ha_commit_trans";
    it is run as a plain query in that separate thread, so the main thread remains unaffected.
    After that the prepared statement run in the main thread doesn't produce expected 'dbug' errors,
    so the test fails.
    To fix that I made prepared statement to be run in that special thread along with the plain queries.
    That makes the environment consistent.

4150. By Alexey Botchkov

MDEV-5138 Numerous test failures in "mtr --ps --embedded".
  As Davi added code like
          sav_protocol= thd->protocol
          thd->protocol= &thd->protocol_binary
          ...
          thd->protocol= sav_protocol
  the fucntions like emb_store_querycache_result() cannot determine
  the used protocol testing thd->protocol == &thd->protocol_binary.
  Fixed by additional check thd->command == COM_STMT_EXECUTE.

Branch metadata

Branch format:
Branch format 7
Repository format:
Bazaar repository format 2a (needs bzr 1.16 or later)
Stacked on:
lp:maria
This branch contains Public information 
Everyone can see this information.