create schema db_show;
set current_schema to 'db_show';
show processlist;
--? Id | Pid | QueryId | UniqueSqlId | User | Host | db | .* | BackendStart | XactStart | .* | State | .*
--?.*
--?.*
--?.*
--?.*
--?.*
--?.*
--?.*
(6 rows)
show full processlist;
--? Id | Pid | QueryId | UniqueSqlId | User | Host | db | .* | BackendStart | XactStart | .* | State | .*
--?.*
--?.*
--?.*
--?.*
--?.*
--?.*
--?.*
(6 rows)
drop schema db_show cascade;
reset current_schema;