File: idx_innodb_redo_log_files.result

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (15 lines) | stat: -rw-r--r-- 1,119 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
show create table performance_schema.innodb_redo_log_files;
Table	Create Table
innodb_redo_log_files	CREATE TABLE `innodb_redo_log_files` (
  `FILE_ID` bigint NOT NULL COMMENT 'Id of the file.',
  `FILE_NAME` varchar(2000) NOT NULL COMMENT 'Path to the file.',
  `START_LSN` bigint NOT NULL COMMENT 'LSN of the first block in the file.',
  `END_LSN` bigint NOT NULL COMMENT 'LSN after the last block in the file.',
  `SIZE_IN_BYTES` bigint NOT NULL COMMENT 'Size of the file (in bytes).',
  `IS_FULL` tinyint NOT NULL COMMENT '1 iff file has no free space inside.',
  `CONSUMER_LEVEL` int NOT NULL COMMENT 'All redo log consumers registered on smaller levels than this value, have already consumed this file.'
) ENGINE=PERFORMANCE_SCHEMA DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
select * from INFORMATION_SCHEMA.STATISTICS
where TABLE_SCHEMA = "performance_schema"
  and TABLE_NAME = "innodb_redo_log_files";
TABLE_CATALOG	TABLE_SCHEMA	TABLE_NAME	NON_UNIQUE	INDEX_SCHEMA	INDEX_NAME	SEQ_IN_INDEX	COLUMN_NAME	COLLATION	CARDINALITY	SUB_PART	PACKED	NULLABLE	INDEX_TYPE	COMMENT	INDEX_COMMENT	IS_VISIBLE	EXPRESSION