When using the <pre> manually instead of using Markdown formatting rules, you'd have to escape HTML special characters yourself. So e.g. the < has to become < (which is also the root cause of your concrete problem; there's an <= in the last line which should be <=).
Coming back to the reason why you intented to use the <pre>,
I don't want syntax highlighting (SO will guess wrongly about what language it is)
just put <!-- language: none --> on top of the block to turn it off.
So, effectively, your post should look like this:
Blah lorem ipsum blah.
<!-- language: none -->
Merge Left Join (cost=14135.74..14138.08 rows=1000 width=16)
Merge Cond: (generate_report.generate_report = (date_trunc('hour'::text, f.event_happened_at)))
-> Sort (cost=12.97..13.47 rows=1000 width=8)
Sort Key: generate_report.generate_report
-> Function Scan on generate_report (cost=0.00..3.00 rows=1000 width=8)
-> Sort (cost=14122.77..14122.81 rows=67 width=16)
Sort Key: (date_trunc('hour'::text, f.event_happened_at))
-> HashAggregate (cost=14121.93..14122.17 rows=67 width=8)
-> Hash Join (cost=3237.14..14121.86 rows=67 width=8)
Hash Cond: (b.foo_id = f.id)
-> Index Scan using index_bars_on_thing_type_and_thing_id_and_baz on bars b (cost=0.00..10859.88 rows=10937 width=4)
Index Cond: (((thing_type)::text = 'Dog'::text) AND (thing_id = 26631))
-> Hash (cost=3131.42..3131.42 rows=30207 width=12)
-> Seq Scan on foos f (cost=0.00..3131.42 rows=30207 width=12)
Filter: (age((('now'::text)::date)::timestamp without time zone, event_happened_at) <= '24:00:00'::interval)
Blah dolor sit amet blah.
See also:
{}button in message editor toolbar or theCtrl+Kkey)? This is clearly explained in the toolbar button tooltip and the code formatting help which is available behind the question mark on the right top of the message editor. – Chichiray Dec 5 '12 at 18:30