Server IP : 104.21.38.3 / Your IP : 162.158.163.191 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/sql/ |
Upload File : |
/* Copyright (c) 2011, 2023, Oracle and/or its affiliates. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2.0, as published by the Free Software Foundation. This program is also distributed with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in included license documentation. The authors of MySQL hereby grant you an additional permission to link the program and your derivative works with the separately licensed software that they have included with MySQL. 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, version 2.0, 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-1301 USA */ #ifndef NDB_THD_NDB_H #define NDB_THD_NDB_H #include <my_global.h> #include <my_base.h> // ha_rows #include <sql_list.h> // List<> #include <hash.h> // HASH #include "ndb_share.h" #include <kernel/ndb_limits.h> // MAX_NDB_NODES /* Place holder for ha_ndbcluster thread specific data */ enum THD_NDB_OPTIONS { TNO_NO_LOG_SCHEMA_OP= 1 << 0, /* In participating mysqld, do not try to acquire global schema lock, as one other mysqld already has the lock. */ TNO_NO_LOCK_SCHEMA_OP= 1 << 1 }; enum THD_NDB_TRANS_OPTIONS { TNTO_INJECTED_APPLY_STATUS= 1 << 0 ,TNTO_NO_LOGGING= 1 << 1 ,TNTO_TRANSACTIONS_OFF= 1 << 2 }; class Thd_ndb { THD* m_thd; Thd_ndb(THD*); ~Thd_ndb(); const bool m_slave_thread; // cached value of thd->slave_thread /* Skip binlog setup in ndbcluster_find_files() */ bool m_skip_binlog_setup_in_find_files; public: static Thd_ndb* seize(THD*); static void release(Thd_ndb* thd_ndb); void init_open_tables(); class Ndb_cluster_connection *connection; class Ndb *ndb; class ha_ndbcluster *m_handler; ulong count; uint lock_count; uint start_stmt_count; uint save_point_count; class NdbTransaction *trans; bool m_error; bool m_slow_path; bool m_force_send; uint32 options; uint32 trans_options; void transaction_checks(void); List<NDB_SHARE> changed_tables; HASH open_tables; /* This is a memroot used to buffer rows for batched execution. It is reset after every execute(). */ MEM_ROOT m_batch_mem_root; /* Estimated pending batched execution bytes, once this is > BATCH_FLUSH_SIZE we execute() to flush the rows buffered in m_batch_mem_root. */ uint m_unsent_bytes; uint m_batch_size; bool add_row_check_if_batch_full(uint size); uint m_execute_count; uint m_scan_count; uint m_pruned_scan_count; /** This is the number of sorted scans (via ordered indexes).*/ uint m_sorted_scan_count; /** This is the number of NdbQueryDef objects that the handler has created.*/ uint m_pushed_queries_defined; /** This is the number of cases where the handler decided not to use an NdbQuery object that it previously created for executing a particular instance of a query fragment. This may happen if for examle the optimizer decides to use another type of access operation than originally assumed. */ uint m_pushed_queries_dropped; /** This is the number of times that the handler instantiated an NdbQuery object from a NdbQueryDef object and used the former for executing an instance of a query fragment. */ uint m_pushed_queries_executed; /** This is the number of lookup operations (via unique index or primary key) that were eliminated by pushing linked operations (NdbQuery) to the data nodes. */ uint m_pushed_reads; uint m_transaction_no_hint_count[MAX_NDB_NODES]; uint m_transaction_hint_count[MAX_NDB_NODES]; NdbTransaction *global_schema_lock_trans; uint global_schema_lock_count; uint global_schema_lock_error; uint schema_locks_count; // Number of global schema locks taken by thread bool has_required_global_schema_lock(const char* func); /** Epoch of last committed transaction in this session, 0 if none so far */ Uint64 m_last_commit_epoch_session; unsigned m_connect_count; bool valid_ndb(void) const; bool recycle_ndb(void); bool is_slave_thread(void) const { return m_slave_thread; } void set_skip_binlog_setup_in_find_files(bool value) { // Only alloow toggeling the value assert(m_skip_binlog_setup_in_find_files != value); m_skip_binlog_setup_in_find_files = value; } bool skip_binlog_setup_in_find_files(void) const { return m_skip_binlog_setup_in_find_files; } }; #endif