0

I am currently writing a benchmark tool that compares different DBMS with each other.

Is there a way to output all optimizations passed through the optimizer and even the generated assembly of the JIT compiler if applicable?

I don't need the execution plan in the first place but only a sequence of the optimizations passed through.

Robin Lindner
  • 515
  • 6
  • 13

1 Answers1

1

All you can get are the statistics at the end of the EXPLAIN (ANALYZE) output.

Laurenz Albe
  • 209,280
  • 17
  • 206
  • 263