mariadb/mysql-test/suite/perfschema/r
Alexander Barkov 385957a77c MDEV-36053 CURSOR declarations in PACKAGE BODY
This change adds CURSOR declarations inside PACKAGE BODY.

PL/SQL mode:

  SET sql_mode=ORACLE;
  CREATE PACKAGE BODY pkg AS
    CURSOR mc0 IS SELECT c0, c1 FROM t1;
    PROCEDURE p1 AS
      rec mc0%ROWTYPE;
    BEGIN
      OPEN mc0;
      FETCH mc0 INTO rec;
      CLOSE mc0
    END;
  END;
  /

SQL/PSM mode:

  SET sql_mode=DEFAULT;
  CREATE PACKAGE BODY pkg
    mc0 CURSOR FOR SELECT c0, c1 FROM t1;
    PROCEDURE p1()
    BEGIN
      DECLARE rec ROW TYPE OF mc0;
      OPEN mc0;
      FETCH mc0 INTO rec;
      CLOSE mc0
    END;
  END;
  /

PACKAGE BODY cursors like local cursors
(declared inside a FUNCTION or a PROCEDURE) support:
  - OPEN/FETCH/CLOSE
  - FOR rec IN cur - an explicit cursor loop
  - Using a cursor row as an anchored variable data type:
    * DECLARE var cur%ROWTYPE;     -- sql_mode=ORACLE
    * DECLARE var ROW TYPE OF cur; -- sql_mode=DEFAULT

The patch details:

- Changing various class members and function/method parameters which
  store a CURSOR run-time address from "uint" to sp_rcontext_addr.
  A few classes now derive from sp_rcontext_addr instead of having
  a "uint m_cursor;" member.

  This change uses the same idea with what we did for SP variables,
  when we implemented PACKAGE BODY variables a few years ago.

- Fixing the grammar in sql_yacc.yy to allow CURSOR declarations
  inside PACKAGE BODY.

- Moving the C++ code handing the "CLOSE_SYM ident" grammar
  and creating an sp_instr_cclose instance from sql_yacc.yy
  into a new method LEX::sp_close().
  This is to have the grammar file smaller.
  Also, this code has significantly changed anyway.

- Adding a new class sp_pcontext_top. It's used for the top level parse
  context (of an sp_head). Note, its children contexts still use the old
  class sp_pcontext.

  sp_pcontext_top context additionally to sp_pcontext has:

    const sp_head *m_sp; -- The pointer to the sp_head owning this context
    Dynamic_array<sp_pcursor> m_member_cursors; -- PACKAGE BODY wide cursors

  m_sp->m_parent->get_parse_context() is used to find the sp_pcontext
  belonging to the parent PACKAGE BODY from a sp_pcontext_top instance
  belonging to a PROCEDURE/FUNCTION sp_pcontext_top.

- Adding a new member in sp_rcontext:
    Dynamic_array<sp_cursor*> m_member_cursors;
  It's used to store run-time data of PACKAGE BODY wide cursors.

- Adding a new class sp_instr_copen2. It's used to open PACKAGE BODY cursors.
  Unlike the usual cursors, PACKAGE BODY cursors:
  * do not use the cursor stack (sp_rcontext::m_cstack)
  * do not need a preceeding sp_instr_cpush
  * do not need a following sp_instr_cpop

  All cursor information such as "sp_lex_cursor" resides inside
  sp_instr_copen2 itself (rather than inside sp_instr_cpush which is
  used to store "sp_lex_cursor" in case of sp_instr_copen).

  Note, the other cursor related instructions:
    sp_instr_cfetch
    sp_instr_cclose
    sp_instr_cursor_copy_struct
  do not need sp_instr_xxx2 counter-parts.
  Thy just use sp_rcontext_addr to address cursors.

