Search Results
https://dev.mysql.com/doc/internals/en/files-in-innodb-sources.html
\usr (USER) File Name What Name Stands For Size Comment Inside File --------- -------------------- ------ ------------------- usr0sess.c User / Session 1,740 Sessions One user can have multiple sessions (the session being all the things that happen ... The InnoDB source files are the best place to look for information about internals of the file structure that MySQLers can optionally use for transaction ...
https://dev.mysql.com/doc/internals/en/getting-source-tree.html
This section describes how to obtain the MySQL source tree, which is currently available on GitHub. For more information about MySQL's move to GitHub, refer to the announcement on the MySQL Release Engineering blog: MySQL on GitHub To obtain the ...
https://dev.mysql.com/doc/internals/en/guided-tour-majordir-client.html
There are other utilities too in fact, you'll find the source of most client-side programs here. There are also programs for checking the password, and for testing that basic functions such as threading or access via SSL are possible. You'll notice, ...
https://dev.mysql.com/doc/internals/en/heartbeat-event.html
It is added by the master after the replication connection was idle for x-seconds to update the slave's Seconds_Behind_Master timestamp in the SHOW SLAVE STATUS output.
https://dev.mysql.com/doc/internals/en/load-data-infile-events.html
When the slave sees a Load_log_event, it requests that the master send the file in a separate connection. LOAD DATA INFILE is not written to the binary log like other statements. It is written as one or more events in a packed format, not as a ...
https://dev.mysql.com/doc/internals/en/make-test-protocols-more-understandable.html
This is especially true for tests that do the following: Suppress the printing of SQL statements and result sets Work with more than one connection . Please have the test write comments into the protocol if this makes the surrounding protocol ...
https://dev.mysql.com/doc/internals/en/myisammrg-directory.html
As with other table handlers, you'll find that the *.c files in the myissammrg directory have counterparts in the myisam directory. In fact, this general description of a myisammrg program is almost always true: The myisammrg function checks an ...
https://dev.mysql.com/doc/internals/en/new-authentication-method-not-known-by-client.html
the client connecting to the server the server responds with the Initial Handshake Packet the client sends the Handshake Response Packet the server responds with the Authentication Method Switch Request Packet to tell the client which authentication ... Even if client supports external authentication (CLIENT_PLUGIN_AUTH flag is set) the new authentication method indicated in the Authentication Method Switch Request Packet might be not know to ...
https://dev.mysql.com/doc/internals/en/non-client-plugin-auth-clients.html
The only situation where server will request authentication method change from a client which does not set CLIENT_PLUGIN_AUTH flag is when the following conditions hold: the client connects to an account which uses Old Password Authentication. the ...In that case server sends Old Authentication Method Switch Request ...
https://dev.mysql.com/doc/internals/en/overview.html
The MySQL protocol is used between MySQL Clients and a MySQL Server.