summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sysschema/r/v_memory_by_thread_by_current_bytes.result
blob: 0d09167350938e92d3327a0b01d1620ddb5695b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
DESC sys.memory_by_thread_by_current_bytes;
Field	Type	Null	Key	Default	Extra
thread_id	bigint(20) unsigned	NO		NULL	
user	varchar(189)	YES		NULL	
current_count_used	decimal(41,0)	YES		NULL	
current_allocated	text	YES		NULL	
current_avg_alloc	text	YES		NULL	
current_max_alloc	text	YES		NULL	
total_allocated	text	YES		NULL	
SELECT * FROM sys.memory_by_thread_by_current_bytes;
DESC sys.x$memory_by_thread_by_current_bytes;
Field	Type	Null	Key	Default	Extra
thread_id	bigint(20) unsigned	NO		NULL	
user	varchar(189)	YES		NULL	
current_count_used	decimal(41,0)	YES		NULL	
current_allocated	decimal(41,0)	YES		NULL	
current_avg_alloc	decimal(45,4)	NO		0.0000	
current_max_alloc	bigint(20)	YES		NULL	
total_allocated	decimal(42,0)	YES		NULL	
SELECT * FROM sys.x$memory_by_thread_by_current_bytes;