Search Results
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-callproc.html
Syntax: result_args = cursor.callproc(proc_name, args=()) This method calls the stored procedure named by the proc_name argument. The args sequence of parameters must contain one entry for each argument that the procedure expects. Result sets ...
https://dev.mysql.com/doc/internals/en/class-procedure-change-columns.html
Prototype: virtual bool change_columns(List<Item> &field_list); Here you can change the structure of the result field list, for example, you can add fields to the field_list or replace the queries result fields by something completely different ...
https://dev.mysql.com/doc/internals/en/command-invocation-syntax.html
is not your current working directory, replace it with the path to the top-level directory of the source tree. The following table shows some common configure invocation syntax and the equivalent CMake commands. To clean out old object files and ...
https://dev.mysql.com/doc/internals/en/custom-engine-source-files.html
After you have copied and renamed the files you must replace all instances of EXAMPLE and example with the name of your storage engine. The easiest way to implement a new storage engine is to begin by copying and modifying the EXAMPLE storage ...
https://dev.mysql.com/doc/internals/en/dbug-sleep.html
However, the "Debug Sync Facility" should be able to replace all "Dbug Sleep" synchronization points. In cases where the normal server code does not have a block point at the critical place, one can insert an artificial synchronization point.
https://dev.mysql.com/doc/internals/en/delete-row.html
In sql_select it is used for removing duplicates, while in insert it is used for REPLACE calls. Synopsis virtual int delete_row ( buf); const byte * buf ; Description This is the delete_row method. buf will contain a copy of the row to be deleted.
https://dev.mysql.com/doc/internals/en/format-description-event.html
Note added in MySQL 5.0.0 as replacement for START_EVENT_V3 Payload 2 binlog-version string[50] mysql-server version 4 create timestamp 1 event header length string[p] event type header lengths Fields binlog-version (2) -- version of this binlog ...
https://dev.mysql.com/doc/internals/en/logging-transactions-rules-for-non-committing-statements.html
Let S be a logged statement that does not have an implicit commit, except CREATE TEMPORARY TABLE...SELECT (This includes all "pure DML": INSERT, UPDATE, DELETE, REPLACE, TRUNCATE, SELECT, DO, CALL, EXECUTE, LOAD DATA INFILE, and BINLOG. The ...
https://dev.mysql.com/doc/internals/en/miscellaneous-options.html
For Autotools MySQL build options that have CMake equivalents, the normal mapping from an Autotools option to the CMake option is to convert uppercase, remove leading dashes, replace dashes with underscores, and add a leading -D.
https://dev.mysql.com/doc/internals/en/os-specific-commands.html
Sometimes OS commands could be also replaced by SQL statement sequences writing to and reading from files and some SQL string functions. The exec and system commands enable tests to execute external commands. However, many of such commands are ...