Re: [HACKERS] Fwd: [BUG] Print timing statistics of trigger execution under turned off timing option of EXPLAIN ANALYZE
maksim writes: > postgres=# EXPLAIN (ANALYZE, timing false) insert INTO foo > values(101, ''); > QUERY PLAN > -- > Insert on foo (cost=0.00..0.01 rows=1 width=36) (actual rows=0 loops=1
[HACKERS] Fwd: [BUG] Print timing statistics of trigger execution under turned off timing option of EXPLAIN ANALYZE
Hello, hackers! At this moment EXPLAIN ANALYZE with turned off timing option after execution query that expires trigger prints time of total execution of trigger function: postgres=# EXPLAIN (ANALYZE, timing false) insert INTO foo values(101, ''); QUERY