Re: [HACKERS] Fwd: [BUG] Print timing statistics of trigger execution under turned off timing option of EXPLAIN ANALYZE

2016-08-12 Thread Tom Lane
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

2016-08-12 Thread maksim
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