Jump to content
Slate Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate Marble
Slate Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate Marble
Sign in to follow this  
Dimitris

MySQL Server 5.7.16

Recommended Posts

Features Added in MySQL 5.7

The following features have been added to MySQL 5.7:

  • Security improvements.  These security enhancements were added:

  • SQL mode changes.  Strict SQL mode for transactional storage engines (STRICT_TRANS_TABLES) is now enabled by default.

    Implementation for the ONLY_FULL_GROUP_BY SQL mode has been made more sophisticated, to no longer reject deterministic queries that previously were rejected. In consequence, this mode is now enabled by default, to prohibit only nondeterministic queries containing expressions not guaranteed to be uniquely determined within a group.

    The ERROR_FOR_DIVISION_BY_ZERO, NO_ZERO_DATE, and NO_ZERO_IN_DATE SQL modes are now deprecated but enabled by default. The long term plan is to have them included in strict SQL mode and to remove them as explicit modes in a future MySQL release. See SQL Mode Changes in MySQL 5.7.

    The changes to the default SQL mode result in a default sql_mode system variable value with these modes enabled: ONLY_FULL_GROUP_BY, STRICT_TRANS_TABLES, NO_ZERO_IN_DATE, NO_ZERO_DATE, ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER, and NO_ENGINE_SUBSTITUTION.

  • Online ALTER TABLE.  ALTER TABLE now supports a RENAME INDEX clause that renames an index. The change is made in place without a table-copy operation. It works for all storage engines. See Section 14.1.8, “ALTER TABLE Syntax”.

  • ngram and MeCab full-text parser plugins.  As of MySQL 5.7.6, MySQL provides a built-in full-text ngram parser plugin that supports Chinese, Japanese, and Korean (CJK), and an installable MeCab full-text parser plugin for Japanese.

    For more information, see Section 13.9.8, “ngram Full-Text Parser”, and Section 13.9.9, “MeCab Full-Text Parser Plugin”.

  • InnoDB enhancements.  These InnoDB enhancements were added:

    • VARCHAR size may be increased using an in-place ALTER TABLE, as in this example:

      ALTER TABLE t1 ALGORITHM=INPLACE, CHANGE COLUMN c1 c1 VARCHAR(255);
      

      This is true as long as the number of length bytes required by a VARCHAR column remains the same. For VARCHAR values of 0 to 255, one length byte is required to encode the value. For VARCHAR values of 256 bytes or more, two length bytes are required. As a result, in-place ALTER TABLE only supports increasing VARCHAR size from 0 to 255 bytes or increasing VARCHAR size from a value equal to or greater than 256 bytes.

      In-place ALTER TABLE does not support increasing VARCHAR size from less than 256 bytes to a value equal to or greater than 256 bytes. In this case, the number of required length bytes would change from 1 to 2, which is only supported by a table copy (ALGORITHM=COPY). For example, attempting to change VARCHAR column size from 255 to 256 using in-place ALTER TABLE would return an error:

      ALTER TABLE t1 ALGORITHM=INPLACE, CHANGE COLUMN c1 c1 VARCHAR(256);
      ERROR 0A000: ALGORITHM=INPLACE is not supported. Reason: Cannot change
      column type INPLACE. Try ALGORITHM=COPY.
      

      Decreasing VARCHAR size using in-place ALTER TABLE is not supported. Decreasing VARCHAR size requires a table copy (ALGORITHM=COPY).

    • DDL performance for InnoDB temporary tables is improved through optimization of CREATE TABLE, DROP TABLE, TRUNCATE TABLE, and ALTER TABLE statements.

    • InnoDB temporary table metadata is no longer stored to InnoDB system tables. Instead, a new table, INNODB_TEMP_TABLE_INFO, provides users with a snapshot of active temporary tables. The table contains metadata and reports on all user and system-created temporary tables that are active within a given InnoDB instance. The table is created when the first SELECT statement is run against it.

    • InnoDB now supports MySQL-supported spatial data types. Prior to this release, InnoDB would store spatial data as binary BLOB data. BLOB remains the underlying data type but spatial data types are now mapped to a new InnoDBinternal data type, DATA_GEOMETRY.

    • There is now a separate tablespace for all non-compressed InnoDB temporary tables. The new tablespace is always recreated on server startup and is located in DATADIR by default. A newly added configuration file option,innodb_temp_data_file_path, allows for a user-defined temporary data file path.

    • In MySQL 5.7.2, innochecksum functionality is enhanced with several new options and extended capabilities. See Section 5.6.1, “innochecksum — Offline InnoDB File Checksum Utility”.

    • A new type of non-redo undo log for both normal and compressed temporary tables and related objects now resides in the temporary tablespace. For more information, see Section 15.4.12.1, “InnoDB Temporary Table Undo Logs”.

    • In MySQL 5.7.2, InnoDB buffer pool dump and load operations are enhanced. A new system variable, innodb_buffer_pool_dump_pct, allows you to specify the percentage of most recently used pages in each buffer pool to read out and dump. When there is other I/O activity being performed by InnoDB background tasks, InnoDB attempts to limit the number of buffer pool load operations per second using the innodb_io_capacity setting.

    • In MySQL 5.7.3, support is added to InnoDB for full-text parser plugins. For information about full-text parser plugins, see Full-Text Parser Plugins and Section 26.2.4.4, “Writing Full-Text Parser Plugins”.

    • As of MySQL 5.7.4, InnoDB supports multiple page cleaner threads for flushing dirty pages from buffer pool instances. A new system variable, innodb_page_cleaners, is used to specify the number of page cleaner threads. The default value of 1 maintains the pre-MySQL 5.7.4 configuration in which there is a single page cleaner thread. This enhancement builds on work completed in MySQL 5.6, which introduced a single page cleaner thread to offload buffer pool flushing work from the InnoDB master thread.

    • As of MySQL 5.7.4, MySQL supports rebuilding regular and partitioned InnoDB tables using online DDL (ALGORITHM=INPLACE) for the following operations:

      Online DDL support reduces table rebuild time and permits concurrent DML, which helps reduce user application downtime. For additional information, see Section 15.13.1, “Overview of Online DDL”.

    • The Fusion-io Non-Volatile Memory (NVM) file system on Linux provides atomic write capability, which makes the InnoDB doublewrite buffer redundant. In MySQL 5.7.4, the InnoDB doublewrite buffer is automatically disabled for system tablespace files (ibdata files) located on Fusion-io devices that support atomic writes.

    • As of MySQL 5.7.4, InnoDB supports the Transportable Tablespace feature for partitioned InnoDB tables and individual InnoDB table partitions. This enhancement eases backup procedures for partitioned tables and enables copying of partitioned tables and individual table partitions between MySQL instances. For additional information, see Section 15.7.6, “Copying File-Per-Table Tablespaces to Another Server”.

    • As of MySQL 5.7.5, the innodb_buffer_pool_size parameter is dynamic, allowing you to resize the buffer pool without restarting the server. The resizing operation, which involves moving pages to a new location in memory, is performed in chunks. Chunk size is configurable using the new innodb_buffer_pool_chunk_size configuration option. You can monitor resizing progress using the new Innodb_buffer_pool_resize_status status variable. For more information, see Configuring InnoDB Buffer Pool Size Online.

    • Multi-threaded page cleaner support (innodb_page_cleaners) is extended to shutdown and recovery phases in MySQL 5.7.5.

    • As of MySQL 5.7.5, InnoDB supports indexing of spatial data types using SPATIAL indexes, including use of ALTER TABLE ... ALGORITHM=INPLACE for online operations (ADD SPATIAL INDEX).

    • As of MySQL 5.7.5, InnoDB performs a bulk load when creating or rebuilding indexes. This method of index creation is known as a sorted index build. This enhancement, which improves the efficiency of index creation, also applies to full-text indexes. A new global configuration option, innodb_fill_factor, defines the percentage of space on each page that is filled with data during a sorted index build, with the remaining space reserved for future index growth. For more information, see Section 15.8.12, “Sorted Index Builds”.

    • As of MySQL 5.7.5, A new log record type (MLOG_FILE_NAME) is used to identify tablespaces that have been modified since the last checkpoint. This enhancement simplifies tablespace discovery during crash recovery and eliminates scans on the file system prior to redo log application. For more information about the benefits of this enhancement, see Section 15.18.2, “Tablespace Discovery During Crash Recovery”.

      This enhancement changes the redo log format, requiring that MySQL be shut down cleanly before upgrading to or downgrading from MySQL 5.7.5.

    • As of MySQL 5.7.5, you can truncate undo logs that reside in undo tablespaces. This feature is enabled using the innodb_undo_log_truncate configuration option. For more information, see Section 15.7.8, “Truncating Undo Logs That Reside in Undo Tablespaces”.

    • As of MySQL 5.7.6, InnoDB supports native partitioning. Previously, InnoDB relied on the ha_partition handler, which creates a handler object for each partition. With native partitioning, a partitioned InnoDB table uses a single partition-aware handler object. This enhancement reduces the amount of memory required for partitioned InnoDB tables.

      As of MySQL 5.7.9, mysql_upgrade looks for and attempts to upgrade partitioned InnoDB tables that were created using the ha_partition handler. Also in MySQL 5.7.9 and later, you can upgrade such tables by name in the mysqlclient using ALTER TABLE ... UPGRADE PARTITIONING.

    • As of MySQL 5.7.6, InnoDB supports the creation of general tablespaces using CREATE TABLESPACE syntax.

      CREATE TABLESPACE `tablespace_name`
        ADD DATAFILE 'file_name.ibd'
        [FILE_BLOCK_SIZE = n]

      General tablespaces can be created outside of the MySQL data directory, are capable of holding multiple tables, and support tables of all row formats.

      Tables are added to a general tablespace using CREATE TABLE tbl_name ... TABLESPACE [=] tablespace_name or ALTER TABLE tbl_name TABLESPACE [=] tablespace_name syntax.

      For more information, see Section 15.7.9, “InnoDB General Tablespaces”.

    • In MySQL 5.7.9, DYNAMIC replaces COMPACT as the implicit default row format for InnoDB tables. A new configuration option, innodb_default_row_format, specifies the default InnoDB row format. For more information, seeSection 15.11.2, “Specifying the Row Format for a Table”.

    • As of MySQL 5.7.11, InnoDB supports data-at-rest encryption for file-per-table tablespaces. Encryption is enabled by specifying the ENCRYPTION option when creating or altering an InnoDB table. This feature, referred to as InnoDBtablespace encryption, relies on a keyring plugin for encryption key management. For more information, see Section 7.5.3, “The MySQL Keyring”, and Section 15.7.10, “InnoDB Tablespace Encryption”.

  • JSON support.  Beginning with MySQL 5.7.8, MySQL supports a native JSON type. JSON values are not stored as strings, instead using an internal binary format that permits quick read access to document elements. JSON documents stored inJSON columns are automatically validated whenever they are inserted or updated, with an invalid document producing an error. JSON documents are normalized on creation, and can be compared using most comparison operators such as =,<, <=, >, >=, <>, !=, and <=>; for information about supported operators as well as precedence and other rules that MySQL follows when comparing JSON values, see Comparison and Ordering of JSON Values.

    MySQL 5.7.8 also introduces a number of functions for working with JSON values. These functions include those listed here:

    In MySQL 5.7.9 and later, you can use column->path as shorthand for JSON_EXTRACT(column, path). This works as an alias for a column wherever a column identifier can occur in an SQL statement, including WHERE, ORDER BY, and GROUP BY clauses. This includes SELECT, UPDATE, DELETE, CREATE TABLE, and other SQL statements. The left hand side must be a JSON column identifier (and not an alias). The right hand side is a quoted JSON path expression which is evaluated against the JSON document returned as the column value.

    See Section 13.16.3, “Functions That Search JSON Values”, for more information about -> and JSON_EXTRACT(). For information about JSON path support in MySQL 5.7, see Searching and Modifying JSON Values. See also Section 14.1.18.6, “Secondary Indexes and Generated Virtual Columns”.

  • System and status variables.  System and status variable information is now available in Performance Schema tables, in preference to use of INFORMATION_SCHEMA tables to obtain these variable. This also affects the operation of the SHOW VARIABLES and SHOW STATUS statements. The value of the show_compatibility_56 system variable affects the output produced from and privileges required for system and status variable statements and tables. For details, see the description of that variable in Section 6.1.5, “Server System Variables”.

    Note

    The default for show_compatibility_56 is OFF. Applications that require 5.6 behavior should set this variable to ON until such time as they have been migrated to the new behavior for system variables and status variables. See Section 23.17, “Migrating to Performance Schema System and Status Variable Tables”

  • sys schema.  MySQL distributions now include the sys schema, which is a set of objects that help DBAs and developers interpret data collected by the Performance Schema. sys schema objects can be used for typical tuning and diagnosis use cases. For more information, see Chapter 24, MySQL sys Schema.

  • Condition handling.  MySQL now supports stacked diagnostics areas. When the diagnostics area stack is pushed, the first (current) diagnostics area becomes the second (stacked) diagnostics area and a new current diagnostics area is created as a copy of it. Within a condition handler, executed statements modify the new current diagnostics area, but GET STACKED DIAGNOSTICS can be used to inspect the stacked diagnostics area to obtain information about the condition that caused the handler to activate, independent of current conditions within the handler itself. (Previously, there was a single diagnostics area. To inspect handler-activating conditions within a handler, it was necessary to check this diagnostics area before executing any statements that could change it.) See Section 14.6.7.3, “GET DIAGNOSTICS Syntax”, and Section 14.6.7.7, “The MySQL Diagnostics Area”.

  • Optimizer.  These optimizer enhancements were added:

  • Triggers.  Previously, a table could have at most one trigger for each combination of trigger event (INSERT, UPDATE, DELETE) and action time (BEFORE, AFTER). This limitation has been lifted and multiple triggers are permitted. For more information, see Section 21.3, “Using Triggers”.

  • Logging.  These logging enhancements were added:

    • Previously, on Unix and Unix-like systems, MySQL support for sending the server error log to syslog was implemented by having mysqld_safe capture server error output and pass it to syslog. The server now includes native syslogsupport, which has been extended to include Windows. For more information about sending server error output to syslog, see Section 6.4.2, “The Error Log”.

    • The mysql client now has a --syslog option that causes interactive statements to be sent to the system syslog facility. Logging is suppressed for statements that match the default ignore pattern list ("*IDENTIFIED*:*PASSWORD*"), as well as statements that match any patterns specified using the --histignore option. See Section 5.5.1.3, “mysql Logging”.

  • Generated Columns.  MySQL now supports the specification of generated columns in CREATE TABLE and ALTER TABLE statements. Values of a generated column are computed from an expression specified at column creation time. Generated columns can be virtual (computed on the fly when rows are read) or stored (computed when rows are inserted or updated). For more information, see Section 14.1.18.5, “CREATE TABLE and Generated Columns”.

  • mysql client.  Previously, Control+C in mysql interrupted the current statement if there was one, or exited mysql if not. Now Control+C interrupts the current statement if there was one, or cancels any partial input line otherwise, but does not exit.

  • Database name rewriting with mysqlbinlog.  Renaming of databases by mysqlbinlog when reading from binary logs written using the row-based format is now supported using the --rewrite-db option added in MySQL 5.7.1.

    This option uses the format --rewrite-db='dboldname->dbnewname'. You can implement multiple rewrite rules, by specifying the option multiple times.

  • HANDLER with partitioned tables.  The HANDLER statement may now be used with user-partitioned tables. Such tables may use any of the available partitioning types (see Section 20.2, “Partitioning Types”).

  • Index condition pushdown support for partitioned tables.  In MySQL 5.7.3 and later, queries on partitioned tables using the InnoDB or MyISAM storage engine may employ the index condition pushdown optimization that was introduced in MySQL 5.6. See Section 9.2.1.6, “Index Condition Pushdown Optimization”, for more information.

  • WITHOUT VALIDATION support for ALTER TABLE ... EXCHANGE PARTITION.  As of MySQL 5.7.5, ALTER TABLE ... EXCHANGE PARTITION syntax includes an optional {WITH|WITHOUT} VALIDATION clause. When WITHOUT VALIDATIONis specified, ALTER TABLE ... EXCHANGE PARTITION does not perform row-by-row validation when exchanging a populated table with the partition, permitting database administrators to assume responsibility for ensuring that rows are within the boundaries of the partition definition. WITH VALIDATION is the default behavior and need not be specified explicitly. For more information, see Section 20.3.3, “Exchanging Partitions and Subpartitions with Tables”.

  • Master dump thread improvements.  The master dump thread was refactored to reduce lock contention and improve master throughput. Previous to MySQL 5.7.2, the dump thread took a lock on the binary log whenever reading an event; in MySQL 5.7.2 and later, this lock is held only while reading the position at the end of the last successfully written event. This means both that multiple dump threads are now able to read concurrently from the binary log file, and that dump threads are now able to read while clients are writing to the binary log.

  • Globalization improvements.  MySQL 5.7.4 includes a gb18030 character set that supports the China National Standard GB18030 character set. For more information about MySQL character set support, see Section 11.1, “Character Set Support”.

  • Changing the replication master without STOP SLAVE.  In MySQL 5.7.4 and later, the strict requirement to execute STOP SLAVE prior to issuing any CHANGE MASTER TO statement is removed. Instead of depending on whether the slave is stopped, the behavior of CHANGE MASTER TO now depends on the states of the slave SQL thread and slave I/O threads; which of these threads is stopped or running now determines the options that can or cannot be used with a CHANGE MASTER TO statement at a given point in time. The rules for making this determination are listed here:

    • If the SQL thread is stopped, you can execute CHANGE MASTER TO using any combination of RELAY_LOG_FILE, RELAY_LOG_POS, and MASTER_DELAY options, even if the slave I/O thread is running. No other options may be used with this statement when the I/O thread is running.

    • If the I/O thread is stopped, you can execute CHANGE MASTER TO using any of the options for this statement (in any allowed combination) except RELAY_LOG_FILE, RELAY_LOG_POS, or MASTER_DELAY, even when the SQL thread is running. These three options may not be used when the I/O thread is running.

    • Both the SQL thread and the I/O thread must be stopped before issuing CHANGE MASTER TO ... MASTER_AUTO_POSITION = 1.

    You can check the current state of the slave SQL and I/O threads using SHOW SLAVE STATUS.

    If you are using statement-based replication and temporary tables, it is possible for a CHANGE MASTER TO statement following a STOP SLAVE statement to leave behind temporary tables on the slave. As part of this set of improvements, a warning is now issued whenever CHANGE MASTER TO is issued following STOP SLAVE when statement-based replication is in use and Slave_open_temp_tables remains greater than 0.

    For more information, see Section 14.4.2.1, “CHANGE MASTER TO Syntax”, and Section 18.3.8, “Switching Masters During Failover”.

  • Test suite.  The MySQL test suite now uses InnoDB as the default storage engine.

  • Multi-source replication is now possible.  MySQL Multi-Source Replication adds the ability to replicate from multiple masters to a slave. MySQL Multi-Source Replication topologies can be used to back up multiple servers to a single server, to merge table shards, and consolidate data from multiple servers to a single server. See Section 18.1.4, “MySQL Multi-Source Replication”.

    As part of MySQL Multi-Source Replication, replication channels have been added. Replication channels enable a slave to open multiple connections to replicate from, with each channel being a connection to a master. See Section 18.2.3, “Replication Channels”.

  • Group Replication Performance Schema tables.  MySQL 5.7 adds a number of new tables to the Performance Schema to provide information about replication groups and channels. These include the following tables:

    All of these tables were added in MySQL 5.7.2, except for replication_group_members and replication_group_member_stats, which were added in MySQL 5.7.6. For more information, see Section 23.9.11, “Performance Schema Replication Tables”.

  • Group Replication SQL.  The following statements were added in MySQL 5.7.6 for controlling group replication:

    For more information, see Section 14.4.3, “SQL Statements for Controlling Group Replication”.

