Search Results
https://dev.mysql.com/doc/internals/en/com-binlog-dump-gtid.html
If the binlog-filename is empty, the server will send the binlog-stream of the first known binlog.
https://dev.mysql.com/doc/internals/en/com-query.html
COM_QUERY: A COM_QUERY is used to send the server a text-based query that is executed immediately. The server replies to a COM_QUERY packet with a COM_QUERY Response. The length of the query-string is a taken from the packet length - 1.
https://dev.mysql.com/doc/internals/en/com-stmt-execute.html
COM_STMT_EXECUTE asks the server to execute a prepared statement as identified by stmt-id. It sends the values for the placeholders of the prepared statement (if it contained any) in Binary Protocol Value form. The type of each parameter is made up ...
https://dev.mysql.com/doc/internals/en/creating-handlerton.html
An integer that uniquely identifies the storage engine within the MySQL server. This method is only called once when the server starts to allow the storage engine class to perform any housekeeping that is necessary before handlers are instanced.
https://dev.mysql.com/doc/internals/en/debug-sync-activation-deactivation.html
The Debug Sync facility is an optional part of the MySQL server. If the server is started with --debug-sync-timeout=N, where N is a timeout value greater than 0, Debug Sync is enabled and the value of DEBUG_SYNC is "ON - current signal" followed by ...The Debug Sync Facility, when compiled in, is disabled by ...
https://dev.mysql.com/doc/internals/en/debug-sync-facility.html
MySQL supports a Debug Sync Facility, which - in spite of the "debug" in its name - is completely independent from the DBUG facility (except that it uses DBUG to trace its operation, if DBUG is also configured in the server). The documentation here ...
https://dev.mysql.com/doc/internals/en/fast-path.html
set --default-authentication-plugin=sha256_password for the MySQL server: 46 00 00 00 0a 35 2e 36 2e 37 2d 6c 6f 67 00 02 F....5.6.7-log.. set --default-auth=sha256_password for the MySQL client, provide it with the servers public-key with ...00 00 ...
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/guided-tour-majordir-build.html
When it's done, you'll have an executable MySQL server and client. It actually has very little in it, but it's useful, because one of the first things you might want to do with the source code is: compile and link it. The example command line that ...
https://dev.mysql.com/doc/internals/en/overview.html
The MySQL protocol is used between MySQL Clients and a MySQL Server.