The documentation clearly states
The Planning time shown by EXPLAIN ANALYZE is the time it took to generate the query plan from the parsed query and optimize it. It does not include parsing or rewriting.
Then how does one get this time which is not included (parsing and rewriting by themsevles)? I understand that one can take the total query time, but beyond that, is it possible to get this time individually in a different way?
The reason I ask is because I am in a situation where I cannot record total time taken (instead I want to arrive at it from the plan, which seems to be missing a bit of info).