- Adding Sp_rcontext_handler_member
  It's used to handle PACKAGE BODY members:
  cursors and variables declared in the PACKAGE BODY,
  when they are accessed from its executable initialization section:

    CREATE PACKAGE BODY pkg AS
      CURSOR mc0 IS SELECT c0, c1 FROM t1; -- A member (PACKAGE BODY cursor)
      mv0 mc0%ROWTYPE;                     -- A member (PACKAGE BODY variable)
      PROCEDURE p1 AS
      BEGIN
        -- Accessing members from here use sp_rcontext_handler_package_body
        -- (members of the parent PACKAGE BODY)
        OPEN mc0;
        FETCH mc0 INTO mv0;
        CLOSE mc0;
      END;
    BEGIN
      -- NEW:
      -- Accessing members from here use sp_rcontext_handler_member
      -- (PACKAGE BODY own members)
      OPEN mc0;
      FETCH mc0 INTO mv0;
      CLOSE mc0;
    END;
    /

  Member variables and cursor are now marked with the "MEMBER." prefix
  in the "SHOW PACKAGE BODY code" output.
  Some old MTR tests have been re-recorded accordingly.

- Adding new virtual methods into Sp_rcontext_handler:

  virtual const sp_variable *get_pvariable(const sp_pcontext *pctx,
                                           uint offset) const;

  virtual const sp_pcursor *get_pcursor(const sp_pcontext *pctx,
                                        uint offset) const;

  They're used from sp_instr::print() virtual implementations.
  They internally calculate a proper sp_pcontext using as a parameter
  the sp_pcontext pointed by sp_instr::m_ctx.

  For example, Sp_handler_package_body::get_pvariable()/get_pcursor()
  accesses to this sp_pcontext:
      m_ctx->top_context()->m_sp->m_parent->get_parse_context(),
  i.e. the parse context of the PACKAGE BODY which is the parent for
   the current package PROCEDURE of FUNCTION an sp_instr belongs to.

- Adding a new method LEX::find_cursor(). It searches for a cursor in
  this order:
  * Local cursors in the nearst upper BEGIN/END block.
  * A member cursor of the current PACKAGE BODY
    (used from the PACKAGE BODY initialization section)
  * A member cursor of the parrent PACKAGE BODY
    (used from a package PROCEDURE or a package FUNCTION)

  Adding a new method LEX::find_cursor_with_error().
  In case when a cursor is not found, it automatically
  raises the ER_SP_CURSOR_MISMATCH SQL condition into
  the diagnostics area.

- Adding a new method sp_head::add_instr_copenX().
  It creates sp_instr_copen for local cursors,
  or sp_instr_copen2 for non-local cursors.

- Adding a new abstract class sp_lex_cursor_instr.
  It's used a common parent class for a few sp_instr_xxx classes,
  including the new sp_instr_copen2.
  This change is needed to avoid code duplication.

- Adding a new protected method sp_instr::print_cmd_and_var(), to print
  an instruction using this format: "command name@offset".
  It's used from a few implementations of sp_instr_xxx::print(),
  including sp_instr_copen2::print().
  This change is also needed to avoid code duplication.

- Moving the definition of "class Sp_rcontext_handler" from item.h
  into a new file sp_rcontext_handler.h
  This is to maitain header dependencies easier, as well as to move
  declarations not directly related to "class Item" outside of item.h

- Adding a new method sp_pcontext::frame_for_members(), to distinguish
  easier between local cursors/variables and PACKAGE BODY cursors/variables.

- Fixing "struct Lex_for_loop_st" to addionally store
  a const pointer to Sp_rcontext_handler, to distinguish between:
    * FOR rec IN local_cursor
    * FOR rec IN package_body_cursor
