$94 GRAYBYTE WORDPRESS FILE MANAGER $29

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.162.162 | ADMIN IP 216.73.217.149
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/usr/include/mysql/server/private/

HOME
Current File : /usr/include/mysql/server/private//sp_rcontext.h
/* -*- C++ -*- */
/* Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; version 2 of the License.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335  USA */

#ifndef _SP_RCONTEXT_H_
#define _SP_RCONTEXT_H_

#ifdef USE_PRAGMA_INTERFACE
#pragma interface			/* gcc class implementation */
#endif

#include "sql_class.h"                    // select_result_interceptor
#include "sp_pcontext.h"                  // sp_condition_value

///////////////////////////////////////////////////////////////////////////
// sp_rcontext declaration.
///////////////////////////////////////////////////////////////////////////

class sp_cursor;
class sp_lex_keeper;
class sp_instr_cpush;
class sp_instr_hpush_jump;
class Query_arena;
class sp_head;
class Item_cache;
class Virtual_tmp_table;


/*
  This class is a runtime context of a Stored Routine. It is used in an
  execution and is intended to contain all dynamic objects (i.e.  objects, which
  can be changed during execution), such as:
    - stored routine variables;
    - cursors;
    - handlers;

  Runtime context is used with sp_head class. sp_head class is intended to
  contain all static things, related to the stored routines (code, for example).
  sp_head instance creates runtime context for the execution of a stored
  routine.

  There is a parsing context (an instance of sp_pcontext class), which is used
  on parsing stage. However, now it contains some necessary for an execution
  things, such as definition of used stored routine variables. That's why
  runtime context needs a reference to the parsing context.
*/

class sp_rcontext : public Sql_alloc
{
public:
  /// Construct and properly initialize a new sp_rcontext instance. The static
  /// create-function is needed because we need a way to return an error from
  /// the constructor.
  ///
  /// @param thd              Thread handle.
  /// @param root_parsing_ctx Top-level parsing context for this stored program.
  /// @param return_value_fld Field object to store the return value
  ///                         (for stored functions only).
  ///
  /// @return valid sp_rcontext object or NULL in case of OOM-error.
  static sp_rcontext *create(THD *thd,
                             sp_head *owner,
                             const sp_pcontext *root_parsing_ctx,
                             Field *return_value_fld,
                             Row_definition_list &defs);

  ~sp_rcontext();

private:
  sp_rcontext(sp_head *owner,
              const sp_pcontext *root_parsing_ctx,
              Field *return_value_fld,
              bool in_sub_stmt);

  // Prevent use of copying constructor and operator.
  sp_rcontext(const sp_rcontext &);
  void operator=(sp_rcontext &);

public:
  /// This class stores basic information about SQL-condition, such as:
  ///   - SQL error code;
  ///   - error level;
  ///   - SQLSTATE;
  ///   - text message.
  ///
  /// It's used to organize runtime SQL-handler call stack.
  ///
  /// Standard Sql_condition class can not be used, because we don't always have
  /// an Sql_condition object for an SQL-condition in Diagnostics_area.
  ///
  /// Eventually, this class should be moved to sql_error.h, and be a part of
  /// standard SQL-condition processing (Diagnostics_area should contain an
  /// object for active SQL-condition, not just information stored in DA's
  /// fields).
  class Sql_condition_info : public Sql_alloc,
                             public Sql_condition_identity
  {
  public:
    /// Text message.
    char *message;

    /** Row number where the condition has happened */
    ulong m_row_number;

    /// The constructor.
    ///
    /// @param _sql_condition  The SQL condition.
    /// @param arena           Query arena for SP
    Sql_condition_info(const Sql_condition *_sql_condition, Query_arena *arena)
      :Sql_condition_identity(*_sql_condition)
    {
      message= strdup_root(arena->mem_root, _sql_condition->get_message_text());
      m_row_number= _sql_condition->m_row_number;
    }
  };

private:
  /// This class represents a call frame of SQL-handler (one invocation of a
  /// handler). Basically, it's needed to store continue instruction pointer for
  /// CONTINUE SQL-handlers.
  class Handler_call_frame : public Sql_alloc
  {
  public:
    /// SQL-condition, triggered handler activation.
    const Sql_condition_info *sql_condition;

    /// Continue-instruction-pointer for CONTINUE-handlers.
    /// The attribute contains 0 for EXIT-handlers.
    uint continue_ip;

    /// The constructor.
    ///
    /// @param _sql_condition SQL-condition, triggered handler activation.
    /// @param _continue_ip   Continue instruction pointer.
    Handler_call_frame(const Sql_condition_info *_sql_condition,
                       uint _continue_ip)
     :sql_condition(_sql_condition),
      continue_ip(_continue_ip)
    { }
 };

public:
  /// Arena used to (re) allocate items on. E.g. reallocate INOUT/OUT
  /// SP-variables when they don't fit into prealloced items. This is common
  /// situation with String items. It is used mainly in sp_eval_func_item().
  Query_arena *callers_arena;