Features Deprecated in MySQL 5.7

The following features are deprecated in MySQL 5.7 and may be or will be removed in a future series. Where alternatives are shown, applications should be updated to use them.

  • The ERROR_FOR_DIVISION_BY_ZERO, NO_ZERO_DATE, and NO_ZERO_IN_DATE SQL modes are now deprecated but enabled by default. The long term plan is to have them included in strict SQL mode and to remove them as explicit modes in a future MySQL release.

    The deprecated ERROR_FOR_DIVISION_BY_ZERO, NO_ZERO_DATE, and NO_ZERO_IN_DATE SQL modes are still recognized so that statements that name them do not produce an error, but will be removed in a future version of MySQL. To make advance preparation for versions of MySQL in which these mode names do not exist, applications should be modified to not refer to them. See SQL Mode Changes in MySQL 5.7.

  • Changes to account-management statements make the following features obsolete. They are now deprecated:

    • Using GRANT to create users. Instead, use CREATE USER. Following this practice makes the NO_AUTO_CREATE_USER SQL mode immaterial for GRANT statements, so it too is deprecated.

    • Using GRANT to modify account properties other than privilege assignments. This includes authentication, SSL, and resource-limit properties. Instead, establish such properties at account-creation time with CREATE USER or modify them afterward with ALTER USER.

    • IDENTIFIED BY PASSWORD 'hash_string' syntax for CREATE USER and GRANT. Instead, use IDENTIFIED WITH auth_plugin AS 'hash_string' for CREATE USER and ALTER USER, where the 'hash_string' value is in a format compatible with the named plugin.

    • The PASSWORD() function is deprecated and should be avoided in any context. Thus, SET PASSWORD ... = PASSWORD('auth_string') syntax is also deprecated. SET PASSWORD ... = 'auth_string' syntax is not deprecated; nevertheless, ALTER USER is now the preferred statement for assigning passwords.

    • The old_passwords system variable. Account authentication plugins can no longer be left unspecified in the mysql.user table, so any statement that assigns a password from a cleartext string can unambiguously determine the hashing method to use on the string before storing it in the mysql.user table. This renders old_passwords superflous.

  • Relying on implicit GROUP BY sorting in MySQL 5.7 is deprecated. To achieve a specific sort order of grouped results, it is preferable to use an explicit ORDER BY clause. GROUP BY sorting is a MySQL extension that may change in a future release; for example, to make it possible for the optimizer to order groupings in whatever manner it deems most efficient and to avoid the sorting overhead.

  • The EXTENDED and PARTITIONS keywords for the EXPLAIN statement are deprecated. These keywords are still recognized but are now unnecessary because their effect is always enabled.

  • The --skip-innodb option and its synonyms (--innodb=OFF, --disable-innodb, and so forth) are deprecated. These options have no effect as of MySQL 5.7. because InnoDB cannot be disabled.

  • The client-side --ssl and --ssl-verify-server-cert options are deprecated. Use --ssl-mode=REQUIRED instead of --ssl=1 or --enable-ssl. Use --ssl-mode=DISABLED instead of --ssl=0, --skip-ssl, or --disable-ssl. Use--ssl-mode=VERIFY_IDENTITY instead of --ssl-verify-server-cert options. (The server-side --ssl option is not deprecated.)

    For the C API, MYSQL_OPT_SSL_ENFORCE and MYSQL_OPT_SSL_VERIFY_SERVER_CERT options for mysql_options() correspond to the client-side --ssl and --ssl-verify-server-cert options and are deprecated. UseMYSQL_OPT_SSL_MODE with an option value of SSL_MODE_REQUIRED or SSL_MODE_VERIFY_IDENTITY instead.

  • The log_warnings system variable and --log-warnings server option are deprecated. Use the log_error_verbosity system variable instead.

  • The binlog_max_flush_queue_time system variable does nothing in MySQL 5.7, and is deprecated as of MySQL 5.7.9.

  • The innodb_support_xa system variable, which enables InnoDB support for two-phase commit in XA transactions, is deprecated as of MySQL 5.7.10. InnoDB support for two-phase commit in XA transactions is always enabled as of MySQL 5.7.10.

  • The metadata_locks_cache_size and metadata_locks_hash_instances system variables are deprecated. These do nothing as of MySQL 5.7.4.

  • The sync_frm system variable is deprecated.

  • The global character_set_database and collation_database system variables are deprecated and will be removed in a future version of MySQL.

    Assigning a value to the session character_set_database and collation_database system variables is deprecated and assignments produce a warning. The session variables will become read only in a future version of MySQL and assignments will produce an error. It will remain possible to access the session variables to determine the database character set and collation for the default database.

  • The ENCRYPT(), ENCODE(), DECODE(), DES_ENCRYPT(), and DES_DECRYPT() encryption functions are deprecated. Consider using AES_ENCRYPT() and AES_DECRYPT() instead.

  • The MBREqual() spatial function is deprecated. Use MBREquals() instead.

  • The INFORMATION_SCHEMA PROFILING table is deprecated. Use the Performance Schema instead; see Chapter 23, MySQL Performance Schema.

  • The INFORMATION_SCHEMA INNODB_LOCKS and INNODB_LOCK_WAITS tables are deprecated, to be removed in MySQL 8.0, which provides replacement Performance Schema tables.

  • mysqld_safe support for syslog output is deprecated. Use the native server syslog support used instead. See Section 6.4.2, “The Error Log”.

  • Conversion of pre-MySQL 5.1 database names containing special characters to 5.1 format with the addition of a #mysql50# prefix is deprecated. Because of this, the --fix-db-names and --fix-table-names options for mysqlcheck and the UPGRADE DATA DIRECTORY NAME clause for the ALTER DATABASE statement are also deprecated.

    Upgrades are supported only from one release series to another (for example, 5.0 to 5.1, or 5.1 to 5.5), so there should be little remaining need for conversion of older 5.0 database names to current versions of MySQL. As a workaround, upgrade a MySQL 5.0 installation to MySQL 5.1 before upgrading to a more recent release.

  • mysql_install_db functionality has been integrated into the MySQL server, mysqld. To use this capability to initialize a MySQL installation, if you previously invoked mysql_install_db manually, invoke mysqld with the --initialize or --initialize-insecure option, depending on whether you want the server to generate a random password for the initial 'root'@'localhost' account.

    mysql_install_db is now deprecated, as is the special --bootstrap option that mysql_install_db passes to mysqld.

  • The mysql_plugin utility is deprecated. Alternatives include loading plugins at server startup using the --plugin-load or --plugin-load-add option, or at runtime using the INSTALL PLUGIN statement.

  • The mysql_kill(), mysql_list_fields(), mysql_list_processes(), and mysql_refresh() C API functions are deprecated. The same is true of the corresponding COM_PROCESS_KILL, COM_FIELD_LIST, COM_PROCESS_INFO, andCOM_REFRESH client/server protocol commands. Instead, use mysql_query() to execute a KILL, SHOW COLUMNS, SHOW PROCESSLIST, or FLUSH statement, respectively.

