1SET profiling = 1;
2Warnings:
3Warning	1287	'@@profiling' is deprecated and will be removed in a future release.
4SELECT 1;
51
61
7SHOW PROFILES;
8Query_ID	Duration	Query
91	#	SHOW WARNINGS
102	#	SELECT 1
11Warnings:
12Warning	#	'SHOW PROFILES' is deprecated and will be removed in a future release. Please use Performance Schema instead
13SHOW PROFILE FOR QUERY 1;
14SHOW PROFILE CPU FOR QUERY 1;
15SET profiling = 0;
16Warnings:
17Warning	1287	'@@profiling' is deprecated and will be removed in a future release.
18