  /// Flag to end an open result set before start executing an SQL-handler
  /// (if one is found). Otherwise the client will hang due to a violation
  /// of the client/server protocol.
  bool end_partial_result_set;
  bool pause_state;
  bool quit_func;
  uint instr_ptr;

  /// The stored program for which this runtime context is created. Used for
  /// checking if correct runtime context is used for variable handling,
  /// and to access the package run-time context.
  /// Also used by slow log.
  sp_head *m_sp;

  /////////////////////////////////////////////////////////////////////////
  // SP-variables.
  /////////////////////////////////////////////////////////////////////////

  uint argument_count() const
  {
    return m_root_parsing_ctx->context_var_count();
  }

  int set_variable(THD *thd, uint var_idx, Item **value);
  int set_variable_row_field(THD *thd, uint var_idx, uint field_idx,
                             Item **value);
  int set_variable_row_field_by_name(THD *thd, uint var_idx,
                                     const LEX_CSTRING &field_name,
                                     Item **value);
  int set_variable_row(THD *thd, uint var_idx, List<Item> &items);

  int set_parameter(THD *thd, uint var_idx, Item **value)
  {
    DBUG_ASSERT(var_idx < argument_count());
    return set_variable(thd, var_idx, value);
  }

  Item_field *get_variable(uint var_idx) const
  { return m_var_items[var_idx]; }

  Item **get_variable_addr(uint var_idx) const
  { return ((Item **) m_var_items.array()) + var_idx; }

  Item_field *get_parameter(uint var_idx) const
  {
    DBUG_ASSERT(var_idx < argument_count());
    return get_variable(var_idx);
  }

  bool find_row_field_by_name_or_error(uint *field_idx, uint var_idx,
                                       const LEX_CSTRING &field_name);

  bool set_return_value(THD *thd, Item **return_value_item);

  bool is_return_value_set() const
  { return m_return_value_set; }

  /////////////////////////////////////////////////////////////////////////
  // SQL-handlers.
  /////////////////////////////////////////////////////////////////////////

  /// Push an sp_instr_hpush_jump instance to the handler call stack.
  ///
  /// @param entry    The condition handler entry
  ///
  /// @return error flag.
  /// @retval false on success.
  /// @retval true on error.
  bool push_handler(sp_instr_hpush_jump *entry);

  /// Pop and delete given number of instances from the handler
  /// call stack.
  ///
  /// @param count Number of handler entries to pop & delete.
  void pop_handlers(size_t count);

  const Sql_condition_info *raised_condition() const
  {
    return m_handler_call_stack.elements() ?
      (*m_handler_call_stack.back())->sql_condition : NULL;
  }

  /// Handle current SQL condition (if any).
  ///
  /// This is the public-interface function to handle SQL conditions in
  /// stored routines.
  ///
  /// @param thd            Thread handle.
  /// @param ip[out]        Instruction pointer to the first handler
  ///                       instruction.
  /// @param cur_spi        Current SP instruction.
  ///
  /// @retval true if an SQL-handler has been activated. That means, all of
  /// the following conditions are satisfied:
  ///   - the SP-instruction raised SQL-condition(s),
  ///   - and there is an SQL-handler to process at least one of those
  ///     SQL-conditions,
  ///   - and that SQL-handler has been activated.
  /// Note, that the return value has nothing to do with "error flag"
  /// semantics.
  ///
  /// @retval false otherwise.
  bool handle_sql_condition(THD *thd,
                            uint *ip,
                            const sp_instr *cur_spi);

  /// Remove latest call frame from the handler call stack.
  ///
  /// @param da Diagnostics area containing handled conditions.
  ///
  /// @return continue instruction pointer of the removed handler.
  uint exit_handler(Diagnostics_area *da);

  /////////////////////////////////////////////////////////////////////////
  // Cursors.
  /////////////////////////////////////////////////////////////////////////

  /// Push a cursor to the cursor stack.
  ///
  /// @param cursor The cursor
  ///
  void push_cursor(sp_cursor *cur);

  void pop_cursor(THD *thd);
  /// Pop and delete given number of sp_cursor instance from the cursor stack.
  ///
  /// @param count Number of cursors to pop & delete.
  void pop_cursors(THD *thd, size_t count);

  void pop_all_cursors(THD *thd)
  { pop_cursors(thd, m_ccount); }

  sp_cursor *get_cursor(uint i) const
  { return m_cstack[i]; }

  /////////////////////////////////////////////////////////////////////////
  // CASE expressions.
  /////////////////////////////////////////////////////////////////////////