Features Removed in MySQL 5.7

The following items are obsolete and have been removed in MySQL 5.7. Where alternatives are shown, applications should be updated to use them.

  • Support for passwords that use the older pre-4.1 password hashing format is removed, which involves the following changes. Applications that use any feature no longer supported must be modified.

    • The mysql_old_password authentication plugin is removed. Accounts that use this plugin are disabled at startup and the server writes an unknown plugin message to the error log. For instructions on upgrading accounts that use this plugin, see Section 7.5.1.3, “Migrating Away from Pre-4.1 Password Hashing and the mysql_old_password Plugin”.

    • The --secure-auth option to the server and client programs is the default, but is now a no-op. It is deprecated and will be removed in a future MySQL release.

    • The --skip-secure-auth option to the server and client programs is no longer supported and using it produces an error.

    • The secure_auth system variable permits only a value of 1; a value of 0 is no longer permitted.

    • For the old_passwords system variable, a value of 1 (produce pre-4.1 hashes) is no longer permitted.

    • The OLD_PASSWORD() function is removed.

  • In MySQL 5.6.6, the YEAR(2) data type was deprecated. Support for YEAR(2) is now removed. Once you upgrade to MySQL 5.7.5 or higher, any remaining YEAR(2) columns must be converted to YEAR(4) to become usable again. For conversion strategies, see Section 12.3.4, “YEAR(2) Limitations and Migrating to YEAR(4)”. For example, run mysql_upgrade after upgrading.

  • The innodb_mirrored_log_groups system variable. The only supported value was 1, so it had no purpose.

  • The storage_engine system variable. Use default_storage_engine instead.

  • The thread_concurrency system variable.

  • The timed_mutexes system variable. It does nothing and has no effect.

  • The IGNORE clause for ALTER TABLE.

  • INSERT DELAYED is no longer supported. The server recognizes but ignores the DELAYED keyword, handles the insert as a nondelayed insert, and generates an ER_WARN_LEGACY_SYNTAX_CONVERTED warning. (INSERT DELAYED is no longer supported. The statement was converted to INSERT.) Similarly, REPLACE DELAYED is handled as a nondelayed replace. The DELAYED keyword will be removed in a future release.

    In addition, several DELAYED-related options or features were removed:

    • The --delayed-insert option for mysqldump.

    • The COUNT_WRITE_DELAYED, SUM_TIMER_WRITE_DELAYED, MIN_TIMER_WRITE_DELAYED, AVG_TIMER_WRITE_DELAYED, and MAX_TIMER_WRITE_DELAYED columns of the Performance Schematable_lock_waits_summary_by_table table.

    • mysqlbinlog no longer writes comments mentioning INSERT DELAYED.

  • Database symlinking on Windows using for .sym files has been removed because it is redundant with native symlink support available using mklink. Any .sym file symbolic links will be ignored and should be replaced with symlinks created using mklink. See Section 9.12.3.3, “Using Symbolic Links for Databases on Windows”.

  • The unused --basedir, --datadir, and --tmpdir options for mysql_upgrade were removed.

  • Previously, program options could be specified in full or as any unambiguous prefix. For example, the --compress option could be given to mysqldump as --compr, but not as --comp because the latter is ambiguous. Option prefixes are no longer supported; only full options are accepted. This is because prefixes can cause problems when new options are implemented for programs and a prefix that is currently unambiguous might become ambiguous in the future. Some implications of this change:

    • The --key-buffer option must now be specified as --key-buffer-size.

    • The --skip-grant option must now be specified as --skip-grant-tables.

  • SHOW ENGINE INNODB MUTEX output is removed in MySQL 5.7.2. Comparable information can be generated by creating views on Performance Schema tables.

  • The InnoDB Tablespace Monitor and InnoDB Table Monitor are removed in MySQL 5.7.4. For the Tablespace Monitor, equivalent functionality will be introduced before the GA release of MySQL 5.7. For the Table Monitor, equivalent information can be obtained from InnoDB INFORMATION_SCHEMA tables.

  • The specially named tables used to enable and disable the standard InnoDB Monitor and InnoDB Lock Monitor (innodb_monitor and innodb_lock_monitor) are removed in MySQL 5.7.4 and replaced by two dynamic system variables:innodb_status_output and innodb_status_output_locks. For additional information, see Section 15.17, “InnoDB Monitors”.

  • The innodb_use_sys_malloc and innodb_additional_mem_pool_size system variables, which were deprecated in MySQL 5.6.3, are removed in MySQL 5.7.4.

  • The msql2mysql, mysql_convert_table_format, mysql_find_rows, mysql_fix_extensions, mysql_setpermission, mysql_waitpid, mysql_zap, mysqlaccess, and mysqlbug utilities.

  • The mysqlhotcopy utility. Alternatives include mysqldump and MySQL Enterprise Backup.

  • The binary-configure.sh script.

  • The INNODB_PAGE_ATOMIC_REF_COUNT CMake option is removed in MySQL 5.7.5.

  • The innodb_create_intrinsic option is removed in MySQL 5.7.6.

  • The innodb_optimize_point_storage option and related internal data types (DATA_POINT and DATA_VAR_POINT) were removed.

  • The innodb_log_checksum_algorithm option is removed in MySQL 5.7.9.

