In all it …
- Auto initialization of environment
- Simple base backups
- Monitoring of Master
- Arbitrary alerts
- Failover
- Failover actions
- etc...
Anytime. Anywhere. Since 1997.
In all it …
- Auto initialization of environment
- Simple base backups
- Monitoring of Master
- Arbitrary alerts
- Failover
- Failover actions
- etc...
- PostgreSQL Partitioning - Robert Treat
- Babel of PLs - David Fetter
EXPLAIN SELECT * FROM tenk1 WHERE unique1 < 100; QUERY PLAN ------------------------------------------------------------------------------ Bitmap Heap Scan on tenk1 (cost=2.37..232.35 rows=106 width=244) Recheck Cond: (unique1 < 100) -> Bitmap Index Scan on tenk1_unique1 (cost=0.00..2.37 rows=106 width=0) Index Cond: (unique1 < 100)What the above says (per the docs) is :
Here the planner has …