summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb_i_s/innodb_trx.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/innodb_i_s/innodb_trx.result')
-rw-r--r--mysql-test/suite/innodb_i_s/innodb_trx.result42
1 files changed, 21 insertions, 21 deletions
diff --git a/mysql-test/suite/innodb_i_s/innodb_trx.result b/mysql-test/suite/innodb_i_s/innodb_trx.result
index 297899650c2..b9e0b05297d 100644
--- a/mysql-test/suite/innodb_i_s/innodb_trx.result
+++ b/mysql-test/suite/innodb_i_s/innodb_trx.result
@@ -1,28 +1,28 @@
SHOW CREATE TABLE INFORMATION_SCHEMA.INNODB_TRX;
Table Create Table
INNODB_TRX CREATE TEMPORARY TABLE `INNODB_TRX` (
- `trx_id` bigint(21) unsigned NOT NULL DEFAULT 0,
- `trx_state` varchar(13) NOT NULL DEFAULT '',
- `trx_started` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
- `trx_requested_lock_id` varchar(81) DEFAULT NULL,
- `trx_wait_started` datetime DEFAULT NULL,
- `trx_weight` bigint(21) unsigned NOT NULL DEFAULT 0,
- `trx_mysql_thread_id` bigint(21) unsigned NOT NULL DEFAULT 0,
- `trx_query` varchar(1024) DEFAULT NULL,
- `trx_operation_state` varchar(64) DEFAULT NULL,
- `trx_tables_in_use` bigint(21) unsigned NOT NULL DEFAULT 0,
- `trx_tables_locked` bigint(21) unsigned NOT NULL DEFAULT 0,
- `trx_lock_structs` bigint(21) unsigned NOT NULL DEFAULT 0,
- `trx_lock_memory_bytes` bigint(21) unsigned NOT NULL DEFAULT 0,
- `trx_rows_locked` bigint(21) unsigned NOT NULL DEFAULT 0,
- `trx_rows_modified` bigint(21) unsigned NOT NULL DEFAULT 0,
- `trx_concurrency_tickets` bigint(21) unsigned NOT NULL DEFAULT 0,
+ `trx_id` bigint(21) unsigned NOT NULL,
+ `trx_state` varchar(13) NOT NULL,
+ `trx_started` datetime NOT NULL,
+ `trx_requested_lock_id` varchar(81),
+ `trx_wait_started` datetime,
+ `trx_weight` bigint(21) unsigned NOT NULL,
+ `trx_mysql_thread_id` bigint(21) unsigned NOT NULL,
+ `trx_query` varchar(1024),
+ `trx_operation_state` varchar(64),
+ `trx_tables_in_use` bigint(21) unsigned NOT NULL,
+ `trx_tables_locked` bigint(21) unsigned NOT NULL,
+ `trx_lock_structs` bigint(21) unsigned NOT NULL,
+ `trx_lock_memory_bytes` bigint(21) unsigned NOT NULL,
+ `trx_rows_locked` bigint(21) unsigned NOT NULL,
+ `trx_rows_modified` bigint(21) unsigned NOT NULL,
+ `trx_concurrency_tickets` bigint(21) unsigned NOT NULL,
`trx_isolation_level` enum('READ UNCOMMITTED','READ COMMITTED','REPEATABLE READ','SERIALIZABLE') NOT NULL,
- `trx_unique_checks` int(1) NOT NULL DEFAULT 0,
- `trx_foreign_key_checks` int(1) NOT NULL DEFAULT 0,
- `trx_last_foreign_key_error` varchar(256) DEFAULT NULL,
- `trx_is_read_only` int(1) NOT NULL DEFAULT 0,
- `trx_autocommit_non_locking` int(1) NOT NULL DEFAULT 0
+ `trx_unique_checks` int(1) NOT NULL,
+ `trx_foreign_key_checks` int(1) NOT NULL,
+ `trx_last_foreign_key_error` varchar(256),
+ `trx_is_read_only` int(1) NOT NULL,
+ `trx_autocommit_non_locking` int(1) NOT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8
CREATE TEMPORARY TABLE t1 LIKE INFORMATION_SCHEMA.INNODB_TRX;
DROP TEMPORARY TABLE t1;