Share this post


Link to post
Share on other sites
Guest anmai

Hi all !
I have UK fullz dead , if u want to buy i have:

UK FULLZ RANDOM ---->>>>
4658652008699022|12/25|545|Name on Card : Mr. Lewis Crabtree |1 pengover close liskeard |Liskeard |Pl14 3nz|UK|phone number : 07463983223|date of birth : 01/04/1994|Mother's maiden name: Crabtree |account number : 33785939|sort code : 20-50-40|Full Name : L m crabtree

Uk Fullz with BANK i have ( Halifax, RBS, Santander, Natwest, HSBC, Bank of scotland, Barclays , Lloyds, First Direct, TSB, COOP, Metro, Nationwide, Yorkshire, UlsterBank, Clydesdale, Tesco, Monzo, Ireland, Issuing Bank, Revolut, Starling ) ----->>>>>

4751 2902 3460 8842|01|24|148|A a narma|33, 33 Beaumont Road||LE5 3HB|UK\phone number : 07413325093|date of birth : 07/05/1993|account number : 71240578|sort code: 60-15-48|mother maiden name : Khalifa |Full name: Asjad NARMA 

Uk Fullz with mobile network providers ( VODAFONE , O2 , EE...) ----->>>>>

Username : dwf3658@me.com
Password : Enigmatic1958
--------------EE Billing-----------------------
Full Name            :  David Foster
Address 1            : 34 Adelaide Road
Address 2            : West Ealing
City                      : London
County                 : Select County
Post Code            : W13 9EB
Phone Number     : 07931712570
--------------EE Fullz-----------------------
Card Holder Name    : D W FOSTER
Card Number            : 4659 2300 7263 0170
Expiry Date               : 08/23
CVV                          : 707
DOB(DD/MM/YYYY)                  : 03/06/1958
Account Number       : 20371858
Sort Code                 : 20-17-18
MMN                 : McLennan
|--------------- I N F O | I P -------------------|
|Client IP         : 86.250.26.253
|--- http://www.geoiptool.com/?IP=86.250.26.253 ----
User Agent         : Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15
|----------------

