mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
MDEV-18918 SQL mode EMPTY_STRING_IS_NULL breaks RBR upon CREATE TABLE .. SELECT
The 10.5 version of the patch. Removing DEFAULT from INFORMATION_SCHEMA columns. DEFAULT in read-only tables is rather meaningless. Upgrade should go smoothly. Also fixes: MDEV-20254 Problems with EMPTY_STRING_IS_NULL and I_S tables
This commit is contained in:
@@ -22,28 +22,28 @@ lock_table COUNT(*)
|
||||
"test"."t_min" 2
|
||||
"test"."`t'\""_str" 10
|
||||
Field Type Null Key Default Extra
|
||||
trx_id bigint(21) unsigned NO 0
|
||||
trx_state varchar(13) NO
|
||||
trx_started datetime NO 0000-00-00 00:00:00
|
||||
trx_id bigint(21) unsigned NO NULL
|
||||
trx_state varchar(13) NO NULL
|
||||
trx_started datetime NO NULL
|
||||
trx_requested_lock_id varchar(81) YES NULL
|
||||
trx_wait_started datetime YES NULL
|
||||
trx_weight bigint(21) unsigned NO 0
|
||||
trx_mysql_thread_id bigint(21) unsigned NO 0
|
||||
trx_weight bigint(21) unsigned NO NULL
|
||||
trx_mysql_thread_id bigint(21) unsigned NO NULL
|
||||
trx_query varchar(1024) YES NULL
|
||||
trx_operation_state varchar(64) YES NULL
|
||||
trx_tables_in_use bigint(21) unsigned NO 0
|
||||
trx_tables_locked bigint(21) unsigned NO 0
|
||||
trx_lock_structs bigint(21) unsigned NO 0
|
||||
trx_lock_memory_bytes bigint(21) unsigned NO 0
|
||||
trx_rows_locked bigint(21) unsigned NO 0
|
||||
trx_rows_modified bigint(21) unsigned NO 0
|
||||
trx_concurrency_tickets bigint(21) unsigned NO 0
|
||||
trx_tables_in_use bigint(21) unsigned NO NULL
|
||||
trx_tables_locked bigint(21) unsigned NO NULL
|
||||
trx_lock_structs bigint(21) unsigned NO NULL
|
||||
trx_lock_memory_bytes bigint(21) unsigned NO NULL
|
||||
trx_rows_locked bigint(21) unsigned NO NULL
|
||||
trx_rows_modified bigint(21) unsigned NO NULL
|
||||
trx_concurrency_tickets bigint(21) unsigned NO NULL
|
||||
trx_isolation_level enum('READ UNCOMMITTED','READ COMMITTED','REPEATABLE READ','SERIALIZABLE') NO NULL
|
||||
trx_unique_checks int(1) NO 0
|
||||
trx_foreign_key_checks int(1) NO 0
|
||||
trx_unique_checks int(1) NO NULL
|
||||
trx_foreign_key_checks int(1) NO NULL
|
||||
trx_last_foreign_key_error varchar(256) YES NULL
|
||||
trx_is_read_only int(1) NO 0
|
||||
trx_autocommit_non_locking int(1) NO 0
|
||||
trx_is_read_only int(1) NO NULL
|
||||
trx_autocommit_non_locking int(1) NO NULL
|
||||
trx_state trx_weight trx_tables_in_use trx_tables_locked trx_rows_locked trx_rows_modified trx_concurrency_tickets trx_isolation_level trx_unique_checks trx_foreign_key_checks
|
||||
RUNNING 3 0 1 6 1 0 REPEATABLE READ 1 1
|
||||
trx_isolation_level trx_unique_checks trx_foreign_key_checks
|
||||
|
Reference in New Issue
Block a user