2025-06-27 11:17:19 +04:00
..
all_tests.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
alter_table_progress.result Merge branch '11.1' into 11.2 2024-04-09 12:12:33 +02:00
bad_option.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
batch_table_io_func.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
binlog_edge_mix.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
binlog_edge_row.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
binlog_edge_stmt.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
binlog_mix.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
binlog_ok_mix.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
binlog_ok_row.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
binlog_ok_stmt.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
binlog_row.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
binlog_stmt.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
checksum.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
cnf_option.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
column_privilege.result MDEV-20076: SHOW GRANTS does not quote role names properly 2020-02-05 17:22:26 +01:00
connect_attrs.result MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
connection.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
connection_3a.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
connection_3a_3u.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
connection_3u.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
connection_type_notwin.result MDEV-5215 prerequisite of prerequisite: if DB is not mentioned in connect ignore errors of switching to it 2022-11-01 15:40:49 +01:00
connection_type_win.result MDEV-5215 post-review fixes 2022-11-01 22:20:02 +01:00
csv_table_io.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
ddl_accounts.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_cond_instances.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
ddl_esgs_by_account_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_esgs_by_host_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_esgs_by_thread_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_esgs_by_user_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_esgs_global_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_esms_by_account_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_esms_by_digest.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_esms_by_host_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_esms_by_program.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_esms_by_thread_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_esms_by_user_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_esms_global_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_ets_by_account_by_event_name.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_ets_by_host_by_event_name.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_ets_by_thread_by_event_name.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_ets_by_user_by_event_name.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_ets_global_by_event_name.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_events_stages_current.result MDEV-22597 Add views for periods in information_schema 2024-02-12 22:26:06 +01:00
ddl_events_stages_history.result MDEV-22597 Add views for periods in information_schema 2024-02-12 22:26:06 +01:00
ddl_events_stages_history_long.result MDEV-22597 Add views for periods in information_schema 2024-02-12 22:26:06 +01:00
ddl_events_statements_current.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_events_statements_history.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_events_statements_history_long.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_events_transactions_current.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_events_transactions_history.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_events_transactions_history_long.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_events_waits_current.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_events_waits_history.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_events_waits_history_long.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_ews_by_account_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_ews_by_host_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_ews_by_instance.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_ews_by_thread_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_ews_by_user_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_ews_global_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_file_instances.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
ddl_fs_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_fs_by_instance.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_global_status.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_global_variables.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
ddl_host_cache.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_hosts.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_mems_by_account_by_event_name.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_mems_by_host_by_event_name.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_mems_by_thread_by_event_name.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_mems_by_user_by_event_name.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_mems_global_by_event_name.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_metadata_locks.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
ddl_mutex_instances.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
ddl_os_global_by_type.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_performance_timers.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
ddl_prepared_statements_instances.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_processlist.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
ddl_replication_applier_configuration.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
ddl_replication_applier_status.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
ddl_replication_applier_status_by_coordinator.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
ddl_replication_applier_status_by_worker.result MDEV-20220: Merge 5.7 P_S replication table 'replication_applier_status_by_worker 2021-04-08 17:19:51 +05:30
ddl_replication_connection_configuration.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
ddl_replication_connection_status.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_replication_group_member_stats.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_replication_group_members.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_rwlock_instances.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
ddl_session_account_connect_attrs.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
ddl_session_connect_attrs.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
ddl_session_status.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
ddl_session_variables.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
ddl_setup_actors.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_setup_consumers.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
ddl_setup_instruments.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
ddl_setup_objects.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_setup_timers.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
ddl_socket_instances.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
ddl_socket_summary_by_event_name.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_socket_summary_by_instance.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_status_by_account.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_status_by_host.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_status_by_thread.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_status_by_user.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ddl_table_handles.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
ddl_threads.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
ddl_tiws_by_index_usage.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_tiws_by_table.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_tlws_by_table.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_users.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
ddl_uvar_by_thread.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
ddl_variables_by_thread.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
digest_null_literal.result 5.6.26 2015-08-03 13:05:40 +02:00
digest_table_full.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
digest_view.result Merge branch '11.2' into 11.3 2024-02-04 16:42:31 +01:00
discovery.result MDEV-7922 - ERROR 1939 (HY000): Engine PERFORMANCE_SCHEMA failed to discover 2015-05-07 20:45:46 +04:00
dml_accounts.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_cond_instances.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_esgs_by_account_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_esgs_by_host_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_esgs_by_thread_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_esgs_by_user_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_esgs_global_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_esms_by_account_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_esms_by_digest.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_esms_by_host_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_esms_by_program.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_esms_by_thread_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_esms_by_user_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_esms_global_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_ets_by_account_by_event_name.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_ets_by_host_by_event_name.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_ets_by_thread_by_event_name.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_ets_by_user_by_event_name.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_ets_global_by_event_name.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_events_stages_current.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_events_stages_history.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_events_stages_history_long.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_events_statements_current.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_events_statements_history.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_events_statements_history_long.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_events_transactions_current.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_events_transactions_history.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_events_transactions_history_long.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_events_waits_current.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_events_waits_history.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_events_waits_history_long.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_ews_by_account_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_ews_by_host_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_ews_by_instance.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_ews_by_thread_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_ews_by_user_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_ews_global_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_file_instances.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_fs_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_fs_by_instance.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_global_status.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_global_variables.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
dml_handler.result Removed "<select expression> INTO <destination>" deprication. 2023-02-03 11:57:50 +03:00
dml_host_cache.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_hosts.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_mems_by_account_by_event_name.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_mems_by_host_by_event_name.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_mems_by_thread_by_event_name.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_mems_by_user_by_event_name.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_mems_global_by_event_name.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_metadata_locks.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_mutex_instances.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_os_global_by_type.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_performance_timers.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_prepared_statements_instances.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_processlist.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
dml_replication_applier_configuration.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_replication_applier_status.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_replication_applier_status_by_coordinator.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_replication_applier_status_by_worker.result Merge branch '10.5' into 10.6 2022-10-02 22:14:21 +02:00
dml_replication_connection_configuration.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_replication_connection_status.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
dml_replication_group_member_stats.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
dml_replication_group_members.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
dml_rwlock_instances.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_session_account_connect_attrs.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_session_connect_attrs.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_session_status.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_session_variables.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
dml_setup_actors.result Expand performance_schema tables definitions with column comments 2021-09-10 17:16:50 +03:00
dml_setup_consumers.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_setup_instruments.result MDEV-4991: GTID binlog indexing 2024-01-27 12:09:54 +01:00
dml_setup_objects.result Merge remote-tracking branch 'upstream/10.4' into 10.5 2021-09-10 17:16:18 +03:00
dml_setup_timers.result compile-time deprecation reminders 2023-09-30 14:43:12 +02:00
dml_socket_instances.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_socket_summary_by_event_name.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_socket_summary_by_instance.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_status_by_account.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_status_by_host.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_status_by_thread.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_status_by_user.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_table_handles.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_threads.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_tiws_by_index_usage.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_tiws_by_table.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_tlws_by_table.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_users.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
dml_uvar_by_thread.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
dml_variables_by_thread.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
event_aggregate.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
event_aggregate_no_a.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
event_aggregate_no_a_no_h.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
event_aggregate_no_a_no_u.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
event_aggregate_no_a_no_u_no_h.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
event_aggregate_no_h.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
event_aggregate_no_u.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
event_aggregate_no_u_no_h.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
file_misc.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
func_file_io.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
func_mutex.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
global_objects.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
global_read_lock.result MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
grant.result MDEV-35384 Table performance_schema.session_status and other two tables are not shown in information_schema.tables for normal users 2025-01-09 10:00:35 +01:00
hostcache_ipv4_addrinfo_again_allow.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_addrinfo_again_deny.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_addrinfo_bad_allow.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_addrinfo_bad_deny.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_addrinfo_good_allow.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_addrinfo_good_deny.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_addrinfo_noname_allow.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_addrinfo_noname_deny.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_auth_ed25519.result Merge 10.4 into 10.5 2021-05-26 09:47:28 +03:00
hostcache_ipv4_auth_plugin.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_blocked.result MDEV-17812 Use MariaDB in error messages instead of MySQL 2020-04-08 06:09:42 +00:00
hostcache_ipv4_format.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_max_con.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_nameinfo_again_allow.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_nameinfo_again_deny.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_nameinfo_noname_allow.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_nameinfo_noname_deny.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_passwd.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv4_ssl.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_addrinfo_again_allow.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_addrinfo_again_deny.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_addrinfo_bad_allow.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_addrinfo_bad_deny.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_addrinfo_good_allow.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_addrinfo_good_deny.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_addrinfo_noname_allow.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_addrinfo_noname_deny.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_auth_plugin.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_blocked.result MDEV-17812 Use MariaDB in error messages instead of MySQL 2020-04-08 06:09:42 +00:00
hostcache_ipv6_max_con.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_nameinfo_again_allow.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_nameinfo_again_deny.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_nameinfo_noname_allow.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_nameinfo_noname_deny.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_passwd.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_ipv6_ssl.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
hostcache_peer_addr.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
indexed_table_io.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
information_schema.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
innodb_events_transactions_history_long.result MDEV-24600 performance_schema.events_transactions_history_long.trx_id reports garbage 2021-01-15 13:43:05 +02:00
innodb_table_io.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
io_cache.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
max_program_zero.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
mdl_func.result Fix random test failures in testcase perfschema.mdl_func 2023-11-04 20:40:31 +01:00
memory_aggregate.result MDEV-22949 perfschema.memory_aggregate_no_a_no_u fails sporadically in buildbot with wrong result 2024-03-27 16:14:55 +01:00
memory_aggregate_32bit.result MDEV-22949 perfschema.memory_aggregate_no_a_no_u fails sporadically in buildbot with wrong result 2024-04-07 12:01:47 +02:00
memory_aggregate_no_a.result MDEV-22949 perfschema.memory_aggregate_no_a_no_u fails sporadically in buildbot with wrong result 2024-03-27 16:14:55 +01:00
memory_aggregate_no_a_no_h.result MDEV-22949 perfschema.memory_aggregate_no_a_no_u fails sporadically in buildbot with wrong result 2024-03-27 16:14:55 +01:00
memory_aggregate_no_a_no_u.result MDEV-22949 perfschema.memory_aggregate_no_a_no_u fails sporadically in buildbot with wrong result 2024-03-27 16:14:55 +01:00
memory_aggregate_no_a_no_u_no_h.result MDEV-22949 perfschema.memory_aggregate_no_a_no_u fails sporadically in buildbot with wrong result 2024-03-27 16:14:55 +01:00
memory_aggregate_no_h.result MDEV-22949 perfschema.memory_aggregate_no_a_no_u fails sporadically in buildbot with wrong result 2024-03-27 16:14:55 +01:00
memory_aggregate_no_u.result MDEV-22949 perfschema.memory_aggregate_no_a_no_u fails sporadically in buildbot with wrong result 2024-03-27 16:14:55 +01:00
memory_aggregate_no_u_no_h.result MDEV-22949 perfschema.memory_aggregate_no_a_no_u fails sporadically in buildbot with wrong result 2024-03-27 16:14:55 +01:00
memory_table_io.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
merge_table_io.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
misc.result Merge branch '10.6' into 10.11 2024-04-22 15:23:10 +02:00
misc_global_status.result Merge branch 'merge-perfschema-5.7' into 10.5 2022-08-02 09:34:15 +02:00
misc_session_status.result Updated misc_session_status.test to not fail if select does not fail 2025-01-05 16:40:11 +02:00
mks_timer-6258.result MDEV-6258 MariaDB 10.0 performance schema timestamps relative to epoch 2014-06-05 09:03:55 +02:00
multi_table_io.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
myisam_file_io.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
myisam_table_io.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
nesting.result Merge 10.6 into 10.11 2024-03-28 09:16:57 +02:00
no_threads.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
one_thread_per_con.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
ortho_iter.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
part_table_io.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
partition.result MDEV-10679 Crash in performance schema and partitioning with discovery 2018-05-26 12:49:25 +03:00
pfs_upgrade_event.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
pfs_upgrade_func.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
pfs_upgrade_proc.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
pfs_upgrade_table.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
pfs_upgrade_view.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
prepared_statements.result MDEV-26872 perfschema.prepared_statements non-deterministic test failure (#2290) 2022-10-19 09:52:16 +01:00
prepared_stmts_by_stored_programs.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
privilege.result compile-time deprecation reminders 2023-09-30 14:43:12 +02:00
privilege_table_io.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
processlist.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
processlist_57.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
processlist_acl.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
processlist_anonymous.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
processlist_no_pfs.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
processlist_port.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
processlist_reg_user.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
query_cache.result compile-time deprecation reminders 2023-09-30 14:43:12 +02:00
read_only.result MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
relaylog.result MDEV-4991: GTID binlog indexing 2024-01-27 12:09:54 +01:00
rollback_table_io.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
rpl_group_member_stats.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
rpl_group_members.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
rpl_gtid_func.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
rpl_statements.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
rpl_threads.result Merge 10.11 into 11.0 2024-01-10 12:42:56 +02:00
schema.result Merge 10.5 into 10.6 2022-09-20 16:53:20 +03:00
selects.result Removed "<select expression> INTO <destination>" deprication. 2023-02-03 11:57:50 +03:00
server_init.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
setup_actors.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
setup_actors_enabled.result Merge branch '10.4' into 10.5 2022-10-02 14:38:13 +02:00
setup_actors_history.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
setup_consumers_defaults.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
setup_instruments_defaults.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
setup_object_table_lock_io.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
setup_objects.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
short_option_1.result cleanup perfschema.short_options_1 test 2021-06-11 13:02:55 +02:00
short_option_2.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
show_aggregate.result make perfschema.show_aggregate test more reliable 2023-10-13 18:13:12 +02:00
show_coverage.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
show_misc.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
show_plugin.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
show_sanity.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
socket_connect.result Merge branch '10.5' into 10.6 2022-05-10 14:01:23 +02:00
socket_instances_func.result mtr: perfschema.socket_{connect,instances_func} "Expect X" 2021-03-05 08:25:53 +11:00
socket_instances_func_win.result perfschema 5.6.10 initial commit. 2014-05-06 23:20:50 +02:00
socket_summary_by_event_name_func.result Merge branch '10.4' into 10.5 2022-05-09 22:04:06 +02:00
socket_summary_by_instance_func.result compile-time deprecation reminders 2023-09-30 14:43:12 +02:00
socket_summary_by_instance_func_win.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
stage_mdl_function.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
stage_mdl_global.result MDEV-11176: FTWRL confusing state about "worker thread pool" 2024-12-05 12:08:12 +01:00
stage_mdl_procedure.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
stage_mdl_table.result MDEV-33620 Improve times and states in show processlist for replication 2024-03-08 15:23:17 +02:00
start_server_1_digest.result 5.7.28 2019-12-11 21:39:26 +01:00
start_server_disable_idle.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_disable_stages.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_disable_statements.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_disable_transactions.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_disable_waits.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_innodb.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_low_digest.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
start_server_low_digest_sql_length.result Merge branch '11.2' into 11.3 2024-02-04 16:42:31 +01:00
start_server_low_index.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_low_table_lock.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_account.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_cond_class.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_cond_inst.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_digests.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
start_server_no_file_class.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_file_inst.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_host.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_index.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_mdl.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_memory_class.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_mutex_class.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_mutex_inst.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_prepared_stmts_instances.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_rwlock_class.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_rwlock_inst.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_setup_actors.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_setup_objects.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_socket_class.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_socket_inst.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_stage_class.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_stages_history.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_stages_history_long.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_statement_class.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
start_server_no_statements_history.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_statements_history_long.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_table_hdl.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_table_inst.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_table_lock.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_thread_class.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_thread_inst.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_transactions_history.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_transactions_history_long.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_user.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_waits_history.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_no_waits_history_long.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_nothing.result compile-time deprecation reminders 2023-09-30 14:43:12 +02:00
start_server_off.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_on.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_variables.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
start_server_zero_digest_sql_length.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
statement_digest.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
statement_digest_charset.result perfschema 5.6.10 initial commit. 2014-05-06 23:22:16 +02:00
statement_digest_consumers.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
statement_digest_consumers2.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
statement_digest_long_query.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
statement_program_concurrency.result Fix perfschema.statement_program_concurrency 2020-03-11 08:29:48 +02:00
statement_program_lost_inst.result MDEV-36053 CURSOR declarations in PACKAGE BODY 2025-06-27 11:17:19 +04:00
statement_program_nested.result MDEV-23974 fixup: rpl.rpl_gtid_stop_start fails 2022-03-24 13:43:58 +02:00
statement_program_nesting_event_check.result events in perfschema tests: use ON COMPLETION NOT PRESERVE 2024-03-27 16:14:55 +01:00
statement_program_non_nested.result events in perfschema tests: use ON COMPLETION NOT PRESERVE 2024-03-27 16:14:55 +01:00
status_reprepare.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
sxlock_func.result Merge 10.7 into 10.8 2022-02-25 16:24:13 +02:00
table_aggregate_global_2u_2t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_aggregate_global_2u_3t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_aggregate_global_4u_2t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_aggregate_global_4u_3t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_aggregate_hist_2u_2t.result Revert "MDEV-29091: Correct event_name in PFS for wait caused by FOR UPDATE" 2023-10-14 11:03:00 +02:00
table_aggregate_hist_2u_3t.result Revert "MDEV-29091: Correct event_name in PFS for wait caused by FOR UPDATE" 2023-10-14 11:03:00 +02:00
table_aggregate_hist_4u_2t.result Revert "MDEV-29091: Correct event_name in PFS for wait caused by FOR UPDATE" 2023-10-14 11:03:00 +02:00
table_aggregate_hist_4u_3t.result Revert "MDEV-29091: Correct event_name in PFS for wait caused by FOR UPDATE" 2023-10-14 11:03:00 +02:00
table_aggregate_off.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
table_aggregate_thread_2u_2t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_aggregate_thread_2u_3t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_aggregate_thread_4u_2t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_aggregate_thread_4u_3t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_io_aggregate_global_2u_2t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_io_aggregate_global_2u_3t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_io_aggregate_global_4u_2t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_io_aggregate_global_4u_3t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_io_aggregate_hist_2u_2t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_io_aggregate_hist_2u_3t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_io_aggregate_hist_4u_2t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_io_aggregate_hist_4u_3t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_io_aggregate_thread_2u_2t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_io_aggregate_thread_2u_3t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_io_aggregate_thread_4u_2t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_io_aggregate_thread_4u_3t.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
table_lock_aggregate_global_2u_2t.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
table_lock_aggregate_global_2u_3t.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
table_lock_aggregate_global_4u_2t.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
table_lock_aggregate_global_4u_3t.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
table_lock_aggregate_hist_2u_2t.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
table_lock_aggregate_hist_2u_3t.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
table_lock_aggregate_hist_4u_2t.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
table_lock_aggregate_hist_4u_3t.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
table_lock_aggregate_thread_2u_2t.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
table_lock_aggregate_thread_2u_3t.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
table_lock_aggregate_thread_4u_2t.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
table_lock_aggregate_thread_4u_3t.result mysql-5.7.39 2022-07-29 14:48:01 +02:00
table_name.result perfschema test formatting. Use --echo # 2020-03-14 09:51:36 +01:00
table_schema.result MDEV-22597 Add views for periods in information_schema 2024-02-12 22:26:06 +01:00
temp_table_io.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
thread_cache.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
thread_misc.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
threads_history.result Merge branch '10.5' into 10.6 2024-04-11 13:58:22 +02:00
threads_innodb.result Suppress processist_state='buffer pool load' 2025-02-03 08:29:52 +02:00
threads_insert_delayed.result 5.7.13 2016-07-28 15:52:12 +02:00
threads_mysql.result Merge branch 'merge-perfschema-5.7' into 10.5 2022-08-02 09:34:15 +02:00
threads_mysql_freebsd.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
threads_mysql_linux.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
threads_mysql_windows.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
transaction.result MDEV-21921 Make transaction_isolation and transaction_read_only into system variables 2023-04-12 11:04:29 +10:00
transaction_gtid.result P_S 5.7.28 2020-03-10 19:24:22 +01:00
transaction_nested_events.result Aria will now register it's transactions 2020-05-23 12:29:10 +03:00
trigger_table_io.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
unary_digest.result 5.6.26 2015-08-03 13:05:40 +02:00
update_order-3837.result MDEV-3837 Assertion `table->read_set == &table->def_read_set' failed on updating a performance_schema table 2012-12-15 21:54:18 +01:00
user_var_func.result perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
view_table_io.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00