Uk Fullz with PHONE PROVIDER ----->>>>>

Username           : ruthieokane@googlemail.com
Password            : Hockey50
--------------O2 Billing-----------------------
Full Name            : Ruth O'Kane
Address 1            : 30 Ballymacashen Road
Address 2            : Killinchy
City                      : Newtownards
County                 : Down
Post Code            : BT24 6SH
Phone Number     : 07821923157
--------------O2 Fullz-----------------------
Card Holder Name    : MRS R O'KANE 
Card Number            : 4751 1100 1381 5188
Expiry Date               : 06 / 24
CVV                          : 134
DOB(DD/MM/YYYY)                  : 21/08/1961
Account Number       : 56523084
Sort Code                 : 98-00-30
MMN       : McCully
|--------------- I N F O | I P -------------------|
|Client IP         : 92.41.138.95
|--- http://www.geoiptool.com/?IP=92.41.138.95 ----
User Agent         : Mozilla/5.0 (Linux; Android 10; SAMSUNG SM-A920F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/12.0 Chrome/79.0.3945.136 Mobile Safari/537.36
|----------- ((())) --------------|

Uk Fullz with AGE RANGE ----->>>>>
I have all DOB from 1930s-2000s

Uk Fullz with SORTCODE ----->>>>>
I have over 100k fullz so u can send any sortcode i will check for u

Uk Fullz with NIN ----->>>>>
Full name: Michael  Enomah 
Telephone: 07459192535
Date of birth: 14/03/1963
Email: mikeenomah@gmail.com
Address: 66 peninsula house o'Leary street , Warrington, Wa27sa
MMN: Agnes Ikhelua 
Card BIN: 465902
Cardholder name: M.Enomah
Card number: 4659024519856021
Card exp: 02/23
Security code: 059
Account: 43479765
Sort Code: 20-91-48
NIN: Sy 48 86 55 d
DL: ENOMA603143M99MM
Submitted by: 83.137.6.226
Location: 83.137.6.226
UserAgent: Mozilla/5.0 (Linux; Android 10; SAMSUNG SM-A505FN) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/12.1 Chrome/79.0.3945.136 Mobile Safari/537.36
Browser:

Uk Fullz with SPECIFIC DOOR ----->>>>>
Almost all have house numbers including floors and apartments

Uk Fullz with VBV + MMN ----->>>>>
4757149145425726|03 / 20|429|ERIN PATTERSON|4 Carsons Dale|Newtownards|Northern Ireland|BT23 5GG|UK|07754740429| DOB 9-4-1998 |account number 9382450401 |short code 09-01-28 |MMN McCormick |VBV bubbles\par

Uk Fullz with CITY----->>>>>
I have over 100k fullz, SO i can filter anycity u want

Uk Fullz with NATIONAL INSURANCE ----->>>>>

+ ---------------DVLA----------------+
+ Personal Information
+ ------------------------------------------+
| Email Address: shannon.lee96@hotmail.com
| First Name: Shannon
| Last Name: Lee
| Address: 393 Beaumont Leys Lane
| County: Leicestershire
| Postcode: LE4 2BG
| Date of Birth (dd/mm/yyyy): 26/12/1996
| Mobile/Telephone Number: 07833495581
| Driver License Number: 
| National Insurance Number: Jw 44 64 72 a
| Account Number: 46691713
| Sort Code: 09-01-28
+ ------------------------------------------+
+ Card Information
+ ------------------------------------------+
| Cardholder Name: S m Lee
| Card Number: 4757147329496307
| Expiry Date: 05/21
| CVV: 865
+ ------------------------------------------+
+ Bank Information
+ ------------------------------------------+
| Santander Customer ID: S m lee
| Santander Passcode: harry2803
| Santander Password: harry2803
| Santander Memorable Word: Harrybirthday

Uk Fullz with Driver License ----->>>>>

+ Personal Information
+ ------------------------------------------+
| Email Address: obrien50@gmx.co.uk
| First Name: Rose
| Last Name: O'brien
| Address: 15 Snowdon Drive, Fforestfach
| City: SWANSEA
| County: Swansea
| Postcode: SA5 5BD
| Date of Birth (yyyy/mm/dd): 23/07/1960
| Mobile/Telephone Number: 7480133262
| Driver License Number: OBRIE657230RA9VU
+ ------------------------------------------+
+ Card Information
+ ------------------------------------------+
| Cardholder Name: Rose O'brien
| Card Number: 4659352514485102
| Expiry Date: 04/23
| CVV: 632
| Account Number: 38732381
| Sort Code: 07-04-36
| MMN: Davies 


Also if you request anything in FULLZ we still meet
ALL OF THEM ARE FRESH FULLZ DEAD AND NOT RESOLD.

Please contact me
ICQ 713086896
Telegram @selldeadfullz
 

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this  

×