]> git.8kb.co.uk Git - postgresql/pg_jsonb_delete_op/commit
Remove two unnecessary operations.
authorMatthew Schinckel <matt@schinckel.net>
Fri, 23 Jan 2015 09:02:19 +0000 (19:32 +1030)
committerMatthew Schinckel <matt@schinckel.net>
Fri, 23 Jan 2015 09:02:19 +0000 (19:32 +1030)
commitba14544b9d0ff0a0065576cd8b6954f5a2aa43ab
treec9df9d1b14046603daae3e121413af701e0ecf86
parent097d1712ac6bce8ffbca895101dacf8f33444e17
Remove two unnecessary operations.

<pre>
[[local]:5432] matt@~ =# EXPLAIN ANALYZE SELECT 'x' <> 'x' FROM generate_series(1,100000);
                                                       QUERY PLAN
-------------------------------------------------------------------------------------------------------------------------
 Function Scan on generate_series  (cost=0.00..10.00 rows=1000 width=0) (actual time=22.346..45.794 rows=100000 loops=1)
 Planning time: 0.042 ms
 Execution time: 59.130 ms
(3 rows)

Time: 59.744 ms
[[local]:5432] matt@~ =# EXPLAIN ANALYZE SELECT 'x' <> 'y' FROM generate_series(1,100000);
                                                       QUERY PLAN
-------------------------------------------------------------------------------------------------------------------------
 Function Scan on generate_series  (cost=0.00..10.00 rows=1000 width=0) (actual time=21.784..45.676 rows=100000 loops=1)
 Planning time: 0.043 ms
 Execution time: 59.294 ms
(3 rows)

Time: 59.663 ms
</pre>
pg_jsonb_delete_op.sql