Search Results
                    
                    
            https://dev.mysql.com/doc/internals/en/bas-ext.html
                                 Purpose Defines the file extensions used by the storage engine. Synopsis virtual const char ** bas_ext ( ); ; Description This is the bas_ext method. It is called to provide the MySQL server with a list of file extensions used by the storage engine. By providing a list of extensions, storage engines can in many cases omit the [custom-engine.html#custom-engine-api-reference-delete_table delete_table()] method as the MySQL server will close all references to the table and delete all files with the specified ...
                                            
                https://dev.mysql.com/doc/internals/en/cleaning-up-with-index-end.html
                                 The [custom-engine.html#custom-engine-api-reference-index_end index_end()] method is a counterpart to the index_init() method. The purpose of the index_end() method is to clean up any preparations made by the index_init() method. If a storage ...
                                            
                https://dev.mysql.com/doc/internals/en/client-server-protocol.html
                                For current information, please refer to the Client/Server Protocol section of the MySQL Server Doxygen documentation, available at https://dev.mysql.com/doc/index-other.html. 
                                            
                https://dev.mysql.com/doc/internals/en/closing-a-table.html
                                 When the MySQL server is finished with a table, it will call the [custom-engine.html#custom-engine-api-reference-close close()] method to close file pointers and release any other resources. 
                                            
                https://dev.mysql.com/doc/internals/en/cmake-installation.html
                                 In the following instructions, the CMake download page is http://www.cmake.org/cmake/resources/software.html. Mac OS X To download and install the latest distribution from the CMake download page, download the .dmg image and open it. Alternatively, ...
                                            
                https://dev.mysql.com/doc/internals/en/coding-guidelines.html
                                 The content formerly located in this chapter is now maintained in the Coding Guidelines section of the MySQL Server Doxygen documentation, available at https://dev.mysql.com/doc/index-other.html. 
                                            
                https://dev.mysql.com/doc/internals/en/creating-tables.html
                                 Once a handler is instanced, the first operation that will likely be required is the creation of a table. Your storage engine must implement the [custom-engine.html#custom-engine-api-reference-create create()] virtual method: virtual int ...
                                            
                https://dev.mysql.com/doc/internals/en/defining-filename-extensions.html
                                 Storage engines are required to provide the MySQL server with a list of extensions used by the storage engine with regard to a given table, its data and indexes. Extensions are expected in the form of a null-terminated string array. 
                                            
                https://dev.mysql.com/doc/internals/en/delete-table.html
                                Synopsis virtual int delete_table ( name); const char * name ; Description This is the delete_table method. By the time delete_table() has been called all opened references to this table will have been closed (and your globally shared references ...
                                            
                https://dev.mysql.com/doc/internals/en/implementing-commit.html
                                 During a commit operation, all changes made during a transaction are made permanent and a rollback operation is not possible after that. Depending on the transaction isolation used, this may be the first time such changes are visible to other ...