  /// Set CASE expression to the specified value.
  ///
  /// @param thd             Thread handler.
  /// @param case_expr_id    The CASE expression identifier.
  /// @param case_expr_item  The CASE expression value
  ///
  /// @return error flag.
  /// @retval false on success.
  /// @retval true on error.
  ///
  /// @note The idea is to reuse Item_cache for the expression of the one
  /// CASE statement. This optimization takes place when there is CASE
  /// statement inside of a loop. So, in other words, we will use the same
  /// object on each iteration instead of creating a new one for each
  /// iteration.
  ///
  /// TODO
  ///   Hypothetically, a type of CASE expression can be different for each
  ///   iteration. For instance, this can happen if the expression contains
  ///   a session variable (something like @@VAR) and its type is changed
  ///   from one iteration to another.
  ///
  ///   In order to cope with this problem, we check type each time, when we
  ///   use already created object. If the type does not match, we re-create
  ///   Item.  This also can (should?) be optimized.
  bool set_case_expr(THD *thd, int case_expr_id, Item **case_expr_item_ptr);

  Item *get_case_expr(int case_expr_id) const
  { return m_case_expr_holders[case_expr_id]; }

  Item ** get_case_expr_addr(int case_expr_id) const
  { return (Item**) m_case_expr_holders.array() + case_expr_id; }

private:
  /// Internal function to allocate memory for arrays.
  ///
  /// @param thd Thread handle.
  ///
  /// @return error flag: false on success, true in case of failure.
  bool alloc_arrays(THD *thd);

  /// Create and initialize a table to store SP-variables.
  ///
  /// param thd Thread handle.
  ///
  /// @return error flag.
  /// @retval false on success.
  /// @retval true on error.
  bool init_var_table(THD *thd, List<Spvar_definition> &defs);

  /// Create and initialize an Item-adapter (Item_field) for each SP-var field.
  ///
  /// param thd Thread handle.
  ///
  /// @return error flag.
  /// @retval false on success.
  /// @retval true on error.
  bool init_var_items(THD *thd, List<Spvar_definition> &defs);

  /// Create an instance of appropriate Item_cache class depending on the
  /// specified type in the callers arena.
  ///
  /// @note We should create cache items in the callers arena, as they are
  /// used between in several instructions.
  ///
  /// @param thd   Thread handler.
  /// @param item  Item to get the expression type.
  ///
  /// @return Pointer to valid object on success, or NULL in case of error.
  Item_cache *create_case_expr_holder(THD *thd, const Item *item) const;

  Virtual_tmp_table *virtual_tmp_table_for_row(uint idx);

private:
  /// Top-level (root) parsing context for this runtime context.
  const sp_pcontext *m_root_parsing_ctx;

  /// Virtual table for storing SP-variables.
  Virtual_tmp_table *m_var_table;

  /// Collection of Item_field proxies, each of them points to the
  /// corresponding field in m_var_table.
  Bounds_checked_array<Item_field *> m_var_items;

  /// This is a pointer to a field, which should contain return value for
  /// stored functions (only). For stored procedures, this pointer is NULL.
  Field *m_return_value_fld;

  /// Indicates whether the return value (in m_return_value_fld) has been
  /// set during execution.
  bool m_return_value_set;

  /// Flag to tell if the runtime context is created for a sub-statement.
  bool m_in_sub_stmt;

  /// Stack of visible handlers.
  Dynamic_array<sp_instr_hpush_jump *> m_handlers;

  /// Stack of caught SQL conditions.
  Dynamic_array<Handler_call_frame *> m_handler_call_stack;

  /// Stack of cursors.
  Bounds_checked_array<sp_cursor *> m_cstack;

  /// Current number of cursors in m_cstack.
  uint m_ccount;

  /// Array of CASE expression holders.
  Bounds_checked_array<Item_cache *> m_case_expr_holders;
}; // class sp_rcontext : public Sql_alloc

