Do you need to know how is PostgreSQL parsing your query?
To see parse tree for select in “messages output” use this:
set client_min_messages to 'debug1'; set debug_print_parse to on; select * from pg_class;
But parse tree is very very very long and for the first time it takes some investigating until you will understand it fully.