#endif /* _SP_RCONTEXT_H_ */


Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
5 Mar 2026 11.55 PM
root / root
0755
atomic
--
5 Mar 2026 11.55 PM
root / root
0755
data
--
11 Feb 2026 1.04 AM
root / root
0755
providers
--
5 Mar 2026 11.55 PM
root / root
0755
aligned.h
1.109 KB
11 Feb 2026 1.04 AM
root / root
0644
aria_backup.h
1.745 KB
11 Feb 2026 1.04 AM
root / root
0644
assume_aligned.h
2.295 KB
11 Feb 2026 1.04 AM
root / root
0644
authors.h
9.903 KB
11 Feb 2026 1.04 AM
root / root
0644
backup.h
1.663 KB
11 Feb 2026 1.04 AM
root / root
0644
bounded_queue.h
5.95 KB
11 Feb 2026 1.04 AM
root / root
0644
char_buffer.h
3.095 KB
11 Feb 2026 1.04 AM
root / root
0644
charset_collations.h
6.408 KB
11 Feb 2026 1.04 AM
root / root
0644
client_settings.h
1.867 KB
11 Feb 2026 1.04 AM
root / root
0644
compat56.h
2.227 KB
11 Feb 2026 1.04 AM
root / root
0644
config.h
14.217 KB
11 Feb 2026 1.04 AM
root / root
0644
contributors.h
4.764 KB
11 Feb 2026 1.04 AM
root / root
0644
create_options.h
4.095 KB
11 Feb 2026 1.04 AM
root / root
0644
create_tmp_table.h
2.742 KB
11 Feb 2026 1.04 AM
root / root
0644
cset_narrowing.h
3.875 KB
11 Feb 2026 1.04 AM
root / root
0644
custom_conf.h
1.057 KB
11 Feb 2026 1.04 AM
root / root
0644
datadict.h
1.66 KB
11 Feb 2026 1.04 AM
root / root
0644
ddl_log.h
12.507 KB
11 Feb 2026 1.04 AM
root / root
0644
debug.h
1.259 KB
11 Feb 2026 1.04 AM
root / root
0644
debug_sync.h
1.998 KB
11 Feb 2026 1.04 AM
root / root
0644
deprecation.h
2.736 KB
11 Feb 2026 1.04 AM
root / root
0644
derived_handler.h
2.323 KB
11 Feb 2026 1.04 AM
root / root
0644
derror.h
0.957 KB
11 Feb 2026 1.04 AM
root / root
0644
des_key_file.h
1.207 KB
11 Feb 2026 1.04 AM
root / root
0644
discover.h
1.533 KB
11 Feb 2026 1.04 AM
root / root
0644
dur_prop.h
1.057 KB
11 Feb 2026 1.04 AM
root / root
0644
embedded_priv.h
1.692 KB
11 Feb 2026 1.04 AM
root / root
0644
event_data_objects.h
4.089 KB
11 Feb 2026 1.04 AM
root / root
0644
event_db_repository.h
3.563 KB
11 Feb 2026 1.04 AM
root / root
0644
event_parse_data.h
2.831 KB
11 Feb 2026 1.04 AM
root / root
0644
event_queue.h
3.357 KB
11 Feb 2026 1.04 AM
root / root
0644
event_scheduler.h
3.213 KB
11 Feb 2026 1.04 AM
root / root
0644
events.h
4.601 KB
11 Feb 2026 1.04 AM
root / root
0644
field.h
217.776 KB
11 Feb 2026 1.04 AM
root / root
0644
field_comp.h
1.146 KB
11 Feb 2026 1.04 AM
root / root
0644
filesort.h
7.133 KB
11 Feb 2026 1.04 AM
root / root
0644
filesort_utils.h
10.534 KB
11 Feb 2026 1.04 AM
root / root
0644
ft_global.h
3.04 KB
11 Feb 2026 1.04 AM
root / root
0644
gcalc_slicescan.h
16.867 KB
11 Feb 2026 1.04 AM
root / root
0644
gcalc_tools.h
11.621 KB
11 Feb 2026 1.04 AM
root / root
0644
grant.h
2.693 KB
11 Feb 2026 1.04 AM
root / root
0644
group_by_handler.h
3.451 KB
11 Feb 2026 1.04 AM
root / root
0644
gstream.h
2.38 KB
11 Feb 2026 1.04 AM
root / root
0644
gtid_index.h
19.536 KB
11 Feb 2026 1.04 AM
root / root
0644
ha_handler_stats.h
2.28 KB
11 Feb 2026 1.04 AM
root / root
0644
ha_partition.h
63.42 KB
11 Feb 2026 1.04 AM
root / root
0644
ha_sequence.h
6.099 KB
11 Feb 2026 1.04 AM
root / root
0644
handle_connections_win.h
0.863 KB
11 Feb 2026 1.04 AM
root / root
0644
handler.h
206.325 KB
11 Feb 2026 1.04 AM
root / root
0644
hash.h
4.348 KB
11 Feb 2026 1.04 AM
root / root
0644
hash_filo.h
5.555 KB
11 Feb 2026 1.04 AM
root / root
0644
heap.h
9.258 KB
11 Feb 2026 1.04 AM
root / root
0644
hostname.h
5.292 KB
11 Feb 2026 1.04 AM
root / root
0644
ilist.h
7.067 KB
11 Feb 2026 1.04 AM
root / root
0644
init.h
0.832 KB
11 Feb 2026 1.04 AM
root / root
0644
innodb_priv.h
1.288 KB
11 Feb 2026 1.04 AM
root / root
0644
item.h
277.963 KB
11 Feb 2026 1.04 AM
root / root
0644
item_cmpfunc.h
132.709 KB
11 Feb 2026 1.04 AM
root / root
0644
item_create.h
11.238 KB
11 Feb 2026 1.04 AM
root / root
0644
item_func.h
135.714 KB
11 Feb 2026 1.04 AM
root / root
0644
item_geofunc.h
38.684 KB
11 Feb 2026 1.04 AM
root / root
0644
item_jsonfunc.h
28.185 KB
11 Feb 2026 1.04 AM
root / root
0644
item_row.h
5.106 KB
11 Feb 2026 1.04 AM
root / root
0644
item_strfunc.h
76.42 KB
11 Feb 2026 1.04 AM
root / root
0644
item_subselect.h
57.645 KB
11 Feb 2026 1.04 AM
root / root
0644
item_sum.h
70.991 KB
11 Feb 2026 1.04 AM
root / root
0644
item_timefunc.h
64.475 KB
11 Feb 2026 1.04 AM
root / root
0644
item_vers.h
4.31 KB
11 Feb 2026 1.04 AM
root / root
0644
item_windowfunc.h
33.746 KB
11 Feb 2026 1.04 AM
root / root
0644
item_xmlfunc.h
4.541 KB
11 Feb 2026 1.04 AM
root / root
0644
json_schema.h
25.206 KB
11 Feb 2026 1.04 AM
root / root
0644
json_schema_helper.h
1.125 KB
11 Feb 2026 1.04 AM
root / root
0644
json_table.h
9.44 KB
11 Feb 2026 1.04 AM
root / root
0644
key.h
2.082 KB
11 Feb 2026 1.04 AM
root / root
0644
keycaches.h
1.938 KB
11 Feb 2026 1.04 AM
root / root
0644
lex.h
29.539 KB
11 Feb 2026 1.04 AM
root / root
0644
lex_charset.h
25.918 KB
11 Feb 2026 1.04 AM
root / root
0644
lex_hash.h
141.943 KB
11 Feb 2026 1.04 AM
root / root
0644
lex_ident.h
5.151 KB
11 Feb 2026 1.04 AM
root / root
0644
lex_string.h
4.767 KB
11 Feb 2026 1.04 AM
root / root
0644
lex_symbol.h
1.292 KB
11 Feb 2026 1.04 AM
root / root
0644
lex_token.h
42.006 KB
11 Feb 2026 1.04 AM
root / root
0644
lf.h
6.311 KB
11 Feb 2026 1.04 AM
root / root
0644
lock.h
2.2 KB
11 Feb 2026 1.04 AM
root / root
0644
log.h
51.34 KB
11 Feb 2026 1.04 AM
root / root
0644
log_cache.h
7.574 KB
11 Feb 2026 1.04 AM
root / root
0644
log_event.h
172.563 KB
11 Feb 2026 1.04 AM
root / root
0644
log_event_data_type.h
1.846 KB
11 Feb 2026 1.04 AM
root / root
0644
log_slow.h
2.385 KB
11 Feb 2026 1.04 AM
root / root
0644
maria.h
5.734 KB
11 Feb 2026 1.04 AM
root / root
0644
mariadb.h
1.247 KB
11 Feb 2026 1.04 AM
root / root
0644
mdl.h
37.651 KB
11 Feb 2026 1.04 AM
root / root
0644
mem_root_array.h
6.939 KB
11 Feb 2026 1.04 AM
root / root
0644
message.h
1.167 KB
11 Feb 2026 1.04 AM
root / root
0644
multi_range_read.h
22.649 KB
11 Feb 2026 1.04 AM
root / root
0644
my_apc.h
4.636 KB
11 Feb 2026 1.04 AM
root / root
0644
my_atomic.h
7.11 KB
11 Feb 2026 1.04 AM
root / root
0644
my_atomic_wrapper.h
2.979 KB
11 Feb 2026 1.04 AM
root / root
0644
my_base.h
27.283 KB
11 Feb 2026 1.04 AM
root / root
0644
my_bit.h
6.051 KB
11 Feb 2026 1.04 AM
root / root
0644
my_bitmap.h
5.373 KB
11 Feb 2026 1.04 AM
root / root
0644
my_check_opt.h
2.557 KB
11 Feb 2026 1.04 AM
root / root
0644
my_compare.h
10.874 KB
11 Feb 2026 1.04 AM
root / root
0644
my_counter.h
1.681 KB
11 Feb 2026 1.04 AM
root / root
0644
my_cpu.h
4.741 KB
11 Feb 2026 1.04 AM
root / root
0644
my_crypt.h
0.883 KB
11 Feb 2026 1.04 AM
root / root
0644
my_decimal.h
14.149 KB
11 Feb 2026 1.04 AM
root / root
0644
my_default.h
1.836 KB
11 Feb 2026 1.04 AM
root / root
0644
my_handler_errors.h
4.768 KB
11 Feb 2026 1.04 AM
root / root
0644
my_json_writer.h
18.145 KB
11 Feb 2026 1.04 AM
root / root
0644
my_libwrap.h
1.155 KB
11 Feb 2026 1.04 AM
root / root
0644
my_md5.h
1.451 KB
11 Feb 2026 1.04 AM
root / root
0644
my_minidump.h
0.828 KB
11 Feb 2026 1.04 AM
root / root
0644
my_nosys.h
1.404 KB
11 Feb 2026 1.04 AM
root / root
0644
my_rdtsc.h
9.882 KB
11 Feb 2026 1.04 AM
root / root
0644
my_rnd.h
0.99 KB
11 Feb 2026 1.04 AM
root / root
0644
my_service_manager.h
2.067 KB
11 Feb 2026 1.04 AM
root / root
0644
my_stack_alloc.h
6.341 KB
11 Feb 2026 1.04 AM
root / root
0644
my_stacktrace.h
3.14 KB
11 Feb 2026 1.04 AM
root / root
0644
my_time.h
10.17 KB
11 Feb 2026 1.04 AM
root / root
0644
my_tracker.h
1.372 KB
11 Feb 2026 1.04 AM
root / root
0644
my_tree.h
3.897 KB
11 Feb 2026 1.04 AM
root / root
0644
my_uctype.h
67.898 KB
11 Feb 2026 1.04 AM
root / root
0644
my_user.h
1.1 KB
11 Feb 2026 1.04 AM
root / root
0644
my_virtual_mem.h
1.101 KB
11 Feb 2026 1.04 AM
root / root
0644
myisam.h
17.185 KB
11 Feb 2026 1.04 AM
root / root
0644
myisamchk.h
4.623 KB
11 Feb 2026 1.04 AM
root / root
0644
myisammrg.h
4.782 KB
11 Feb 2026 1.04 AM
root / root
0644
myisampack.h
14.579 KB
11 Feb 2026 1.04 AM
root / root
0644
mysqld.h
41.123 KB
11 Feb 2026 1.04 AM
root / root
0644
mysqld_default_groups.h
0.199 KB
11 Feb 2026 1.04 AM
root / root
0644
mysqld_suffix.h
1.173 KB
11 Feb 2026 1.04 AM
root / root
0644
mysys_err.h
2.985 KB
11 Feb 2026 1.04 AM
root / root
0644
opt_histogram_json.h
4.714 KB
11 Feb 2026 1.04 AM
root / root
0644
opt_range.h
65.145 KB
11 Feb 2026 1.04 AM
root / root
0644
opt_rewrite_date_cmp.h
3.842 KB
11 Feb 2026 1.04 AM
root / root
0644
opt_subselect.h
14.779 KB
11 Feb 2026 1.04 AM
root / root
0644
opt_trace.h
8.291 KB
11 Feb 2026 1.04 AM
root / root
0644
opt_trace_context.h
3.214 KB
11 Feb 2026 1.04 AM
root / root
0644
optimizer_costs.h
5.891 KB
11 Feb 2026 1.04 AM
root / root
0644
optimizer_defaults.h
7.368 KB
11 Feb 2026 1.04 AM
root / root
0644
parse_file.h
4.284 KB
11 Feb 2026 1.04 AM
root / root
0644
partition_element.h
5.301 KB
11 Feb 2026 1.04 AM
root / root
0644
partition_info.h
19.398 KB
11 Feb 2026 1.04 AM
root / root
0644
password.h
1.143 KB
11 Feb 2026 1.04 AM
root / root
0644
pfs_file_provider.h
3.079 KB
11 Feb 2026 1.04 AM
root / root
0644
pfs_idle_provider.h
1.353 KB
11 Feb 2026 1.04 AM
root / root
0644
pfs_memory_provider.h
1.588 KB
11 Feb 2026 1.04 AM
root / root
0644
pfs_metadata_provider.h
1.854 KB
11 Feb 2026 1.04 AM
root / root
0644
pfs_socket_provider.h
2.205 KB
11 Feb 2026 1.04 AM
root / root
0644
pfs_stage_provider.h
1.52 KB
11 Feb 2026 1.04 AM
root / root
0644
pfs_statement_provider.h
4.245 KB
11 Feb 2026 1.04 AM
root / root
0644
pfs_table_provider.h
2.563 KB
11 Feb 2026 1.04 AM
root / root
0644
pfs_thread_provider.h
5.43 KB
11 Feb 2026 1.04 AM
root / root
0644
pfs_transaction_provider.h
2.779 KB
11 Feb 2026 1.04 AM
root / root
0644
privilege.h
28.444 KB
11 Feb 2026 1.04 AM
root / root
0644
probes_mysql.h
0.95 KB
11 Feb 2026 1.04 AM
root / root
0644
probes_mysql_dtrace.h
32.231 KB
11 Feb 2026 1.04 AM
root / root
0644
probes_mysql_nodtrace.h
5.944 KB
11 Feb 2026 1.04 AM
root / root
0644
procedure.h
6.659 KB
11 Feb 2026 1.04 AM
root / root
0644
protocol.h
12.274 KB
11 Feb 2026 1.04 AM
root / root
0644
proxy_protocol.h
0.535 KB
11 Feb 2026 1.04 AM
root / root
0644
queues.h
3.396 KB
11 Feb 2026 1.04 AM
root / root
0644
records.h
3.073 KB
11 Feb 2026 1.04 AM
root / root
0644
repl_failsafe.h
1.548 KB
11 Feb 2026 1.04 AM
root / root
0644
replication.h
15.2 KB
11 Feb 2026 1.04 AM
root / root
0644
rijndael.h
1.671 KB
11 Feb 2026 1.04 AM
root / root
0644
rowid_filter.h
16.021 KB
11 Feb 2026 1.04 AM
root / root
0644
rpl_constants.h
3.278 KB
11 Feb 2026 1.04 AM
root / root
0644
rpl_filter.h
4.662 KB
11 Feb 2026 1.04 AM
root / root
0644
rpl_gtid.h
29.953 KB
11 Feb 2026 1.04 AM
root / root
0644
rpl_injector.h
9.396 KB
11 Feb 2026 1.04 AM
root / root
0644
rpl_mi.h
16.287 KB
11 Feb 2026 1.04 AM
root / root
0644
rpl_parallel.h
17.801 KB
11 Feb 2026 1.04 AM
root / root
0644
rpl_record.h
1.489 KB
11 Feb 2026 1.04 AM
root / root
0644
rpl_reporting.h
3.626 KB
11 Feb 2026 1.04 AM
root / root
0644
rpl_rli.h
35.021 KB
11 Feb 2026 1.04 AM
root / root
0644
rpl_tblmap.h
3.103 KB
11 Feb 2026 1.04 AM
root / root
0644
rpl_utility.h
10.93 KB
11 Feb 2026 1.04 AM
root / root
0644
scheduler.h
3.124 KB
11 Feb 2026 1.04 AM
root / root
0644
scope.h
4.29 KB
11 Feb 2026 1.04 AM
root / root
0644
select_handler.h
3.339 KB
11 Feb 2026 1.04 AM
root / root
0644
semisync.h
2.233 KB
11 Feb 2026 1.04 AM
root / root
0644
semisync_master.h
25.162 KB
11 Feb 2026 1.04 AM
root / root
0644
semisync_master_ack_receiver.h
8.505 KB
11 Feb 2026 1.04 AM
root / root
0644
semisync_slave.h
3.648 KB
11 Feb 2026 1.04 AM
root / root
0644
service_versions.h
2.231 KB
11 Feb 2026 1.04 AM
root / root
0644
session_tracker.h
13.751 KB
11 Feb 2026 1.04 AM
root / root
0644
set_var.h
16.386 KB
11 Feb 2026 1.04 AM
root / root
0644
simple_tokenizer.h
1.966 KB
11 Feb 2026 1.04 AM
root / root
0644
slave.h
11.987 KB
11 Feb 2026 1.04 AM
root / root
0644
socketpair.h
0.822 KB
11 Feb 2026 1.04 AM
root / root
0644
source_revision.h
0.065 KB
11 Feb 2026 1.04 AM
root / root
0644
sp.h
23.114 KB
11 Feb 2026 1.04 AM
root / root
0644
sp_cache.h
1.989 KB
11 Feb 2026 1.04 AM
root / root
0644
sp_head.h
38.609 KB
11 Feb 2026 1.04 AM
root / root
0644
sp_instr.h
40.414 KB
11 Feb 2026 1.04 AM
root / root
0644
sp_pcontext.h
24.714 KB
11 Feb 2026 1.04 AM
root / root
0644
sp_rcontext.h
14.085 KB
11 Feb 2026 1.04 AM
root / root
0644
span.h
3.839 KB
11 Feb 2026 1.04 AM
root / root
0644
spatial.h
22.166 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_acl.h
13.746 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_admin.h
2.847 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_alloc.h
1.691 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_alter.h
15.083 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_analyse.h
10.864 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_analyze_stmt.h
12.402 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_array.h
6.97 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_audit.h
13.83 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_base.h
25.87 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_basic_types.h
9.3 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_binlog.h
0.874 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_bitmap.h
7.877 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_bootstrap.h
1.77 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_cache.h
21.345 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_callback.h
1.506 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_class.h
272.572 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_cmd.h
11.722 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_command.h
4.857 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_connect.h
3.959 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_const.h
10.068 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_crypt.h
1.403 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_cte.h
16.107 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_cursor.h
4.14 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_db.h
2.275 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_debug.h
5.514 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_delete.h
3.52 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_derived.h
1.259 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_digest.h
3.729 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_digest_stream.h
1.53 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_do.h
0.932 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_error.h
39.395 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_explain.h
30.393 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_expression_cache.h
4.257 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_get_diagnostics.h
7.698 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_handler.h
2.842 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_help.h
0.972 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_hset.h
3.321 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_i_s.h
8.288 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_insert.h
5.052 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_join_cache.h
47.519 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_lex.h
174.587 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_lifo_buffer.h
9.449 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_limit.h
3.112 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_list.h
21.866 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_load.h
1.246 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_locale.h
3.163 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_manager.h
0.938 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_mode.h
6.577 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_parse.h
8.801 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_partition.h
12.377 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_partition_admin.h
5.801 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_plist.h
7.53 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_plugin.h
7.399 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_plugin_compat.h
2.185 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_prepare.h
11.396 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_priv.h
15.082 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_profile.h
7.633 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_reload.h
1.012 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_rename.h
0.959 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_repl.h
2.994 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_schema.h
3.226 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_select.h
90.961 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_sequence.h
5.056 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_servers.h
1.735 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_show.h
9.729 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_signal.h
3.283 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_sort.h
21.964 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_statistics.h
16.41 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_string.h
37.917 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_table.h
9.523 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_test.h
1.552 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_time.h
7.237 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_trigger.h
11.883 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_truncate.h
2.03 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_tvc.h
2.361 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_type.h
291.644 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_type_fixedbin.h
64.047 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_type_fixedbin_storage.h
5.339 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_type_geom.h
18.593 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_type_int.h
9.767 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_type_json.h
6.011 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_type_real.h
1.228 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_type_string.h
1.591 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_type_timeofday.h
2.257 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_udf.h
4.736 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_union.h
1.043 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_update.h
3.547 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_used.h
1.019 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_view.h
2.412 KB
11 Feb 2026 1.04 AM
root / root
0644
sql_window.h
6.654 KB
11 Feb 2026 1.04 AM
root / root
0644
ssl_compat.h
3.301 KB
11 Feb 2026 1.04 AM
root / root
0644
strfunc.h
2.222 KB
11 Feb 2026 1.04 AM
root / root
0644
structs.h
30.71 KB
11 Feb 2026 1.04 AM
root / root
0644
sys_vars_shared.h
2.665 KB
11 Feb 2026 1.04 AM
root / root
0644
t_ctype.h
5.507 KB
11 Feb 2026 1.04 AM
root / root
0644
table.h
118.493 KB
11 Feb 2026 1.04 AM
root / root
0644
table_cache.h
4.133 KB
11 Feb 2026 1.04 AM
root / root
0644
thr_lock.h
7.059 KB
11 Feb 2026 1.04 AM
root / root
0644
thr_malloc.h
1.174 KB
11 Feb 2026 1.04 AM
root / root
0644
thr_timer.h
1.526 KB
11 Feb 2026 1.04 AM
root / root
0644
thread_cache.h
5.767 KB
11 Feb 2026 1.04 AM
root / root
0644
threadpool.h
4.697 KB
11 Feb 2026 1.04 AM
root / root
0644
threadpool_generic.h
3.876 KB
11 Feb 2026 1.04 AM
root / root
0644
threadpool_winsockets.h
2.236 KB
11 Feb 2026 1.04 AM
root / root
0644
transaction.h
1.432 KB
11 Feb 2026 1.04 AM
root / root
0644
tzfile.h
4.896 KB
11 Feb 2026 1.04 AM
root / root
0644
tztime.h
3.646 KB
11 Feb 2026 1.04 AM
root / root
0644
uniques.h
4.126 KB
11 Feb 2026 1.04 AM
root / root
0644
unireg.h
7.759 KB
11 Feb 2026 1.04 AM
root / root
0644
vers_string.h
2.392 KB
11 Feb 2026 1.04 AM
root / root
0644
violite.h
9.85 KB
11 Feb 2026 1.04 AM
root / root
0644
waiting_threads.h
4.426 KB
11 Feb 2026 1.04 AM
root / root
0644
welcome_copyright_notice.h
1.416 KB
11 Feb 2026 1.04 AM
root / root
0644
winservice.h
5.878 KB
11 Feb 2026 1.04 AM
root / root
0644
wqueue.h
1.528 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep.h
3.23 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_allowlist_service.h
1.011 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_applier.h
2.64 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_binlog.h
3.468 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_client_service.h
2.5 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_client_state.h
1.529 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_condition_variable.h
1.449 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_event_service.h
1.319 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_high_priority_service.h
4.797 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_mutex.h
1.21 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_mysqld.h
21.02 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_mysqld_c.h
1.198 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_on.h
1.678 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_plugin.h
1.348 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_priv.h
1.596 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_schema.h
5.477 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_server_service.h
3.546 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_server_state.h
3.057 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_sst.h
3.858 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_status.h
1.927 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_storage_service.h
1.767 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_thd.h
11.218 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_trans_observer.h
17.748 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_types.h
1.084 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_utils.h
9.577 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_var.h
4.311 KB
11 Feb 2026 1.04 AM
root / root
0644
wsrep_xid.h
1.513 KB
11 Feb 2026 1.04 AM
root / root
0644
xa.h
1.858 KB
11 Feb 2026 1.04 AM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF